views:

55

answers:

1

i want to get keyboard events without having focus. my application is a background application and should send "space" key to another app when user presses CTRL+space in any application. i use .NET and i use C# as language.

+5  A: 

You'll need to create a global keyboard hook.

David Brown