(C) Copyright 1985-1996 Modular Software Corporation. All rights reserved. Version 2.0 for AP - February 14, 1996
Goto: Table of Contents Index Chapter: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
INPUT VAR , -1 :This statement will cause a single keystroke to be returned to the BASIC program in the variable VAR. This single keystroke is not processed by the normal line input routine and therefore control characters such as backspace and carriage return are returned. This statement never echos anything to the screen.
CALL SENTENCE(STR) WORD.1 = STR[1] WORD.2 = STR[2]The SENTENCE subroutine relies on the command sentence being left over in the process' workspace. Because of this, be sure to call the SENTENCE program as the first executable statement of your program in order to prevent unusual results.
Goto: Table of Contents Index Chapter: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15