A virtual keyboard is a software component that allows a user to enter characters. A virtual keyboard can usually be operated with multiple input devices, which may include a touchscreen, an actual Computer keyboard and a computer mouse.
Questions tagged [virtual-keyboard]
405 questions
0
votes
0 answers
Can't differentiate between colon and semicolon with VirtualKey
I have a KeyDown handler on a TextBox in my Windows Phone 8.1 app, with a switch statement based on what key is pressed.
private void TextKeyDown(object sender, KeyRoutedEventArgs e)
{
switch (e.Key)
{
case (VirtualKey)186:…

Adi Bodas
- 1
- 1
0
votes
2 answers
Java input method for Virtual Keyboard
I am facing a problem in implementing Input method for Virtual Keyboard. Currently I am using robot class for sending input to any application from virtual keyboard. But for that I need to create mapping of key-code and unicode, which is not…

shekhar
- 19
- 1
- 3
0
votes
0 answers
jQuery virtual keyboard types backwards on iPad
I am using this plugin for my one of application. It works perfectly on browsers , But when I am tried to test applicationn in iPad. The keyborad types backwords. For example if I type "abc" it returns with "cba". Any thing wrong with my…

user3636511
- 13
- 3
0
votes
1 answer
Implementing virtual keyboard for PC
I am going to implement an android virtual keyboard for controlling PC.
Here is scheme how I want this application to work:
Phone app connects to running client on the pc.
User press button on the phone.
App sends to client signal indicating what…

Offa
- 111
- 10
0
votes
1 answer
SendInput() pressing the start button when sending '[' ?? c++
Im making A program in which c++ presses keys on the keyboard automatically for me. I have done this with every key on the keyboard. It works perfectly EXCEPT for when i am trying to use square brackets '['. If i tell the computer to print out a…

noobcoder
- 6,089
- 2
- 18
- 34
0
votes
1 answer
How do I make the virtual keyboard enter text into a textbox in WinForms application?
I have a windows forms application containing a button and a textbox. At "button_click_event" this code is executed:
System.Diagnostics.Process.Start("osk.exe");
The keyboard shows, yet no text appears on the textbox as I type on said keyboard.

user3252014
- 635
- 3
- 9
- 21
0
votes
1 answer
using VirtualKeyboard in content page
I created a masterpage for using VirtualKeyboard. It works fine, but when I am using this in content page it doesn't work.
This is code in masterpage:

user3176045
- 3
- 2
0
votes
1 answer
Virtual Keyboard - Android - Delphi XE5
By default when I click on TMemo Virtual Keyboard is shown.
I'd like to have TMemo without auto-shown Virtual Keyboard, I set Hit Test to False, but now my TMemo is not scrollable :(
How can I achieve scrollable TMemo without Virtual Keyboard?

Sebastian Xawery Wiśniowiecki
- 1,766
- 2
- 23
- 46
0
votes
0 answers
How do you disable sounds for the virtual keyboard used by Windows Store Apps?
I've tried scouring the web but I haven't been able to find any documentation on this issue. I have a really simple problem. My Windows App Store application has a TextBox which subscribes to KeyDown events and plays its own audio for when a key is…

Alexandru
- 12,264
- 17
- 113
- 208
0
votes
1 answer
Display Android Soft Keyboard
I am trying to display the soft keyboard. I have found many answers but none of them solve my problem.
InputMethodManager imm = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(error[0],…

thepure12
- 122
- 1
- 9
0
votes
0 answers
NumberSign Key in Qt
I have created an onscreen keyboard. There is a key '-/+' which will serve to toggle change the number sign entered in number field. But i don't know can i create key event for this key. Following is my attempt but it is not working
void Onscreen…

Jai
- 1,292
- 4
- 21
- 41
0
votes
2 answers
how to hidden virtual keyboard in android after unfocused an editext
I got a simple question, but I can not find it anywhere after a while searching around the internet. Hope that I will get the answer here.
I have an edittext. Every time when this edittext is focused, the virtual keyboard is displayed. However, if…

detno29
- 2,113
- 6
- 19
- 21
0
votes
1 answer
Set bind with Alt key - Java
I have two key binds on my code:
private void enterBind(){
String key = "ENTER";
KeyStroke keyStroke = KeyStroke.getKeyStroke(key);
//code
}
private void altSBind(){
String key = "VK_S";
KeyStroke keyStroke =…

Victor Oliveira
- 3,293
- 7
- 47
- 77
0
votes
1 answer
Get event for external/virtual keyboard while textField become first responder
In my iPad application, i am presenting a controller using form sheet style as
controller.modalPresentationStyle=UIModalPresentationFormSheet;
In landscape mode while device's keyboard open i m setting size of tableView so that user can able to see…

Nikunj
- 987
- 11
- 25
0
votes
1 answer
C++ simulate pressing of equal sign (=) and question mark (?)
Having some problems with simulating a keypress of equal sign (=) and question mark (?).
I figured if there's no virtual key code for those two, I should combine key presses and releases as this guy did with…

alexg
- 902
- 11
- 37