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
Shift key behaves like caps lock key in ngx-material-keyboard
I am using the ngx-material-keyboard in my Angular app.
I noticed that the shift key behaves strange, when tapped/clicked:
expected: after changing the lower case representation of letters to uppercase, on clicking one of those uppercase letters…

jasie
- 2,192
- 10
- 39
- 54
0
votes
1 answer
ipad onscreen keyboard origin
I want to know what is the exact origin of onscreen keyboard on ipad. Does it dynamically change depending on the language we use, or not?
I try to get this value to make a frame for UITextview in my app.
Is it a difference in origin or behavior, if…

R. Dewi
- 4,141
- 9
- 41
- 66
0
votes
1 answer
Trying to create Keypad for VB.Net Application
I am working on creating a keypad for a VB.Net Application I am working on. The Keypad's purpose is to help users who are using the app on a touchpad station that does not have a mouse or keyboard.
This is the code I have used to set up the…

Skitzafreak
- 1,797
- 7
- 32
- 51
0
votes
1 answer
On Touch screen when i touch input field it does not show onscreen keyboard
Google chrome when i go to input field and touch it. It does not open the on screen windows keyboard.
0
votes
3 answers
Have multiple on-screen keyboards active at once - each set to input text to a specific input field
Bit of a tricky use case that I've run into here and am seeking some input from the community.
I'm building a pretty simple web application which will be displayed on a set of large touch screens - think 30ft wide and 6ft tall. This application has…

Michael Amato
- 55
- 9
0
votes
2 answers
vb.net 3.5 - Write other process onscreen keyboard
I'm developing my own onscreen keyboard using vb.net
I need a lower level keyboard, that can write in every process.
write on a new notepad file i used this code:
Dim hwnd As IntPtr = FindWindow(Nothing, "Untitled - Notepad")
If Not hwnd =…

Davide Redaelli
- 21
- 6
0
votes
1 answer
Chrome input fields not presenting Windows numeric keypad (tabtip)
We have found that since Windows 10 1709 was rolled out, the Windows on screen keyboard does not switch to numerical input when selecting number fields in Chrome:
This does continue to work in Internet Explorer:
The HTML to produce the number…

user1830285
- 578
- 8
- 24
0
votes
1 answer
How do I reliably call the on screen keyboard in windows 10?
I have a fullscreen C# .NET application I need to be able to call the On-Screen-Keyboard.
In Windows 7, I used:
Process.Start(C:\Program Files\Common Files\Microsoft Shared\ink\TabTip.exe;
With older builds of Windows 10, I was able to use Process…

Charles Iams
- 66
- 1
- 1
- 8
0
votes
2 answers
Accessibility With Screen Readers and On-Screen Keyboards in a WPF Kiosk Application
I have a WPF application that runs at the museum I work for. I'd like to make it more accessible but I'm having a hard time figuring out the logistics of a few things.
Since this is a kiosk application with a touch screen and an on-screen…

Chris Lees
- 2,140
- 3
- 21
- 41
0
votes
1 answer
How To launch a touchscreen Virtual keyboard during log in
I am building an embedded linux OS for Allwinner's A20 cubieboard 2 using the yocto project. I have so far manged to build a core-image-sato for it which boots perfectly with lxdm login manager.
However, I would like to automatically launch an…

Joe Joe Ngigí
- 1
- 2
0
votes
2 answers
Receiving input from Android soft keyboard in Monogame
I'm simply trying to receive the characters that the users press when using the Android's system keyboard. The OSK displays fine, but I cannot receive the characters entered by the user. I've tried two different methods (the only two I can…

szMuzzyA
- 136
- 13
0
votes
0 answers
Need to have footer pushed up and always visible when On Screen Keyboard is present
I'm building a web app with React/Redux and Foundation as a styling library.
What is the best way to have a sticky footer ALWAYS appear on the screen, even when the on screen keyboard pops up? As of now, the keyboard covers the footer, but I would…

peterchic
- 407
- 1
- 4
- 11
0
votes
1 answer
SCSS: How to place an On-Screen-Keyboard on bottom of screen?
I have an on-screen-keyboard. I want to place it on bottom of screen So that
when we click a TextEdit, the keyboard appears in button of screen. The button of current frame is my purpose.
I have the following code but it doesn't work.
.ui-keyboard…

Sohrab
- 1,348
- 4
- 13
- 33
0
votes
1 answer
How to use on screen keyboard in Aurelia?
I want to use an On-Screen-Keyboard in my project which is written in Aurelia platform (WebStorm+Aurelia+Typescript). For this purpose we have to use a JavaScript/HTML based keyboard.
The following code is suitable for me:
…

Sohrab
- 1,348
- 4
- 13
- 33
0
votes
0 answers
WPF: Textbox losts focus if onscreen keyboard is shown
I have a user control for a textbox. In the codebehind of the user control i have a function called "TextBoxText_PreviewMouseDown", which shows a onscreen keyboard:
private void TextBoxText_PreviewMouseDown(object sender, MouseButtonEventArgs e)
{
…
user8001246