1
vote
3answers
84 views
Keycode for @ char
could someone please tell me the identifier for the @ key?
for example keys.Escape is for the ESC key. i would like to know what it is for @
thank you.
1
vote
1answer
52 views
How to convert ASCII character to CGKeyCode?
I need a function that, given a character, returns the CGKeyCode associated with the position of that character on the current keyboard layout. E.g., given "b", it should return kVK_ANSI_B if using …
0
votes
5answers
89 views
javascript subtract(-) keycode
ok, i need my code to check if minus/subtract/- was pressed, if it was pressed i want an alert box to pop. i tried with both 109 and 189 key codes but i still don't get the desired result. although i …
0
votes
2answers
48 views
KeyCode and keyboard layout and language
I need to include the asterisk as an allowable entry on a text box.
How can I test for this key under the KeyDown event regardless of the keyboard layout and language?
Ignoring the numeric keypad, …
0
votes
2answers
126 views
Get Character value from KeyCode in Javascript…then trim.
This is what i have now:
$("input").bind("keydown",function(e){
var value = this.value + String.fromCharCode(e.keyCode);
}
If the e.keyCode may not be an ASCII character (alt, backspace, del, …
0
votes
1answer
45 views
Setting three button accelerator key hot keys in Java (OSX)
I am trying to change a few hot-keys in the java application I am wokring on and it seems that the system I am using may not work with three button key combinations. We currently have a JMenuItem …
0
votes
1answer
106 views
VB.NET 2008 - How Do I Make Button.click Event Perform both the enter and period(del) keys on the numerical keyboard?
How Do I Make Button.click Event Perform both the enter and period(del) keys on the numeric keypad?
Code snippet:
Private Sub frmCalc_KeyDown(ByVal sender As Object, ByVal e As …
1
vote
3answers
273 views
get keyCode from string?
Using a static method in as3, I can get a charCode from a character in a string.
How can I get the keyCode from a character in a string? Do I need to run this function through javascript (if I can …
0
votes
2answers
70 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!
2
votes
5answers
3k views
C# How to translate virtual keycode to char?
I am trying to map a virtual keycode to a char.
My code uses ProcessCmdKey to listen to WM_KEYDOWN which gives me access to the key pressed. For example, when I press single quote I get a key of 222 …
1
vote
1answer
200 views
Make enter key behave like tab key in Javascript
So far i have this being called on keypress.
function chkenter()
{
e = event.keyCode;
if (e == 13)
{
event.keyCode = 9;
return false;
}
}
but even though i set the keycode to 9 it …
0
votes
1answer
88 views
how to provide platform independent keycodes
how do cross platform frameworks like sdl or java provide platform independed keycodes. do they have mapping tables for all possible cases? or is there another (eventually better) way to achieve this.
…
0
votes
2answers
47 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})$", …
0
votes
1answer
1k views
jquery keypress event to trigger autocomplete only on specific keycodes
I am using the jquery autocomplete plugin, and am trying to trigger the autocomplete manually based on certain keys the user enters. I'm trying to bind the autocomplete to the input on the fly so the …
2
votes
4answers
303 views
How do you determine if a character requires the shift key to be down to be typed?
I am writing some code to type strings using the Robot class. Everything is mostly good (well, I have to use a big switch statement to get character keycodes), except some keys don't have keycodes, …
