1
vote
3answers
52 views
jQuery - keydown() on div not working in Firefox
I have the following example code, which should pop up an alert when the div is in focus and a key is pressed. This does what I expect in IE 7, but not in Firefox 3.5.5. What am …
1
vote
2answers
31 views
Focusable Panel in WPF
I need to make a Panel focusable in WPF, so that it captures keyboard events just as any other focusable control:
The user clicks inside the Panel to give it focus
any KeyDown or …
2
votes
2answers
108 views
Up, Down, Left and Right arrow are not catch by KeyDown
I am building an application where all the key input must be handled by the windows itself.
I set tabstop to false for each control witch could grab the focus except a panel (but …
1
vote
4answers
453 views
Detecting “value” of input text field after a keydown event in the text field?
So my site has an input box, which has a onkeydown event that merely alerts the value of the input box.
Unfortunately the value of the input does not include the changes due to t …
2
votes
5answers
342 views
Multiple Modifier Keys in C#
I am betting this is a really simple question to answer, I just can't get such a simple thing to work.
I use a keydown event to detect keys pressed and have several common key com …
0
votes
3answers
251 views
jQuery : binding keydown, same behavior except for one
Hello,
I have some input (text type). I'd like to the same behavior for all except for one.
I tried this :
$(document).ready(function() {
$("input[type=text]").bind('keydow …
1
vote
3answers
84 views
Convert received keys in PreviewKeyDown to a string
I am using PreviewKeyDown event on a window to receive all the keys from a barcode scanner. The KeyEventArgs is an enumeration and does not given me the actual string. I dont want …
0
votes
2answers
1k views
C# trying to capture the KeyDown event on a form
Hello!
I am creating a small game, the game is printed onto a panel on a windows form. Now i want to capture the keydown event to see if its the arrow keys that has been pressed, …
0
votes
2answers
308 views
How do i capture the Print Screen key?
Hello everyone.
I my program i need to capture when the Print Screen key is pressed down but it is not working (however it works with other keys).
I guess this has something to d …
0
votes
1answer
51 views
PreviewTextInput is not fired when the focus is on checkbox / Handling the PreviewTextInput in Main window and not allowing child control steal the characters
I have the following code. The window has a textbox and a checkbox. If I have focus on the anything other than checkbox and type something like 123-456 then for each character Prev …
1
vote
1answer
152 views
Keydown event for entire application VB .Net
I want to make it so that no matter which control has focus, it will do my event. So that I dont have to write a keydown event for all 137 of my objects. Is this possible?
Thanks
1
vote
3answers
805 views
C# - Tetris clone - Can’t get block to respond properly to arrow key combinations
I'm working on programming a Tetris game in Visual C# 2005. This is the most extensive program I have designed yet.
I create a shape class and a block class to control the locatio …
0
votes
2answers
188 views
Get textbox value on keydown + Multilingual support
Hi,
I want get the value of the text including the character on the keydown event.
$(".searchfield").keydown(function(e) {
if (e.which >= 32 || e.which < 127) {
var …
3
votes
5answers
365 views
KeyDown : recognizing multiple keys
How can I determine in KeyDown that Ctrl + Up was pressed.
private void listView1_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Control && e.KeyCode = …
0
votes
2answers
503 views
keydown in flex Flex
I have an small application in flex in which I have defined 2 canvases. On one of them I added controls and the other one is used to draw something and no controls are added:
< …
