Tagged Questions
The keyboard-input tag has no wiki summary.
22
votes
5answers
19k views
How do I make python to wait for a pressed key
I want my script to wait until my users presses any key.
How do I do that?
9
votes
1answer
749 views
Delphi: Can I differentiate between numpad's enter key and carriage return?
I've got a quaint little app that pops up an on screen numberpad/calculator written in Delphi. I'd like to make it so if you pressed 'enter' (on the number pad) you'd be pressing '=' and if you ...
8
votes
3answers
2k views
Interpret enter as tab WPF
I want to interpret Enter key as Tab key in whole my WPF application, that is, everywhere in my application when user press Enter I want to focus the next focusable control,except when button is ...
5
votes
2answers
359 views
Lispy way to read user input from the keyboard in Clojure?
I am writing a function for my Clojure program that reads user input from the keyboard. If the user enters invalid input, the user is warned and then prompted again. When using a procedural style in ...
3
votes
1answer
85 views
Keyboard input using stdio.StandardIO in twisted python
I have a doubt in twisted python related to my multiclient chat server program. that is, when we give input from keyboard using stdio.StandardIO, where it is stored when we run the reactor? Can ...
2
votes
1answer
405 views
Input from console window in game
when you want to input in console window and you hold a key down for a moment, the output is displayed but after a bit of some lag. for example, in any type of common text editors you would see the ...
2
votes
3answers
4k views
Keyboard input with timeout in Python
How would you prompt the user for some input but timing out after N seconds?
Google is pointing to a mail thread about it at http://mail.python.org/pipermail/python-list/2006-January/533215.html but ...
0
votes
1answer
54 views
Can't input in command prompt when using keytool to generate key pair (public and private keys) and a signing certificate
I can't provide any input from my keyboard or from the on-screen keyboard when using keytool to generate key pair (public and private keys) and a signing certificate.
This problem occurs only when ...
0
votes
2answers
201 views
Asynchronous keyboard input on win32
I'm creating a simple 3D game on Windows 7 in C++ using the free version of the Havok physics engine. I want to use the WASD keys to move the character. The structure of the code is such that I need ...
0
votes
3answers
333 views
C++, how to control program flow with keyboard input
I have a main routine that loops infinitely. By changing bool variables using keyboard input, I want to be able to control whether certain if{} statements within that loop are getting called. I found ...
0
votes
1answer
190 views
How intercept these two key: “:” and “.”?
I need to do something when a user push "." and something else when an user push ":"
Is there a way to intercept these 2 key with javascript, jQuery or other ?
0
votes
3answers
735 views
Using WINAPI ReadConsole
I am trying to use the WINAPI ReadConsole() to wait for any keypress at the end of my Win32 console application.
CONSOLE_READCONSOLE_CONTROL tControl;
char pStr[65536];
DWORD dwBufLen = 1;
DWORD ...