For programming questions about creating or using an on-screen keyboard (a virtual keyboard displayed on the screen), including osk.exe included with Windows.
Questions tagged [on-screen-keyboard]
256 questions
0
votes
1 answer
How to close windows on screen keyboard with c++
I'm trying to close windows on-screen keyboard (osk.exe) in c++ code, but without any success.
HWND kbIsOpen = FindWindow(TEXT("OSKMainClass"),NULL);
CloseWindow(kbIsOpen);
CloseWindow or SendMessage didn't to anything.
Note that the problem is…

DuduE
- 21
- 4
0
votes
1 answer
TextBox and On Screen Keyboard
Is there any way to show something on top of WindowsPhone 8 On Screen Keyboard, such as a Grid, PopUp or StackPanel so I can cover it.

TheJaya
- 13
- 4
0
votes
0 answers
How to add a touch screen keyboard in windows form
I want to use virtual keyboardfound here http://www.codeproject.com/KB/miscctrl/touchscreenkeyboard.aspx
as shown as demo i have to fix this keyboard and want to enter values many forms by keeping this keyboard in my systems home screen. i tried…

Xeroth
- 107
- 1
- 11
0
votes
1 answer
In Python (on Raspberry Pi) how do I create an embedded keypad within my Tkinter window
I am using Tkinter to create an application which requires a 0-9 numerical keypad to be built in to the UI.
I plan to do this with 10 button widgets which enter the relevant number(s) into the currently selected Entry widget.
I do not want to use…

AndyB-1510
- 3
- 2
0
votes
1 answer
On screen keyboard
I'm working on an WPF application, that has to run on a Windows Surface Pro. And now i'm running into problems with the on screen keyboard.
I tried this solution:
http://code.msdn.microsoft.com/windowsdesktop/Enabling-Windows-8-Touch-7fb4e6de
But…

user2499088
- 625
- 1
- 6
- 12
0
votes
1 answer
Windows Phone - Page sometimes not automatically scrolling when keyboard comes up
I'm developing a Windows Phone 7.1 app and I have a ScrollViewer with an ItemsControl inside it, where each item in the ItemsControl contains two TextBoxes. When the user taps a TextBox on the lower half of the screen to enter a value, the screen…

ericcodes
- 31
- 1
- 6
0
votes
1 answer
how to display on screen numeric keyboard in windows phone application
Now in my application, I have a Textbox for entering amount. As amount always deals with numbers, I just dont like a normal (character) keyboard poping up, when the TextBox is on focus.
What should I do, so that when I click my TextBox, a numeric…

Aju
- 796
- 3
- 10
- 29