Compact Framework / Sendkeys

KennyMcAtee

Member
Joined
Aug 19, 2003
Messages
6
Location
Upstate, SC
I am writting an application in VB.net using the compact framework. I need to place a keycode in the keyboard buffer. Sendkeys is not supported in the compact framework. I tried using keybd_event in the Win CE API. This gives me and unsupported exception error. Certainly there must be a way to do this. Any help would be greatly appriciated.
 
Does anybody have a solution to this problem? I am also wanting to send data to the keyboard buffer and cannot figure a way to do it?
 
fredriko said:
Does anybody have a solution to this problem? I am also wanting to send data to the keyboard buffer and cannot figure a way to do it?


Have you tried the SendMessage API?
One can send messages to windows.
And send messages to the keyboard.

Take a look here.
 
Last edited by a moderator:
Back
Top