up vote 1 down vote favorite
3
share [g+] share [fb]

I'm looking to create a small C# application that will either run as a daemon or sit in the taskbar, and wait for a specific keypress. When the expected keypress is encountered, I'll perform some actions.

This is going to be used primarily for quick-posting of data to a web-service I'm writing. I've looked around the net for a while, but my search terms have been too vague, and I haven't come across any concrete examples or guides.

Thanks,

Mike Trpcic

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I came across this on CodeProject. It'll capture keystrokes while it's not focused. CodeProject: A Simple C# Global Low Level Keyboard Hook

link|improve this answer
Thanks for this, it looks like it can do exactly what I need. Any idea if this is capable of binding key combinations (e.g. CTRL+Space)? – Mike Trpcic Jun 18 '09 at 4:23
The KeyEventArgs contains boolean properties to check if shift, alt, and control are pressed. So yes, I believe it would be pretty simple to implement key combinations. – statenjason Jun 18 '09 at 4:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.