954,515 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Simulating on screen keyboard - Windows application in C#

Hi,

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

Subhashini_A
Newbie Poster
1 post since Nov 2005
Reputation Points: 10
Solved Threads: 0
 

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

tayspen
<Insert title here>
Team Colleague
1,622 posts since Jul 2005
Reputation Points: 84
Solved Threads: 99
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You