Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
CHR$
#11
1C is hexadecimal. Try &H1C
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#12
1Ch....

Hexadecimal:

256 16 1
0 1 C
| |
\-|-/
|
16*1 + 12*1 = 16 + 12 = 28
So ENTER's SCANCODe is 28.

You can get scancodes by:
Code:
FUNCTION neoKeybInkeyScan%
   sc% = INP(&H60)
   IF sc% >= 128 THEN sc% = 0
   neoKeybInkeyScan% = sc%
END FUNCTION
Reply
#13
You can also check them in the QB help, which is faster Tongue
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)