Search code examples
winapisetwindowshookexcapslock

Best way to intercept pressing of Caps Lock


What is the best way to intercept the Caps Lock button on Windows, for making a program like Launchy?

Currently, I'm setting a low-level hook with SetWindowsHookEx, but that's a bit too low-level for me, since I don't want to intercept other programs that are trying to be active a low level. I'm looking for the highest possible level of interception that can still prevent turning on Caps Lock itself... any better suggestions?


Solution

  • Apparently the best way is to use a low-level hook, since RegisterHotkey doesn't intercept the key.