0

I have created an on-Screen Keyboard using WS_EX_NOACTIVATE

The problem is that i cannot use shortcuts in the on-screen keyboard. How can I make it possible to reacts on shortcuts from my keyboard application?

magol
  • 6,135
  • 17
  • 65
  • 120
  • Do you mean that you can't inform other applications about shortcuts, pressed in your on-screen keyboard application? .... And what have you tried? – codeteq Jan 23 '13 at 13:06
  • I mean that that I am able to make my keyboard application to do various action based on keyboard shortcuts. – magol Jan 23 '13 at 13:10

1 Answers1

1

I don't know what you have tried but

I recommend you to

register your own hotkeys

MSDN: RegisterHotKey Function

Set global hotkeys using C#

or to monitor the pressed keys by yourself

MSDN: GetAsyncKeyState Function

Sorry for Community Wiki

Community
  • 1
  • 1
codeteq
  • 1,502
  • 7
  • 13