VicTT Posted September 12, 2005 Posted September 12, 2005 How can I detect the status of the numlock, capslock, and scrolllock keys?I want to write a piece of code that does if CapsLockOn() OR NumLockOff() then ; Code goes here else ; Some other code goes here Quote Together we might liveDivided we must fall
GaryFrost Posted September 12, 2005 Posted September 12, 2005 Global Const $VK_NUMLOCK = 0x90 Global Const $VK_SCROLL = 0x91 Global Const $VK_CAPITAL = 0x14 MsgBox(0,"Keys","NumLock: " & _GetNumLock() & @LF & _ "Scroll Lock: " & _GetScrollLock() & @LF & _ "Caps Lock: " & _GetCapsLock()) Func _GetNumLock() Local $ret $ret = DllCall("user32.dll","long","GetKeyState","long",$VK_NUMLOCK) Return $ret[0] EndFunc Func _GetScrollLock() Local $ret $ret = DllCall("user32.dll","long","GetKeyState","long",$VK_SCROLL) Return $ret[0] EndFunc Func _GetCapsLock() Local $ret $ret = DllCall("user32.dll","long","GetKeyState","long",$VK_CAPITAL) Return $ret[0] EndFunc SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference.
VicTT Posted September 12, 2005 Author Posted September 12, 2005 Ooooooh..THANK YOU! Quote Together we might liveDivided we must fall
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now