quote:
Originally posted by SpunkyLoveMuff
I'm not using a child window, I don't know about roflmao though
Hmm, look at
WM_SYSKEUP Notification (), it's interesting:
quote:
WM_SYSKEYUP Notification
The WM_SYSKEYUP message is posted to the window with the keyboard focus when the user releases a key that was pressed while the ALT key was held down. It also occurs when no window currently has the keyboard focus; in this case, the WM_SYSKEYUP message is sent to the active window. The window that receives the message can distinguish between these two contexts by checking the context code in the lParam parameter.
You might give it a try
, I don't know if it works; I believe I have successfully intercepted WM_KEYUP with arrow keys when I coded some WndProc in C, like some years ago.