Tagged Questions

4
votes
4answers
938 views

Textarea lags after registering `keydown` events using Javascript

How does one go about attaching a bunch of code to an onkeydown event, but keep entering text into a textarea fast and crisp? Anything more than a couple of IF statements seems to slow it down quite …
3
votes
5answers
370 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 == Keys.Up) { …
3
votes
10answers
1k views

How do I convert a “Keys” enum value to an “int” character in C#?

This seems like something that should be easy, but I am having a tough time figuring out what needs to happen here. In the "KeyDown" eventhandler, if the "e.KeyValue" is a number, I want to treat it …
2
votes
2answers
124 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 I don't know if it …
2
votes
5answers
347 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 combination's to do …
2
votes
1answer
240 views

How do I detect the ‘delete’ key in my Field subclass?

I'm trying to detect and override the Delete key on the Blackberry keyboard. For some reason, it never makes it inside my case statement as when it hits that point: Keypad.key(keycode) == 8 …
2
votes
5answers
445 views

Capturing Keyboard strokes in C#

HI, I have the following problem- the following text is in a rich text box . The world is [[wonderful]] today . If the user provides two brackets before and afer a word, as in the case of wonderful …
2
votes
1answer
504 views

Control key plus mouse wheel.

What's the better way to handle the ctrl + mouse wheel in C#? I've figured out how to handle the MouseWheel event but how to know that the ctrl key is being pressed too? Thanks in advance.
1
vote
2answers
36 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 KeyUp event is …
1
vote
3answers
97 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 I doing wrong? …
1
vote
3answers
88 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 to use TextInput as …
1
vote
1answer
160 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
4answers
495 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 the key being …
1
vote
5answers
367 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 second box to show the …
1
vote
1answer
109 views

How to handle text edition from the KeyDown event?

I would like to edit a graphical text (not a TextBox control) through the KeyDown event. I need to update my text string according to the KeyEventArgs (key value and modifier). I using a french …

1 2 3 next
15 30 50 per page