Hi,

I need to use an on screen keyboard with windows application. Can anyone help me on how to do that?

Hi,

I need to use an on screen keyboard with windows application. Can anyone help me on how to do that?

Windows has a built in one. you could just start that up from within your app. Using Process.Start(). If you need help. Say so. :D

this should get you going

using System.Diagnostics.
//you neeed that header


//set this as a buton click if you want.


Process.Start(@"C:\windows\system32\notepad.exe);

//that will start notepad
//just replace the path to notepad to the path to the
//osk...not sure what it is though. i think its in system32
//try @"C:\windows\system32\osk.exe"

-T

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.