• Please review our updated Terms and Rules here

In need of a PC key list

linuxlove

Veteran Member
Joined
Jan 11, 2009
Messages
1,018
Location
Auburn, AL
I can't seem to find one online, does anyone have a key list that shows each value of a key as the computer sees it? I'm looking to to some stuff in QuickBASIC involving a lot of keyboard use, but I can't find a key list.
 
Or let the language do the work for you...

Code:
10 INPUT A$
20 PRINT ASC(A$),A$
30 GOTO 10

Whack keys until done.
 
Well regardless, it's in the help which is a really wonderful concept that QB has ;-) So Shift-F1 to help, and under Contents tab your way over to either ASCII Character Codes or Keyboard Scan Codes and now you can program in checks for chr$(27) (ascii) or in key combos.
 
Back
Top