Monitor Key Down And Disable "windows Key" On Keyboard
Aug 23, 2010
How can I disable the windows button on the keyboard while my application is focused?
I'm having an endless problem with users accidentally pressing the windows key on the keyboard which causes the application to lose focus. They are capturing data, so when they finally realize that while they were typing nothing happened. They have to find the place where they lost focus and redo everything from there. This is very time consuming and as we are paying our data capturers by the hour this turns out to be an expensive flaw in the application.
View 3 Replies
ADVERTISEMENT
May 13, 2010
I have done some reasearch on disabling the mouse and keyboard both on Google and on the forum and what ever i find can not get to work. What I'm trying to do is on a click of a button it will disable the mouse and keyboard. It must work in W
View 4 Replies
Nov 9, 2011
Is it possible to disable certain keyboard key?
View 1 Replies
Nov 28, 2011
I want to disable the funtionality of using a mouse when using a touch screen monitor in vb.net. the reason why i ask is because i want to limit users to only one option. is there a way I can code this in vb.net 2010.
View 2 Replies
May 13, 2010
I am looking to create a VB.NET application. when the application is opened it will disable the keyboard and mouse so if you hit any keys it does nothing and you can not move the mouse. (even if currently selected window is not that of application).
MUST WORK ON WINDOWS 7!
View 3 Replies
Feb 1, 2009
Yes wat is the Source Code for Disabling Mouse and Keyboard?(For VB 2008)
View 2 Replies
May 3, 2011
i'm currently working on a security program and i need to temporarily disable some key combinations using vbnet. Key combinations such as: Ctrl-Alt-Delete, Alt-Tab, Alt-Esc, Win Keys, Alt Keys, Esc.
View 1 Replies
Feb 19, 2011
I am working on a voice recognition security system using vb2010 and now, my problem is on how to disable the keyboard, specially viewing Task manager while my application/program is running?
View 3 Replies
Sep 12, 2011
To start off with, I will say that I have tried ENDLESS attempts to surpress/capture/stop the actual sleep keystroke.
The code cannot require administrator privilege's. .
I tried:
Private Overrides Sub ProcessCmdKey, and Return true when the sleep key is pressed - did not disable sleep key LowLevelKeyboard - One that can disable the windows logo key - did not disable sleep key And many other keyhandling events, etc.
The code cannot create registry keys because that requires admin privilege's.
View 2 Replies
Jan 30, 2010
How can i disable the keyboard and mouse input?
Its not working:
Option Strict On
Option Explicit On
Private Declare Function BlockInput Lib "user32" (ByVal fBlock As Boolean) As Long
[Code]......
View 7 Replies
May 24, 2011
In visual basic how can I make the user's cursor not visible and the keyboard input not "enabled"?
View 1 Replies
Dec 25, 2011
I am kind of amazed that there is no answer to this anywhere and I mean anywhere. I am looking for a way to disable the keyboard (actually all input) on a computer. There are several threads about it but no one has ever posted any serious, working code. I know someone is going to inevitably ask "why would you want to do that"? Actually why I want to do it is immaterial but if you must know... I am playing with a "USB Keylock". When this USB Keylock is not present in the computer I want to disable the keyboard. When it is present I want to enable the keyboard.
View 8 Replies
Oct 13, 2010
I have created a virtual keyboard like the "Windows onscreen keyboard". So, I have used the method sendkeys.But if I click on the button, it doesn't write nothing.
I think I have a problem with the FOCUS.As you can see, the "Windows onscreen keyboard" is always on top.This doesn't happen to my form. How can I do?
View 4 Replies
Jan 4, 2010
oke On-Screen keyboard through my VB code. I am using windows 7 and below code to open the keyboard. Everytime when i run this code i am getting error "Could not start On-Screen keyboard".e to fix this error?
Dim proces As New Process
proces.StartInfo.UseShellExecute = False
proces.StartInfo.RedirectStandardOutput = True
[code].....
View 1 Replies
Nov 4, 2009
Second, I have a question which I have been trying to find answer for a wile but without any success.How can I monitor Windows Process for any change (create/kill) after run my app ? the only way I have think about it is that used two lists, the first one load the process list on it and the second refresh each 1 sec to get the new one and compare the two to know the difference, but its useless because you cant know who killed or created the process and other information.
As I have been read before, I guess there is a need to implement windows API, hook to detect process changes ? Is there any idea or solution for this?
Note: I am using VB.NET (2010)
View 18 Replies
Nov 17, 2010
I am trying to write some code that will minimize all windows on my main monitor only? I have two other monitors, one on each side, but I just want the windows on the middle monitor to be minimized.
View 3 Replies
May 26, 2008
I'm using VB.NET 2008 (framework 3.5). I would like to check permanently if a new entry (row) is added to a table in particular, (is there some equivalent of the FileWatcher for DB ?...)
View 4 Replies
Aug 10, 2010
I use following .vbs can let me know the Windows Title is running or not, however, I would like to do more
1. Running the program with VB
2. By changing Label.Backcolor to show the Windows Title exist or not.
3. Can I run that from my machine instead logon to each server to run locally.
Dim WshShell
set WshShell = CreateObject("wscript.Shell")
'Option Explicit
[Code].....
View 4 Replies
Mar 8, 2009
I have a Graphics adapter with 2 ports and i connect 2 monitors into the graphic adapter.im currently develop a project which use 2 multimedia player (windows media player and lets say A_player)the problem is,when i play the video with windows media player, it will show full screen in the second monitor.i don't want windows media player show full screen in the second monitor...i only want the A_player show the full screen in the second monitorcan.
View 3 Replies
Apr 15, 2009
What is the best way to handle resolution issues on the monitor when writing a windows app from VB.Net.I developed an app on my laptop, it's widescreen and res is set to 1440 x 900. When I take my app and run it on a machine with an older Analog monitor and the res is 1024 x 768, all of the forms on the right and bottom are cut off.
View 2 Replies
Apr 13, 2010
I want to find the framework class that enables one to choose an image at design-time. I can find the editor that is used at run-time - its the Drawing.Design.ImageEditor. At design time, however, a different editor pops up which allows one to choose an image from resources.I'm guessing I could run some kind of program, then open up the image editor, from the property grid, and see what new windows/classes have been created?
View 2 Replies
Sep 4, 2010
I'm kind of shooting in the dark here - searches don't seem to be productive on this. I want to create a .NET program to monitor the install and uninstall of fonts. If something is installed or uninstalled, I want to run a program to do something.
I thought maybe a Windows Service, but haven't gotten very far with figuring out how to monitor fonts. Is this the right way and if so, what am I overlooking? If not, is there a different way to do this?
View 3 Replies
Jan 14, 2009
I am trying to create a windows service that sits in the background waiting for programs to be started. When the programs start I want to be able to check a unique bit of information for each program (I believe GUIDs may provide this) to see what the program is. If the program is not allowed, I aim to provide a warning to the user and possibly close the program. The aim of the application is to identify when users are attempting to install additional software on to the computer so simply monitoring for a certain executable wouldn't work as msiexec is called for all MSI's and as I only want to stop blacklisted programs...this wouldn't work.
View 4 Replies
Oct 6, 2009
I created a windows installer installation for my vb.net application. I want to include a tool with my installation that will run before the install begins and monitor the installation and send the log and errors to me (by email for example)
View 1 Replies
May 21, 2011
i wanna add keys in my visual basic program and when i click ex:A it must write in textbox
View 2 Replies
Jul 19, 2010
Like disable taskbar and some windows 7 api calls. Any cool windows api calls?
View 4 Replies
Oct 15, 2010
Visual basic 2008.I want to make an on screen keyboard exactly like the one in windows. I have made one which uses app activation, but that only works with the one you write in your codding or using a combobox to select one. How do you make one that works with everything like the one in windows.
View 6 Replies
Sep 9, 2010
I want to make a process monitor tool with WMI that monitor the processes created or deleted, but the code will not work. Note to reference System.Management,
CODE:
Code dowload:
CODE:
View 4 Replies
Feb 15, 2012
Is there a way to change default Windows keyboard shortcuts like CTRL + C, CTRL + X etc. to my desired shortcuts like CTRL + J, CTRL + Q etc. in .NET ?
I can register the new hotkey easily with RegisterHotkey. I just need to unregister the hotkeys Windows has registered and add their functionality in the new hotkey.
View 2 Replies
Mar 11, 2010
I need a process for disabling windows key of keyboard through coding.
View 2 Replies