What's the best way to create a program that launches the Caps Lock button on Windows?
Currently, I am setting a low-level hook, but this is a very low level for me, because I do not want to stop other programs trying to activate low levels . I am looking for the highest potential level of interception which can still stop Caps Lock from starting ... any better suggestions?
You can use it:
RegisterHotkeys (hwd , 0, 0, VCcapital); Whenever your window is pressed this key will receive a WM_HOTKEY message.
Comments
Post a Comment