How can I find the state of NumLock, CapsLock and ScrollLock keys in .net ?

link|improve this question

48% accept rate
feedback

4 Answers

up vote 5 down vote accepted

Import the WinAPI function GetKeyState

[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
public static extern short GetKeyState(int keyCode);

and then you can use it like that

bool CapsLock = (((ushort)GetKeyState(0x14)) & 0xffff) != 0;
bool NumLock = (((ushort)GetKeyState(0x90)) & 0xffff) != 0;
bool ScrollLock = (((ushort)GetKeyState(0x91)) & 0xffff) != 0;

EDIT: the above is for framework 1.1, for framework 2.0 + you can use

Control.IsKeyLocked

link|improve this answer
feedback

You can find the answer here:

http://www.geekpedia.com/KB122_How-to-retrieve-the-state-of-Caps-Lock-Num-Lock-and-Scroll-Lock-keys.html

Which was found with the google terms "caps lock status c#"

link|improve this answer
feedback

You'll need to use the Win32 API for this.

Take a look here:

http://www.geekpedia.com/KB122_How-to-retrieve-the-state-of-Caps-Lock-Num-Lock-and-Scroll-Lock-keys.html

MrWiggles beat me to it

link|improve this answer
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

    public static bool NumlockActive()
    {
        return Control.IsKeyLocked(Keys.NumLock);
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.