Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi ,

is tat possible to make a virtual keyboard without using window handle (HWND) as a dll ????


Thanks in Advance !!
Posted

Hello ,

Follow the link
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22823814.html[^]

Hope it will help you

thanks
sanjeev
 
Share this answer
 
Bad idea. You can make such virtual keyboard is you simulate keyboard input on low-level, as if it is sent from a hardware keyboard regardless the windows. You can do it using P/Invoked raw Windows API SendInput.

See http://msdn.microsoft.com/en-us/library/ms646310(v=vs.85).aspx[^].

—SA
 
Share this answer
 
Not sure how much that article helps, but, of course you can create anything you want. A 'virtual keyboard' is just a form covered in buttons, and each button sends a keypress to the control that it stores as the focus control.
 
Share this answer
 

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