3
votes
2answers
98 views

What is the VK_KEY / scancode for this key?

I am using GetASyncKeyState (C++) to check for keys. I don't know what the name of this key is: How is this key named? What is the VK_ or Scancode?
0
votes
1answer
86 views

Reading Keycode / Keychar from software keyboard

what I need is: Bring up the software keyboard on a button click. There are lots of answers here for that. As soon as the user presses any key on the softwarekeyboard (except switch ime, ... ) I ...
1
vote
0answers
84 views

virtualKeycode ToUnicode

I've been trying to get the unicode character for a given keycode, but i cannot figure out why i have to give so many parameters. From MSDN: int WINAPI ToUnicode( _In_ UINT wVirtKey, _In_ ...
0
votes
2answers
143 views

Virtual KeyCode Asterisk key

I want to create an onscreen keyboard but I don't know what is keycode of asterisk/start key (in numpad scope). Can anyone help me.
1
vote
1answer
102 views

From an OnKeyDown override, can you programmatically determine the character which would be displayed (if any) from its corresponding e.Key value?

On different machines, in an OnKeyDown override, the e.Key values are not necessarily consistent. For instance, on my Mac running Win7-64 under Boot Camp, the backslash key is reported as ...
2
votes
1answer
279 views

Android KeyCode Capital Letter?

I'm making a soft-keyboard using XML Keyboard like this : <Keyboard xmlns:android="http://schemas.android.com/apk/res/android" android:keyWidth="11.11%p" android:horizontalGap="0px" ...
0
votes
2answers
273 views

How to simulate a shift press in C# code?

I'm using thiis code to simulate key presses or key ups: [System.Runtime.InteropServices.DllImport("user32.dll")] public static extern void keybd_event(byte bVk, byte bScan, uint dwFlags, uint ...
0
votes
1answer
256 views

JS: What keyboard keys are specified for key codes in intervals 146-185, 193-218?

What keyboard keys are specified for key codes in intervals 146-185, 193-218? What keys from this intervals are often used by users? You can get key codes from event.keyCode or event.which from ...
1
vote
0answers
95 views

Xkb: How to increase the number of KeySyms in the client map of an XkbDescRec keyboard description?

I'm trying to programmatically modify some of the properties of my xkb keyboard mapping in X11. In the XkbClientMapRec struct map member of the XkbDescRec struct, we have the following members: ...
3
votes
2answers
804 views

Xkb: How to convert a keycode to keysym

I am simply trying to take a KeyCode and a modifier mask and convert it to a KeySym using the Xkb extension. I cant seem to figure out why this doesn't work. Its obvious that the modifiers dont ...
3
votes
1answer
156 views

keycode of log keys of MacOS

I need to figure out the key code of log keys of Mac(ctrl, shift etc) or need to know how to track this log key press event... basically I am converting mac key codes to equivalent windows key ...
1
vote
3answers
784 views

Combining keycode events in jQuery

I'm building a virtual keyboard in jQuery, using keycode events to tigger an append, but keycode combinations are throwing me for a loop. Here's an example: I want to append a questionmark only when ...
1
vote
1answer
261 views

<element>.KeyCode is not working in some keyboards?

I am detecting the a pressed key (<tab> in this case) inside a text input box. Its ok while i'm coding. But when i test on different computer (a laptop, with same Firefox Version), it returning ...
0
votes
1answer
291 views

Flash: KeyboardEvent keycodes work in Flash Player, but not the browser

I'm using ActionScript to listen for key presses and route to a method to handle them. It works fine in Flash Player Debugger 10.1, but does not work with the SWF in a browser. I've tried it with ...
0
votes
1answer
503 views

IE9 control keyboard buttons

I am trying to make form submit with TAB button. It is working on FF, IE8, but on IE9 i cannot stop default action. I found the answer here: How do I convert Enter to Tab (with focus change) in IE9? ...
1
vote
5answers
1k views

How to disable Enter/Return Key After a function is executed because of it?

I have this function where #text_comment is the ID of a textarea: $('#text_comment').live('keypress',function (e) { if(e.keyCode == 13) { textbox = $(this); text_value = ...
2
votes
1answer
588 views

jquery keyup ignore non-changing characters

I'm trying to get an event to fire whenever a contenteditable div is changed using keyup. Unfortunately it's also catching things like moving the caret with the arrow keys. I only want it to spot ...
1
vote
1answer
276 views

What's the purpose of VK_PRINT?

While processing keys I assumed that the virtual key VK_PRINT (0x2A) is the print key on my keyboard. But this assumption was false. I need to work with VK_SNAPSHOT (0x2C) which is VK_PRINT+2. But ...
1
vote
6answers
703 views

How to trigger keyboard click event on a text field using jquery

I want to click enter instead of submit button and I want jquery to do the exact same task as if I were clicking the submit button. This is what I have but its not working the jquery ...
0
votes
1answer
1k views

how to generate keystroke combination in win32 api?

i have this code that simulates the pressing of the window key. But how would i make it to press window+d key, essentially showing desktop. void ShowDesktop(void) { // Simulate a key press ...
1
vote
0answers
171 views

Where can I find a list of UK keyboard keycodes?

I am developing a UK keyboard. I am unable to find a list of keycodes for a UK keyboard. I have tried changing the Regional settings in control panel to United Kingdom Extended thinking that it might ...
9
votes
5answers
15k views

How to know if .keyup() is a character key (jQuery)

How to know if .keyup() is a character key (jQuery) $("input").keyup(function() { if (key is a character) { //such as a b A b c 5 3 2 $ # ^ ! ^ * # ...etc not enter key or shift or Esc or space ...
1
vote
1answer
872 views

Convert sequence of System.Windows.Forms.Keys to a Char

Is there a way to convert a sequence of keystrokes represented by the Keys enum (i.e. System.Windows.Forms.Keys) in a Char. For example: Keys.Oem4 and then Keys.A yields the char á. It must exist ...
4
votes
3answers
8k views

Where can I find a list of keyboard keycodes?

Is there a place where I can find all the keycodes for keys on a keyboard? (For example, the key up may be #114) I can't seem to find one no matter what I search :( Thanks!
0
votes
2answers
319 views

Replacing regular expression with keycode data

Public ReadOnly Property IsAlphaNumeric(ByVal entry As String) As Boolean Get Return New Regex("(?!^[0-9]*$)(?!^[a-zα-ωA-ZΑ-Ω]*$)^([a-zα-ωA-ZΑ-Ω0-9]{6,15})$", ...