Keyboard speed in milliseconds
-
Is there a known way to convert values from HKEY_CURRENT_USER\Control Panel\Keyboard\KeyboardSpeed to milliseconds? Thanks in advance :)
Hi, sure, seems KeyboardSpeed is a number in the [0, 31] range depending on Control Panel/Keyboard. So set it at maximum, write a little program that accepts a line of text, hold down the 'a' key for 10 seconds then hit ENTER, and let your program decide how may a's you've got. Divide 10000 by it and that is the shortest key repeat period in msec. :)
Luc Pattyn [Forum Guidelines] [My Articles]
This month's tips: - before you ask a question here, search CodeProject, then Google; - the quality and detail of your question reflects on the effectiveness of the help you are likely to get; - use PRE tags to preserve formatting when showing multi-line code snippets.