2
votes
2answers
75 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
366 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
305 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
192 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
63 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
268 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
39 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 …
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, …
1
vote
1answer
135 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
753 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
166 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
350 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 = …
-3
votes
2answers
176 views
how to make something when user press enter on the keyboard [closed]
can anyone help, please? this is in c# 3
0
votes
2answers
478 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:
< …
1
vote
5answers
315 views
Javascript sending key codes to a <textarea> element
Hi,
I can't figure out how to trigger a keydown event on a textarea element, e.g. imagine i have two textarea elements and when i type something in the first one, I want the secon …
