The keydown tag has no wiki summary.
0
votes
1answer
35 views
Holding down arrows key constantly triggers keyUP event
Here's all I'm doing:
$(document).keydown(function(e) {
e.preventDefault();
console.debug(e.keyCode, "down");
});
$(document).keyup(function(e) {
e.preventDefault();
...
0
votes
0answers
27 views
Only Keyboard event not mouse events
I have created event for KeyDown which also triggers the mouse event. I dont want the mouse event. What can i do. Here is my sample code,
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
...
3
votes
2answers
72 views
multiple simultaneous key press c#
I am programming a game in microsoft visual studio c# and I have to catch lot's of keys simultaneously. I can't detect Q,W,E,R,T,Y at the same time but I can detect Q,W,E,R,T,A.
I tried to use ...
0
votes
0answers
14 views
Detect a hardware key in the browser without charCode, keyCode or “which”?
I have an Android device with hardware buttons. Two of these buttons can be detected in the default browser on a page using:
document.addEventListener("keydown", keydown, false);
However, the ...
0
votes
0answers
24 views
Need help creating onscreen navigation buttons that maps to keyDown functions
Im working on a vertical game, but I dont have a clue about onscreen touch controls
What must I do here for virtual on-screen controls to map the buttons to the keyDown listeners? I want to add ...
1
vote
1answer
41 views
VB.net Multithreaded keypresses
I have a working 3D object viewer in VB.net (I know that VB.net is not the best language to use for this but still)
So if I press the W key the box moves up. If I press the D key it moves to the ...
0
votes
0answers
11 views
Mac OSX capture all keypresses from MenuBar application
I'm sure most people are familiar with Alfred, the awesome task launcher. What I want to know is how does Alfred detect that I'm pressing Command-Shift-Space to launch its UI? Does it override ...
0
votes
1answer
43 views
How can I do that without WIN32 API?
So, here is a countdown.
My aim is the next: if you don't do anything for the given time (ent_sec) the countdown will reach 0 after a time and return with 0, BUT if you press down the letter c ...
1
vote
2answers
101 views
Angular communication between controllers and directives
I have this piece of code which allows a user to leave comments on a list of items.
I created a directive and listen to keydown in order to let the user submit a comment if keyCode == 13.
Not sure ...
1
vote
0answers
85 views
Keep listening for jquery keydown events regardless of focus
The Situation
I am building a basic slide deck in HTML, CSS & Javascript. Its based on the jquery cycle plugin. The slides are simple li items that contain either images, text or iframes (e.g. ...
1
vote
2answers
103 views
C# Stopwatch on-the-fly update
(My first question here!)
Hi, I am kind of beginner in c#. I tried to build a simple timer (in Windows.Forms).
I made a label which indicates the time, and used the StopWatch class (from ...
5
votes
3answers
73 views
How to make a moving div restricted in an outside div?
So I have a div you move with your arrow keys, but how do I make it so it can't go outside the "border div"?
$(document).ready(function(){
$(document).keydown(function(e) {
switch (e.which) {
...
6
votes
2answers
103 views
keydown + keyup events for specific keys
I'm trying to make the background color change when certain keys are held down. For example, when the 'r' key is being held down, the background should be red. When the 'r' key is not being pressed ...
1
vote
0answers
42 views
MainWindow PreviewKeyDown slows TextBox input
I'm using the KeyDown Event in my MainWindow to get key strokes of the up/down key.
When typing in a TextBox I get huge delays between key stroke and the character showing up on the screen, because of ...
0
votes
1answer
53 views
Dynamic switch statement for keypress (Javascript)
I've got a website that has full width and height div's (each div is effectively a page) and you navigate through them using links and hashes; <a href="#work"></a> will scroll you to the ...
-5
votes
1answer
81 views
javascript keydown not working in chrome and firefox [closed]
In a table , I simulate selected row by changing style of the row .Now I want to move this selected row by arrow keys but the keydown event is not working in Chrome and Firefox.
I do NOT want to use ...
-1
votes
0answers
40 views
Override ALL FORM Shortcut keys?
in my project I've a lot of form.
Each form have his "personal" shortcut keys, but I need to set a personal list of shortcut keys for all form.
Is possible to override ALL PROCESS Shortcut keys or I ...
1
vote
1answer
32 views
The KeyDown event of a Simple style combo box is raised two times
I have simple win form application with the tab and combo box controls.
Combo box control has a style of "Simple".
Tab control has key down event.
When I press Enter key on the combo control it ...
0
votes
2answers
80 views
C# Reading Textbox ignoring characters
Hi everyone i have a key down event as follows
if (e.KeyCode == Keys.C && e.KeyCode == Keys.Enter || e.KeyCode == Keys.Return)
{
var amount = textBox1.Text;
var total = label3.Text;
...
0
votes
1answer
62 views
Mvvm TextBox KeyDown Event
I'd like to know how I can handle a KeyDown Event with MVVM in my ViewModel.
I have a TextBox and when the user hits a key, which is not a number, the input shouldn't be allowed. I'd normally do it ...
0
votes
1answer
95 views
Trigger a shift key press, when enter key is pressed - Jquery
I got this code in jquery -:
$('#postBoxEditor').live("keydown",function(e){
if(e.which == 13 && !e.shiftKey){ e.preventDefault();
var triggerevent = jQuery.Event("keydown"); ...
1
vote
1answer
201 views
Winform Datagridview handle tab and arrow keys
I want to handle the KeyDown event on the DataGridView cell. I use the following code to get the KeyDown event on cell:
private void dgvData_EditingControlShowing(object sender, ...
1
vote
1answer
46 views
Keydown event weird behaviour
I'm trying to catch shortcut keys. I need an explanation on how KeyDown Events are managed. Let's take this as an example :
Private Sub SoldeOuvertFou_KeyDown(ByVal sender As System.Object, ByVal e ...
0
votes
2answers
87 views
jquery keypress/keydown to call function
my previous question:
This
sweetamylase posted her fiddle http://jsfiddle.net/amyamy86/jSyfy/ , which is great and very close to what I am trying to achieve, but I am having trouble getting it so ...
0
votes
0answers
21 views
win32 Tree control Mirroring issue
I'm using tree view control in a module i'm developing, I need it to be RTL i followed the instructions in this article http://msdn.microsoft.com/en-us/goglobal/bb688119.aspx , it has converted to rtl ...
0
votes
1answer
76 views
How to change the focus inside a form and make the new control deal with the key pressed?
I have a form with a search box and a datagridview with the results.
What I need is the search box to always get the focus whenever I press a char or number key, and then process the key. So, for ...
0
votes
1answer
77 views
In Javascript, How to detect the character case (upper/lower) in keydown & keyup events?
I need to detect the case of characters in event keydown and keyup
Here's the code:
$('body').keydown(
function(event) {
var charCode = (event.which) ? event.which : event.keyCode;
...
1
vote
4answers
221 views
jQuery: click event called $('textarea').val().trim().length times
Well, that's pretty much what happens.
We've all seen this before: button becomes active and clickable only after we've put something in an input filed. I'm trying to implement that. I guess either ...
0
votes
0answers
115 views
DateTimePicker on key press
I put some code in datetimepicker_ValueChanged event for jump from day field to month and year. Something like this, wich i found on this super site:
private void dela_ValueChanged(object sender, ...
0
votes
0answers
23 views
Handle textDidChange Method in NSTextView
I want trigger the event if the text is changing in my NSTextView. Is there a way to trigger that directly from the NSTextView or I have to create a custom Class for the NSTextView?
0
votes
2answers
107 views
NSTextView keyDown Event
I want trigger the keyDown Event with every Key action. Therefore I have created a subclass of NSView.
@interface CodrTextView : NSView {
NSTextField *lineNumberSpace;
NSTextView ...
1
vote
1answer
80 views
Event Fires only from the second time
Have a textbox type column 'Qty', in a gridview that has to accept only numbers.The foll. code works good but only from the second input. I only want to use keydown here.
private void ...
0
votes
1answer
37 views
javascript multiple keys pressed at once comes to error
$(document).keydown(function(e){
var key=e.which;
//to prevent reversing, add the possible value of d which hinders the snake to go to desired direction
if(key=="37"&&d!="right"){
...
0
votes
1answer
101 views
Meteor keydown doesn't work
I am using meteor to update a document in the database. However keydown does not seem to be working. here is the code.
Template.leaderboard.events({
'keydown button.inc': function(evt) {
...
4
votes
2answers
90 views
KeyDown and KeyUp Multiple
I am creating a piano in C Sharp and currently I have keyboard keys to play sounds. For example key A plays Note C. problem I am having is there I want to be pressing multiple keys at the same time ...
-7
votes
2answers
172 views
How to Get Key Data from Keyboard usnig C#? [closed]
I have a grid and i have keyDown event .. if I press something from keyboad i need that
Value
For example
Keys Value
if i press "K" ...
0
votes
4answers
89 views
keydown with JavaScript [duplicate]
I am not sure how to do 'keydown' with pure JavaScript.
Here's how I did it with jQuery, but is there a way to do the same thing with pure JS also ?
I just wanna check if there is a way and to learn ...
1
vote
0answers
59 views
Keyup event not registered after contextmenu event
I am trying out this following code. It is supposed to change the sh attribute of the input to 1 whenever the shift key is pressed, and revert back to 0 when released
<!DOCTYPE html>
...
0
votes
1answer
50 views
Trouble detecting keydown on canvas
I can't get my keydown event listener to detect key input.
I've tried:
Adding a tab index to the canvas
A mouseover listener to add focus while the mouse moves over the canvas
adding canvas.focus() ...
1
vote
4answers
144 views
jQuery call event on keydown or keyup
I am trying to change the color of a div element on a keydown and keyup but i just cant seem to get it to work. Ive check every example i can find on the internet but my code will just not seem to ...
0
votes
0answers
56 views
DataGridViewTextBoxEditingControl maximum length is 105 symbols, how to increase, or is there alternate method?
I want to create program which must understand which character is written in DataGridViewTextBoxCell... I can't use KeyDown event, because in DataGridViewTextBoxCell I'm typing with Georgian unicode, ...
0
votes
2answers
121 views
Detecting hitting Enter within text input
I am trying to detect when a user hits Enter while still typing in a text input. The event should fire only when the 'down'ing of the key and release of the key both happen within the text input. That ...
0
votes
1answer
183 views
How do I get characters from KeyEventArgs and not KeyPressEventArgs?
I know this has been asked hundred of times, but I haven't been able to find a solution that helps me. I'm using a barcode scanner and I want to be able to get the keys that are typed using just the ...
1
vote
2answers
70 views
Detecting left and right control keys in Javascript
I have a text input, where I need to bind an event on doing a CTRL-V. I have set a global variable named ctrl which is set to 1 whenever a keydown is fired with a which value of 17. Similarly it is ...
2
votes
1answer
103 views
How can I map the left and right arrow keys to act like up and down keys?
I am trying to make a site scroll up when the left arrow is pressed, and down when the right arrow is pressed.
I am trying this:
$("body").keydown(function(e){
console.log( e.which );
...
0
votes
3answers
118 views
KeyDown event not firing?
I just fully recoded my project and it was a success.
The code became much cleaner than it originally was, around 100 lines shorter and I even got rid of an useless class.
However, I encountered one ...
1
vote
1answer
452 views
move picture box vb.net mousekeydown and up
i am in visual basic dot net i have a picture box and i need to move it, the user click and move the mouse and the picturebox need move with it when the user release the mouse the picture box have ...
0
votes
0answers
24 views
How do I turn off slide transitions using the “keydown” ruby gem?
Is there a recommended way to control transitions from the markdown source, or at least via the slideshow specific js file?
I think I see how to do this manually by changing the keydown keydown ...
0
votes
4answers
223 views
.blur() and .keypress() not working in jQuery
I am trying to call some functions when a text-field is focused, blurred, and when a key is pressed; however, only the focus function works. Here's what I have:
HTML:
<form id="loginForm" ...
0
votes
1answer
67 views
getting item that is focused on in a listwiew using th up and down arrow key
I wish to get the selected item from a listview, but not by clicking on it as i already have a function that does this. I will like to use my up and down arrow to do this.
I have already got a ...






