home *** CD-ROM | disk | FTP | other *** search
- ' This test examines the screen swapping. Please follow these directions.
- '
- ' 1. Move the cursor down to line 1000, then hit F9
- ' 2. Press F5, the program will begin to run
- ' 3. When the program stops, hit F4 - check to see that the output screen
- ' is OK (You should only see text)
- ' 4. Hit F4 a second time to return to the user-interface - check to see
- ' that the screen is correctly restored.
- ' 5. Hit F5 to continue the program.
- ' 6. Continue steps 3 & 4 until you see the message -
- ' "Hit any key to continue"
- ' 7. When the test is finished Hit "Alt F X" to exit
- '
- ON ERROR GOTO 2000
- FOR I = 0 TO 13
- SCREEN I
- CLS : PRINT "Hit F4 to return to the user-interface ( Test"; I; ")"
- 1000 '**** Move the cursor down this line, then hit F9****
- NEXT
- '
- '
- CLS
- SCREEN 0, , 0, 0
- WIDTH 80
- PRINT " The program has finished. "
- PRINT
- PRINT "When you return to the user-interface press"
- PRINT " ALT F X"
- PRINT " to exit the program"
- END
- 2000 RESUME NEXT
-
-