How can I find the state of NumLock, CapsLock and ScrollLock keys in .net ?
|
feedback
|
|
Import the WinAPI function GetKeyState
and then you can use it like that
EDIT: the above is for framework 1.1, for framework 2.0 + you can use | |||
|
feedback
|
|
You can find the answer here: Which was found with the google terms "caps lock status c#" | |||
|
feedback
|
|
You'll need to use the Win32 API for this. Take a look here: MrWiggles beat me to it | |||
|
feedback
|
|
With Framework above 2.0 you can use an Framework Funktion http://msdn.microsoft.com/en-us/library/system.windows.forms.control.iskeylocked%28v=vs.80%29.aspx
| |||
|
feedback
|