User`s guide
44
CipherLab BASIC Compiler
User's Guide
Example
OFF HOUR_SHARP
See Also
ON HOUR_SHARP GOSUB…
OFF KEY
Purpose
To terminate the "FUNCTION KEY Event Trigger" that executes a specific
subroutine when a function key is pressed.
Syntax
OFF KEY(number%)
Remarks
"number%" is an integer variable in the range of 1 to 12, indicating a function key
of the keypad.
Example
ON KEY(1) GOSUB On_Shift
ON KEY(2) GOSUB Off_Shift
...
On_Shift:
OFF KEY
Mode$ = "IN"
GOSUB Process
ON KEY(1) GOSUB On_Shift
RETURN
...
See Also
ON KEY… GOSUB…
OFF MINUTE_SHARP
Purpose
To terminate the "MINUTE_SHARP Event Trigger" that executes a specific
subroutine when the system time is on the minute.
Syntax
OFF MINUTE_SHARP
Remarks
Example
OFF MINUTE_SHARP
See Also
ON MINUTE_SHARP GOSUB…