Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
1k views

OSX: Detect system-wide keyDown events? (Solved, with sample code)

I'm working on an typing-tutor application for Mac OSX that needs to have keystrokes forwarded to it, even when the application is not in focus. Is there a way to have the system forward keystrokes ...
7
votes
3answers
3k views

jQuery key code for command key

I have read http://stackoverflow.com/questions/302122/jquery-event-keypress-which-key-was-pressed and ...
7
votes
4answers
4k views

Up, Down, Left and Right arrow keys do not trigger KeyDown event

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 ...
7
votes
7answers
7k 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) { ...
6
votes
4answers
116 views

javascript (jquery) numeric input: keyCode for '3' and '#' are the same

I need to set up an <input type="text" /> so that it will accept only numeric chars, backspace, delete, enter, tabs and arrows. There's a lot of exemple around there, i started with something ...
6
votes
1answer
151 views

keydown event not fired while mouse dragging in Chrome

I noticed a strange behavior regarding keydown event in Chrome. I have this simple script (http://jsfiddle.net/xYDbt/1/): <div id="x"></div> <script> document.onkeydown = ...
6
votes
4answers
4k 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 ...
5
votes
2answers
7k views

Getting “The 'charCode' property of a keydown event should not be used. The value is meaningless” error in jQuery

I'm getting "The 'charCode' property of a keydown event should not be used. The value is meaningless" error in firefox using jQuery. My code looks like this: $("div#center-box div#empid-textbox ...
5
votes
5answers
5k 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 ...
5
votes
3answers
2k views

How can I capture the keystroke that triggers “CellEndEdit” on a DataGridView in C#?

I have a DataGridView that is set to EditOnF2. I do some special processing of data in the CellEndEdit eventhandler that sets the value of the cell. I still want the functionality of the ...
5
votes
2answers
3k views

Handling key events on WebBrowser control

I am using the WebBrowser control in a C# application and want to handle all key events while the WebBrowser has the focus, regardless what individual content element (input field, link, etc.) is ...
4
votes
2answers
43 views

How to have “jQuery.Event” work on Firefox?

I'm writing a script which triggers an artificial keydown event with keyCode 37 when button is clicked. The following script works fine on IE, Safari, and Chrome, but it doesn't work on Firefox and ...
4
votes
4answers
57 views

Trying to figure out if there is a bug in jQuery or if it's something I'm doing

$(document).keydown(function (event) { alert(event.which); }); For the semicolon key, ;, this gives 59 in Firefox and 186 in Chrome. However, from the jQuery reference page for the ...
4
votes
3answers
675 views

Changing the keypress

In an input box or contenteditable=true div, how can I modify a keypress for the letter "a" to return a keybress for the letter "b"? I.e., every time you type the letter "a" in the div, the output is ...
4
votes
4answers
897 views

Cancel the keydown in HTML

How can I cancel the keydown of a specific key on the keyboard, for example(space, enter and arrows) in an HTML page. Thanks
4
votes
3answers
3k views

Firebug JS warning to jQuery 1.4.2 “The 'charCode' property of a keyup event should not be used. The value is meaningless.” To ignore it?

Firebug 1.5.4 JavaScript warning : The 'charCode' property of akeyupevent should not be used. The value is meaningless. To ignore it? Is there any issue? The warning appears to jQuery 1.4.2 ...
4
votes
6answers
4k 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? ...
4
votes
4answers
18k views

C# trying to capture the KeyDown event on a form

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, the problem however is that ...
4
votes
10answers
5k 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 ...
4
votes
4answers
2k 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 ...
4
votes
3answers
10k views

How can I capture KeyDown event on a WPF Page or UserControl object?

I have a Page with a UserControl on it. If the user presses Esc while anywhere on Page I want to handle. I thought this would be as easy as hooking up the PreviewKeyDown event, testing for the Esc ...
4
votes
1answer
2k 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.
3
votes
2answers
456 views

Grid 'keydown' event doesn't catch special keys like arrow keys or Enter or Tab

I have an issue with catching special keys on 'keydown' event.. but all works great if I use 'keyup' event, except I can't use it .. Seems some control catches that event and stops proceeding for ...
3
votes
1answer
572 views

C# WPF MVVM - textbox in system-tray icon contextmenu

I'm currently tring to use a textbox in the contextmenu of my system-tray icon. The problem is, that the textbox doesn't react on the keydown event. that means I'm not able to insert text into my ...
3
votes
2answers
466 views

KeyDown event not Working on PrintScreen Key

I am using C# windows Application I am checking which key, user have pressed down by keyboard. I have checked for all keys but its not working in case of printScreen private void ...
3
votes
2answers
665 views

Multiple key presses doing different events in C#

private void Form1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.W) player1.moveUp(); if (e.KeyCode == Keys.NumPad8) ...
3
votes
1answer
2k views

How to decode character pressed from jQuery's keydown()'s event handler

I need to figure out which character was typed into a text field from within the handler that is called by jQuery's keydown function. key.which gives me only the keycode, but I need to figure out ...
3
votes
2answers
828 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 ...
3
votes
3answers
10k views

Adding event handler to an iframe using JQuery

I want to assign a keydown event handler to an iframe. Something similar to the pure JS: document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true); I tried: ...
3
votes
3answers
6k views

