Here's one that's currently affecting me:
ALT + Numpad keys
N = _NUMLOCK
DO
k = _KEYHIT
IF _NUMLOCK = 0 THEN _NUMLOCK ON
IF _KEYDOWN(100308) THEN
IF k <> 0 THEN
PRINT k,
IF ABS(k) < 255 THEN PRINT CHR$(ABS(k)) ELSE PRINT
END IF
END IF
_LIMIT 30
LOOP UNTIL k = 27
IF N = 0 THEN _NUMLOCK OFF
Run the test code and hold down the ALT key, while hitting the keys on the number pad.
The only values you'll get as a trigger is the key up values (the negative numbers), with NO key down values. Press and hold the key as long as you like -- there's no value for them until you let up on the key.
Which makes it kind of difficult to code Alt-### entry for ASCII codes for an input routine. (Alt-158 to insert CHR$(158) into an user input, for example.)
I run into these type issues all the time with QB64's current input handlers, and have to try and hack some sort of work-around to make my code work as intended. :P