I'm working on tablet PC program, and I want to get keyboard input.
Unfortunately, the program doesn't get the keypress event...
I do the following in order to activate the keyboard input under initialization:
this.keypress += System.Windows.Forms.KeyPressEventHandler(this.myfunction);
The program doesn't go into "myfunction" when I press keys..
Could someone help me out ?