01-05-2023, 12:26 PM
Interesting tip. And so one way you can see which keys have been pressed.
Code: (Select All)
Do
k = _KeyHit
Print "They pressed the keys: ";
Print k; " = "; Chr$(Abs(k))
Loop Until k = 0