home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 253.img / DOS50HCT.ZIP / DOS50HCT.TD0 / DOSHCT / SCREEN.BAS < prev    next >
Encoding:
BASIC Source File  |  1988-09-15  |  1022 b   |  33 lines

  1. ' This test examines the screen swapping. Please follow these directions.
  2. '
  3. ' 1. Move the cursor down to line 1000, then hit F9
  4. ' 2. Press F5, the program will begin to run
  5. ' 3. When the program stops, hit F4 - check to see that the output screen
  6. '    is OK (You should only see text)
  7. ' 4. Hit F4 a second time to return to the user-interface - check to see
  8. '    that the screen is correctly restored.
  9. ' 5. Hit F5 to continue the program.
  10. ' 6. Continue steps 3 & 4 until you see the message -
  11. '          "Hit any key to continue"
  12. ' 7. When the test is finished Hit "Alt F X" to exit
  13. '
  14. ON ERROR GOTO 2000
  15. FOR I = 0 TO 13
  16. SCREEN I
  17. CLS : PRINT "Hit F4 to return to the user-interface    ( Test"; I; ")"
  18. 1000 '**** Move the cursor down this line, then hit F9****
  19. NEXT
  20. '
  21. '
  22. CLS
  23. SCREEN 0, , 0, 0
  24. WIDTH 80
  25. PRINT "        The program has finished. "
  26. PRINT
  27. PRINT "When you return to the user-interface press"
  28. PRINT "               ALT F X"
  29. PRINT "          to exit the program"
  30. END
  31. 2000 RESUME NEXT
  32.  
  33.