Link to home
Start Free TrialLog in
Avatar of HLRosenberger
HLRosenbergerFlag for United States of America

asked on

On screen keyboard.

I'm trying to use call the On screen keyboard from VB.NET code.  I've tried the methods show below.  I get "Unable to start on screen keyboard".   Anyone know why?  This is windows 7.   Also, if I copy the OSK. EXE to a Windows 10 machine, should it work?  

Shell("C:\Windows\System32\OSK.EXE")

Process.Start("C:\Windows\System32\OSK.EXE")
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Note that the source code is incompatible with Visual Studio 2010. So, you will have to create your own project with a text box, 2 buttons and using code from Form1.vb. Easy to use.
Avatar of HLRosenberger

ASKER

thanks,