| Directives |
|
| Formats | 1. End Trace: ENDTRACE 2. End Tracing of Windows Host Program: ENDTRACE SERVER Where |
|
| SERVER | For internal use only. | |
| Description | Use the ENDTRACE directive to stop the tracing of program statements (activated by a previous SETTRACE directive). | |
| See Also | SETTRACE Enable Program Tracing | |
| Examples | 0010 SETTRACE 0020 DEFCTL -1011=3 ! Return CTL 3 on up arrow 0030 INPUT "Enter name:",N$ 0040 ON CTL GOTO 0050,0030,0030,0060,0060 0050 INPUT "Enter Addr:",A$ 0060 ENDTRACE ; PRINT "DONE"; END -:run 0010 SETTRACE 0020 DEFCTL -1011=3 ! Return CTL 3 on up arrow 0030 INPUT "Enter name:",N$ Enter name: ! User hit up arrow 0040 ON CTL GOTO 0050,0030,0030,0060,0060 0060 ENDTRACE ; PRINT "DONE"; END DONE |
|