Bizarre Keyboard Problem

BlitzPlus Forums/BlitzPlus Programming/Bizarre Keyboard Problem

DrDerekDoctors(Posted 2006) [#1]
Okay I have a program and it seems to detect the SHIFT/CTRL keys quite happily via the $101 and $102 key events coupled with keydown to get more specific. Anyway at some point in the program they stop working and the $101 and $102 key events only detect a limited number of keys from then on (Space, Escape, Return and nothing else). Any ideas why the key handler would suddenly go all crappy?


CS_TBL(Posted 2006) [#2]
Did you ctrl-esc orso? B+ can loose focus.. which is why I used the always-working GetASyncKeyState (in some dll) to do my own key-routine.


DrDerekDoctors(Posted 2006) [#3]
Ah, ta' muchly!