Click here to Skip to main content
15,890,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to use System Keyboard into my application. i have placed this code for keyboard opening from winform
C#
private void buttonX3_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start("osk.exe");
        }

now the keyboard is opening but i dont know how to use it in my form. in my form a gridview with multiple textboxes; i want to type there through sys keyboard. plus i want to change the language too.
Posted

1 solution

You don't have to do anything the "on screen keyboard" acts like a normal keyboard.

You can change languages in Windows by pressing the ALT+SHIFT keys at the same time.
 
Share this answer
 
v2
Comments
Muhamad Faizan Khan 28-Oct-13 0:46am    
and how it will type in my Gridview's Textboxes?
Mehdi Gholam 28-Oct-13 0:56am    
Select the textbox and type like normal.
Muhamad Faizan Khan 28-Oct-13 1:24am    
nice! but is it possible to change the keyboard Layout on the basis of combobox item selection?
Mehdi Gholam 28-Oct-13 1:31am    
Yes, read the following : http://stackoverflow.com/questions/3279403/change-language-in-c-sharp

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900