silverlight keydown event doesn't fire for arrow keys

I have a canvas inside a scrollview. I attached a keydown event handler to the scrollview. For most keys, the handler gets called. However, for the arrow keys, the handler does not get called. ...
2
votes
2answers
65 views

How do I start a tone and let it run indefinitely till i stop it explicitly?

I am trying to write a Piano application for my kid. What I am doing is using KeyDown and KeyUp Events inside a WinForm. The idea is to start emiting a frequency through the speaker in KeyDown event ...
2
votes
2answers
91 views

HTML Keydown even only once even when its being held it?

I have a Script in my HTML document that detects when one of the arrow keys is detected then it changes the URL of an iframe. When the key is released the iframe is changed again. This works except ...
2
votes
1answer
88 views

Android mobile Browser jQuery keydown issue

I want a textarea to respond to keydown. I tried the following <textarea id="text"></textarea> $('#text').keydown(function() { alert('keydown'); }); This works fine on the Desktop ...
2
votes
2answers
70 views

Keyboard events in terminal

I'm going to write terminal based game. It will be realtime, so I need to display animation and read keyboard events in the same time. How can I do that? In JavaScript I would make a loop displaying ...
2
votes
2answers
100 views

How can I get keydown events on a div in chrome?

I'd like to get keydown events on a div. I use JQuery keydown. Pretty simple. However, it does not work on chrome. For this to work on chrome, I have to set tabindex = 0. If I do this, Chrome puts ...
2
votes
1answer
107 views

Use EventTrigger on a specific key

I would like to invoke a command using EventTrigger when a particular key is touched (for example, the spacebar key) Currently I have: <i:Interaction.Triggers> <i:EventTrigger ...
2
votes
3answers
104 views

Listen to multiple keydowns

I'm trying to let a user move an element on the page using the arrow keys. So far, I have movement working for up/down/left/right, but not for diagonal (two arrow keys pressed simultaneously). My ...
2
votes
1answer
182 views

Make the PopupMenu appear at the selected Item of a TreeView in VB6

I hava a TreeView in VB6 that uses a PopupMenu when a Node is right clicked. As the VB6 PopupMenu defaults its position to the mouse coordinates the menu appears at the right place. What I want to ...
2
votes
2answers
257 views

Hotkeys in Silverlight?

Is there a way to create global keys in Silverlight? I added a KeyDown event handler to the topmost Page element. I can catch the key signal when elements like a Button, TextBox, Calendar, and ...
2
votes
1answer
564 views

Android: EditText delete key not registering on first keydown

My problem is this; I have an edit text and am using setKeyListener and creating a new NumberKeyListener. In this on keydown when a number is hit it works as expected, but when the delete/backspace ...
2
votes
2answers
625 views

Windows “ding” sound plays when using ctrl+A in a textbox (C#)

It was easy enough to create a text box that supports "ctrl+A" (select all), by listening in on the text box's KeyDown event for an "A" keypress when Control is set to True. When this condition is ...
2
votes
3answers
695 views

How do i simulate a click or keydown event?

I need to simulate a click or mouse event. I tried various things but the lib i am using doesnt seem to respond to it or does respond but only on specific browsers. ATM i do ...
2
votes
2answers
2k views

Why doesn't OnKeyDown catch key events in a dialog-based MFC project?

I just create a dialog-based project in MFC (VS2008) and add OnKeyDown event to the dialog. When I run the project and press the keys on the keyboard, nothing happens. But, if I remove all the ...
2
votes
1answer
348 views

webbrowser control check if backspace was pressed in textbox

In my winform application I have webbrowser control. I need to handle backspace keypress to navigatу to another page when this button was pressed. I found PreviewKeyDown event of the webbrowser ...
2
votes
3answers
623 views

jquery: keydown, keyup, small snippet, why isn't this working?

Why isn't this working? var holdingctrl = false; $(document).keydown("q",function(e) { if(holdingctrl == true) alert("Holding CTRL and pressing Q: Success."); e.preventDefault(); }); ...
2
votes
2answers
123 views

Handle KeyDown during a drag drop

I need to respond to keydown events (O, C, G keys etc., not modifier keys) while a Drag+Drop operation is in progress over my control (i.e. between DragEnter and DragLeave). However the KeyDown event ...
2
votes
2answers
882 views

Detect Arrow Key - KeyDown for the whole window

I have a WinForms Form (C#/.Net) and it contains a PictureBox, MenuStrip, Panel and two Button controls. I need to detect KeyDown event for the Arrow Keys for the whole window; i.e., when the window ...
2
votes
1answer
2k views

DataGridView keydown event not working in C#

DataGridView keydown event is not working when I am editing text inside a cell. I am assigning shortcut Alt+S to save the data, it works when cell is not in edit mode, but if it is in edit mode ...
2
votes
1answer
1k views

jQuery: How to catch keydown + mouse click event?

I have a div element. I need to catch a mouse click on this div while alt-key (keyCode = 17) is pressed. Here is what i've got to catch key press: // Html <div id="targetDiv">I want to put a ...
2
votes
3answers
954 views

Get the char on Control.KeyDown?

When handling Control.OnKeyPress event, there is a KeyPressEventArgs that contains a KeyChar. For usability reasons I need exactly the same KeyChar but when handling OnKeyDown event. The ...

1 2 3 4 5