I would like to be able to trap the double key press (for the Char T for example) in order to do some special processing.I would like the key presses to happen fast enough to not be interpreted as two separate presses, just like the double click. Any ideas how i can achieve this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
When the key(s) are hit, make a note of the time. Then compare it with the time you noted the last time they key(s) were hit. If the difference is within your threshold, consider it a double. Otherwise, don't. Rough example:
|
|||||||
|
|
Have a variable (perhaps In your keypress event, if that variable is true then you have a double press. Example:
|
|||||||||||
|