1

I'm trying to implement a global hotkey logic in my program when I press down and up a key. The hotkey needs to be global. The behaviour is simple: When the F10 key is Down, the form is visible, when released, the form hides itself.

I managed to implement the WMHotkey procedure, but I need it to be split into Key Up and Down. Is there a way to do this with global hotkeys?

1 Answers1

0

I managed to accomplish what I was trying to do by implementing the code that RRUZ provided in this question: How to monitor the keyboard above all other applications and then send other keys to them instead.