VS 2010 - Windows Key Blocking At Runtime
Jan 16, 2011
I am trying to create an application that can block Windows keys at runtime in VB .net. Basically, if 'Disable Left Win Key' check box is checked, then the application will disable the left windows key and the same for the right one. I also want to be able to show a message box depending on whether 'Show Message Box' is checked when either win key is blocked.
View 2 Replies
ADVERTISEMENT
Jun 7, 2010
I'm developing a program which would be the only program user will use. What i mean by this is once the windows is up, my program will run and blocks users from accessing any other program installed or comes with Windows such as internet explorer, email client, games, etc.. unless user puts password for getting out of my program.
BTW, the OS will be Windows XP.What i want to accomplish by having this is like below:
1. No one would be able to use internet (= no virus)
2. No one would be able to change system time (= no record corruption)
3. No one would be able to install any program (= less system maintenance)
My program is Kind of interactive Kiosk program only certain user can access windows and other programs.Also when it comes to system maintenance, I will remotely access the computer using pcAnywhere or teamviewer like remote access tool.So after exiting the program, i should be able to use entire system w/o any restriction.
View 1 Replies
May 15, 2012
I have seen this happen before but am not sure how I resolved it in the past. On runtime the controls of my form change from the windows 7/vista format to an older version format as shown in the attached image.
How to display the controls in the format on the left (new windows format)
View 1 Replies
Mar 10, 2010
i use datagrid view in my project in Windows form. During run time there are 8 column, among these, in one column(PURPOSE) there is a value which is repeated 3-4 times depend on Query.now i want that i merge these 3-4 cell in PURPOSE column..so that the data which is repeated 3-4 times can only 1 time..
View 1 Replies
Mar 15, 2009
Supposedly I have a datatable containing 2 columns (controlname as string, containing the name of the control and controltype as string containing the type of the control), for example ("label1", "Label") On runtime i want to loop over the datatable and create the controls from that datatable and add them to the form accordingly. but the problem that i don't know how to convert the control name to a control type, meaning that i want to convert label1 to a type of control Label, inorder for me to set its properties on runtime. so how can i do this and is there a way to convert the string to control according to it controltype.
View 1 Replies
Apr 2, 2010
I have my registry set up so it will call my application when a certain filetype/file extension is double clicked, however, as of now I can only get my program to open up those files if it was already closed. I am currently using the [URL] to get the passed files.
View 2 Replies
Aug 28, 2010
I am writing a Windows form application where a client has the ability to add as many chart as needed in the form by clicking at an icon in the menu bar at run time. These charts will have the same format, and I will have them linked to a text box for the client to select which entity to chart.I have no clue where to start. I did a web search and I have found articles that show how to add user's control at design time (I don't think it is what I want).
View 1 Replies
Jun 25, 2010
We have a VB .Net application that is targeted to the .Net Framework version 2, over the past couple of days users have been reporting that they are getting the following error message when running the program?
View 8 Replies
Sep 28, 2011
My VB 6.0 application is using the remote server ( windows 2003 ) to connect database. for that i have used UNC path to connect . i am successfully login and able to access application. but i am getting the following error when i am trying to populate/tab feilds with data on tha application:
"Runtime error 70 access denied"
the same thing is working fine on windows XP machines but not working on windows 7 machine.
View 1 Replies
May 4, 2010
I was wondering if it would be possible to block a website, such as "www.proxy.com"
Through Internet Explorer, not one of my custom ones of my form.
View 8 Replies
May 25, 2012
The subject sucks, but the problem is straightforward. I have an existing WCF service. There are a small series of functions, currently. One or two of the functions will need to be performed with a bit of security, for which I need a username and password. The username and password will be checked on the server side against a webservice running on localhost. One alternative is to not use the localhost webservice for the validation, but then I wouldn't have a question, so ignore that.
The way the webservice will work, I was thinking that I would use an invisible web browser, navigate to the REST-style URL, and wait for the response. It's the bit about waiting for the response that is causing me trouble. Normally, I'd wait for the document comleted event raised by the browser control, but since this is initiated by the call of a WCF service function, that won't really work. The WCF function call can't 'wait' for anything, nor will it receive the event. Once the WCF function reaches the End Function statement, it is over and done with, and returns. The response from the webservice won't have arrived by then, so that won't work. There are two typical solutions to this, one of which is horrible to the point of being unworkable.
1) A busy wait, or spin wait, where the WCF function goes into a tight loop waiting for the browser event to be raised. This is never a good idea, and is particularly terrible in this case, because the WCF service is running on a web server, so the negative impacts of a busy wait are FAR worse than normal.
2) Use something like a Mutex in the WCF function such that the function launches a thread, the thread immediately grabs the Mutex, then begins the navigation. The WCF function waits on the Mutex, which would mean blocking without spinning, and the document completed event pulses the Mutex to release the WCF function so that it can return the proper response. This seems technically improbable, as it stands.
The problem is only a slight variation on a very typical problem, yet it presents some interesting problems. Windows is event driven, but a WCF service function is not. A callback across a WCF (at least across this one), isn't an option, events aren't an option, so it all comes down to the function starting a process, then blocking without spinning, until the process comes up with an answer.
View 11 Replies
Aug 13, 2010
I have a class that has purely static Methods and properties. I am calling an async method on the class "Load" that asks a web service for a chunk of data, which then fires an event that executes the return method, "LoadCompleted". I have no idea how long the call is going to take (the difference between calling the "Load" method, then the "LoadCompleted" getting called).
I would like to block the application from proceeding any further until the callback method has been raised (as the app will try and get stuff from this class, which isn't populated until the "LoadComplete" method sets the data).
View 3 Replies
Dec 11, 2009
I'm using Visual Basic Express 2008 in Windows 7(64-Bit). I've added a datasource to my project and dragged a table from Data Sources onto my form. It automatically created a DataViewGrid and placed this statement in my form load event:
Me.BillsTableAdapter.Fill(Me.DoBills_2009DataSet.Bills)
The DataGridView shows all the correct fields/columns. The .DataSource property for the DataGridView is set to the automatically created BillsBindingSource. When I preview the BillsTableAdapter, the data appears. But data does not appear when I run the app. The datagridview is empty. When I build the app and run the executable, I get a Microsoft .NET Framework error message that says: "Unhandled exception has occurred in your application. If you click continue, the application will ignore this error and attempt to continue. If you click Quit, the applicaiton will close immediately. The 'Microsoft .ACE.OELDB.12.0' provider is not registered on the local machine." If I click "Continue" I get my form with an empty DataGridView. What am I missing to get the data to display in the grid at run time? Oh, and I've also tried using the DataGridView in C# and I get the same problem.
View 7 Replies
Jul 27, 2009
I am designing a simple user interface using winforms. In the designer I have a panel on the form and would like to add a datagridview control into the panel at runtime and set the dock property of the datagridview to 'Fill' so that it fills the panel.
I am struggling to do this and following code is not working out for me:
Dim MyDataGridview as New DataGridView()
MyDataGridView.Dock = DockStyle.Fill
Me.MyPanel.Controls.Add(MyDataGridview)
I don't get an error but the datagridview isn't visible. It gets added 'behind' the panel and so I tried using .SendToBack() and .BringToFront() methods thinking that the panel was hiding the datagridview but this doesn't seem to work either. At any rate, it seems like the datagridview is being added to the form but just not docked within the panel
View 4 Replies
Dec 26, 2010
My registration form has to support multi laguages at runtime based on user selection language from combo box in windows based application using vb.net
View 2 Replies
Sep 20, 2009
I am trying to make an app in VB.NET that pings ip's on a specfic port that are connected to my computer and if it is greater then 500 the person would be blocked from connecting to my computer. How can I do this in VB.NET?
View 1 Replies
Oct 10, 2009
I am creating a security program. One of its features is that it blocks inappropriate web sites. I might need help determining which sites are bad and which ones are good. If I could 'read' every work that is displayed in the browser then I could tell, but that may come later.
So, I'm looking for some kind of hook that will allow me to cancel the site if needed. It should be able to still be hooked in Safe Mode, as well... I'm sure that this is going to be an easy one!
View 7 Replies
Sep 9, 2010
I wish to block websites in a browser, where the blocked websites are stored in my.settings.blockedwebs (which is a collections. specialized. stringcollection). I let the user input the blocked website into a textbox in form1, and the add website to the stringcollection button has the following code:[code]
View 15 Replies
Jul 27, 2009
I am unable to get on to internet explorer or IM on my laptop . I am using Windows XP.Each time I log-in it says my firewall is blocking.
View 4 Replies
Apr 30, 2012
I'm trying to wait for a Task result in .NET 4, much like you can by using the await keyword in .NET 4.5. I just can't figure out how to do it though...My code (to prove that I'm atleast trying):
Private Function GetXDocumentFromWebLocationAsync(ByVal request As WebRequest) As XDocument
Dim queryTask As Task(Of WebResponse)
queryTask = task(Of WebResponse).Factory.FromAsync(AddressOf request.BeginGetResponse, AddressOf request.EndGetResponse, Nothing, Nothing)
[code]....
As you would expect, the GetResponse calls are executed on a different thread, but the function has to wait for the result before it can return. Unfortunately this blocks my main thread until the task has completed and I don't have the slightest clue on how to make it wait without blocking. I don't want to use the Async CTP either because that's just running away from the problem.
View 1 Replies
Sep 26, 2011
In my winforms project, some of the forms have a set of ContextMenuStrips defined on them (through the visual studio designer).Some of these contextmenustrips have been attached to controls, but others have not.Now my problem is this: I need to go through all of the ContextMenuStrips at runtime, whether they are attached or not.I've got some code that will recursively go through all controls and check the ContextMenuStrip property and this works fine.... However I can not get to the ContextMenuStrips that haven't been assigned to a control yet.
View 1 Replies
May 24, 2011
Is there a synchronous wait function that won't tie up the UI-thread in .NET WPF? Something like:
Sub OnClick(sender As Object, e As MouseEventArgs) Handles button1.Click
Wait(2000)
'Ui still processes other events here
MessageBox.Show("Is has been 2 seconds since you clicked the button!")
End Sub
View 1 Replies
Aug 27, 2010
Is there a way to include an ActiveX to VB .NET project without adding it to a form?
If I add it to the form and call a function on it that blocks, the UI is unresponsive until the function returns. Even if I am making the call in a different thread.
I was able to compile the code when I did not include it via the form, but got this error once I called a function on it.
Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED))
How could I make the UI responsive when the ActiveX functions are blocking?
View 7 Replies
Jul 31, 2011
I create a .net dll on the fly with codedom then I load it with Assembly.LoadFrom like this:
Private Sub Test()
Dim ASM As Assembly = Assembly.LoadFrom("test.dll")
'Do some stuff with the loaded assembly...
[code]....
View 1 Replies
Jan 19, 2009
I have been reading the async design patterns on MSDN and the general idea makes sense to me but in practice it is proving to be more difficult. I am working on a project utilizing VMWARE VIX.
HTML Code: [url]. Each function such as connecting to a host server, retrieving properties, etc. can be executed in two different ways.
Connecting to a host using a blocking Wait:
Code:
Dim m_lib As New VixLib
Dim m_hostJob As VixCOM.IJob
[CODE]...
Code:
Dim m_lib As New VixLib
Dim m_hostJob As VixCOM.IJob
dim m_callback as VixCOM.ICallback
[CODE]...
The problem with the VIX SDK is that sometimes the functions never return, hanging the application. dblock.
HTML Code:[URL] came up with a library that specifies a timeout value. When the timeout runs out the method aborts and returns regardless whether it finished or not.
The callback method is an active wait where the code continues to execute. What I want to implement is a blocking wait with a timeout. The ICallback interface has one sub OnVixEvent(IJob,Integer,IVixHandle). This method is fired at least twice, first when some progress is posted and second when it is complete. The first call to this method can be one second after registering the callback or 30 seconds, so I can not rely on this method to block the main thread. how to create some kind of async result class that would block the main thread from executing until either a timer runs out or the OnVixEvent method returns an Operation Complete signal that also implements ICallback.
View 10 Replies
Apr 11, 2012
I am trying to block a list of processes from Txt file/ Listbox System.Diagnostic.Process using Timer. Here's the timer codes
[Code]...
I can block processes from the list using SelectedItem, but it doesn't block all the process in the list.Using while loop causes a deadlock error here. I'm now using aBlock.ReadLine to read from txt file and block the available process. However it is only able to block the first process. Need some guidance to get this code to block all the processes in the list.
View 5 Replies
Jun 29, 2011
I am a novice in Threads, but I want to know how to order thread execution in my scenario, and is the following :
UI Thread : Windows Form Background
Thread : Kind of print daemon
implemented with recursive methods
IO Operation : a StreamWriter that do
the job of File.AppendText()
When I execute my main app.exe, sometimes it launches the Windows Forms and the execution process in the task manager (app.exe), in some opportunities its just launches the execution process in background. How can I determine the behavior of launching UI, I have to establish a priority or somewhat else? Code: I'm using framework 2.0 and any answers could be writted in C# or Vb.Net.
View 1 Replies
May 24, 2009
how to or have a tutorial about programaticly blocking a webpage from webbrowsers? or is this not possible because it would need to be done on a router level?
View 2 Replies
May 26, 2011
I am developing a hotel software product, and one of the features required is to be able to display the room numbers in the hotel, and then the status of them for each day of the month.
I am trying to create something similar to a DataGridView control where at the top the column names are the dates of the month, and to the left is the room numbers as rows. Please see the below screenshot of the function I wish to have. However I do not know what control or function they use to create this grid below (it is from an existing product). I need to not just be able to join multiple cells together when it is the same person in the room for multiple days, but also allow drag and drop ability.
Currently I have a DataGridView control and am able to simulate the below screenshot, however with a datagridview control I am unable to join cells across multiple columns nor allow drag and drop ability between rows.
View 6 Replies
Jun 26, 2009
I have an app that gets all the network computers on a local network. Is there any way to block the connection of a computer by the IP/host name? I want to manage my wireless connection at home so that no one can steal my signal.I would use this app on the computer connected to the wireless router.Anyhow, is this possible? Isn't it? Many online games ban the players by IP, so I thought it could be done.
View 4 Replies