Im attempting to write a program that begins with a menu with each option being numbered. When you press the number corresponding to the option it takes you to that particular option. I've been using the Getkey function to do this, but I am unsure of the numeric value of the numbers I need.
For example to go to option 1 I used the following code:
Do
Getkey=72=>Goto 1
As the value of the number 1 on the keypad is 72.
Is there a site that lists all the values of keys in terms of the Getkey function or even a simple method of determining the value of the key?
Thanks
Konfl1kt

Cfx-9850gb Plus Getkey Function Values
Started by
Konfl1kt
, Jun 18 2006 02:32 AM
2 replies to this topic
#1
Posted 18 June 2006 - 02:32 AM
#2
Posted 18 June 2006 - 05:25 AM
The getkey values should be in your manual.
Or
Create a new program:
Or
Create a new program:
It will show you your getkey valuesLbl 1
ClrText
Getkey
Locate 1,1,Ans
Goto 1
#3
Posted 20 June 2006 - 05:13 PM
Also a little tip don't do:
Getkey=70=>Goto 1
Getkey=71=>Goto 2
This will work but it may do things you aren't expecting, do this instead:
Getkey->K
K=70=>Goto 1
K=71=>Goto 2
Getkey=70=>Goto 1
Getkey=71=>Goto 2
This will work but it may do things you aren't expecting, do this instead:
Getkey->K
K=70=>Goto 1
K=71=>Goto 2
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users