I'm using the Windows API (SetWindowsHookEx) to capture keyboard events. I would like to pass the Ctrl+Shift+Esc combination to my application for processing but suppress Task Manager appearing.
Unfortunately, it looks like the three key combination never gets as far as my Keyboard Hook routine; I only ever get two keys.
I don't want to suppress Task Manager globally, just for my application.
Is there a way to do this?