From: | Sami N��t�nen |
Date: | 29 Sep 2000 at 07:38:03 |
Subject: | Re: Tab code |
> Hello,
>
> Does anyone know what chr$ code has Tab key???? In which way I can check codes
> for keys like TAB, SHIFT, ALT, RETURN etc.???
>
> Redgards
well the chr$ code you can pick ALL ISO-LATIN chr$ codes using this small proggy:
for i=0 to 255
nprint "Here is the char ->"+chr$(i)+" And it has CHR$ code: "+str$(i)
if (i mod 20) = 19 then mousewait ; or was it waitmouse ?
next i
Well you surprisingly should get this information from the MANUAL :)
qualifier or similar which gives a bit pattern about those
qualifier keys: capslock, ctrl, left shift, left amiga, left alt, right shift,
right amiga, right alt
And tab, return, esc, function keys etc you can read using rawkey
If you meant chr$ code for shift or alt then there isn't any, because those are
qualifiers and don't have any outprint.
---------------------------------------------------------------------
To unsubscribe, e-mail: blitz-list-unsubscribe@netsoc.ucd.ie
For additional commands, e-mail: blitz-list-help@netsoc.ucd.ie