How to recognize keypress anywhere in system?

  • Thread starter Thread starter Tomas Machala
  • Start date Start date
T

Tomas Machala

Hi, can I recognize keypress within and also out of my application (wherever
in system)? Also, how do I check which key it was?
Thanks.
 
So you're talking about absolutely any key that might be pressed, regardless
of which application is running? And you want to see *all* keypresses, not
just be notified of a special key to which you've assigned some meaning?
You can do that with a low-level keyboard hook, and I think that Alex F. has
shown how to do that from managed code. You might search the archives...

http://groups.google.com/group/micr...tframework?hl=en&lr=lang_en&ie=UTF-8&oe=UTF-8

Paul T.
 
Back
Top