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

VS 2008 Disable Keyboard & Mouse - Windows 7?

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

Disable Certain Keyboard Key ?

Nov 9, 2011

Is it possible to disable certain keyboard key?

View 1 Replies

Disable Mouse When Using Touch Screen Monitor?

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

C# - Disable The Keyboard And Mouse?

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

Disable Mouse And Keyboard?

Feb 1, 2009

Yes wat is the Source Code for Disabling Mouse and Keyboard?(For VB 2008)

View 2 Replies

Disable Key Combination (keyboard Shortcuts)?

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

Disable Keyboard For Voice Recognition?

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

Disable Sleep Button On Keyboard?

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

Disable The Keyboard And Mouse Input?

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

How To Disable User Mouse And Keyboard

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

Script To Disable Keyboard And Mouse

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

Created A Virtual Keyboard Like The "Windows Onscreen Keyboard"?

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

Error When Opening On-Screen Keyboard In Windows 7 - "Could Not Start On-Screen Keyboard"?

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

How To Monitor Windows Process

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

Minimize All Windows On One Monitor

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

Monitor A Database With A Windows Service?

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

VB To Monitor Running Windows Title?

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

Windows Media Player With 2 Monitor?

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

Best Way To Handle Resolution Monitor When Writing A Windows App

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

C# - Get An Utility That Can Monitor Open Windows/ In .net Winforms?

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

C# - Monitor Install/Uninstall Of Fonts On Windows?

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

Windows Service To Monitor Programs Starting

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

Windows Installer Monitor - Include A Tool With Installation

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

Keyboard On Windows Form?

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

Windows Api - Disable Taskbar And Some Windows 7 Api Calls

Jul 19, 2010

Like disable taskbar and some windows 7 api calls. Any cool windows api calls?

View 4 Replies

Make An On Screen Keyboard Exactly Like One In Windows

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

Make A Process Monitor Tool With WMI That Monitor The Processes Created Or Deleted - Code Will Not Work

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

Change Default Windows Keyboard Shortcuts?

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

Process For Disabling Windows Key Of Keyboard Through Coding?

Mar 11, 2010

I need a process for disabling windows key of keyboard through coding.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved