How to use On-Screen keyboard

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

C#

I am trying to automate the standard Microsoft On-Screen Keyboard. I have
an app running on windows xp on a touch screen device. I want to popup the
on-screen keyboard whenever they enter a text box so they can enter some
text.

How can this be done?

Thanks

Steve
 
C#

I am trying to automate the standard Microsoft On-Screen Keyboard. I have
an app running on windows xp on a touch screen device. I want to popup the
on-screen keyboard whenever they enter a text box so they can enter some
text.

How can this be done?

Would this work for you:

System.Diagnostics.Process.Start("osk")
 
Hi, I am currently using an API call to use the OSK. But is there also any
way to specify that I want a standard layout of the keyboard
programmatically. By default, the keyboard is showing up in the Enhanced
layout?

Narasimham
 
Back
Top