home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / basicaid.zip / ADVANCED.DOC < prev    next >
Text File  |  1984-02-21  |  2KB  |  40 lines

  1.      Documentation Maintained by PC Professional Users Group
  2.                P.O. Box 2350 Wilmington DE. 19899
  3. FILENAME:               ADVANCED.BAS
  4. PROGRAM NAME:           Code to check for Advanced BASIC
  5. VERSION NUMBER:         1.0
  6. VERSION DATE:           00-00-00
  7. AUTHOR (ORIGINAL):      David Bennett    (302) 571-0314
  8. " ADDRESS/PHONE:        201 Snuff Mill Road, Wilmington DE. 19807
  9. LATEST REVISOR:         .
  10. " ADDRESS/PHONE:        .
  11. OBTAINED FROM:          Author
  12. PROGRAM TYPE:           Utility 
  13.  
  14. ********************** EQUIPMENT REQUIRED **********************
  15. (Consider printer, modem, memory, graphics board, special equip., etc.)
  16.  
  17. ********************* PURPOSE; DESCRIPTION *********************
  18. This is some code that you can add to a program that requires
  19.  Advanced Basic.  If the user tries to use disk or cassette, 
  20.  this code will warn him and stop the program.
  21.  
  22. ************************* INSTRUCTIONS *************************
  23. -Add this code in an appropriate location to any of your programs
  24.  which require the use of ADVANCED BASIC
  25.  
  26. ************************* PECULIARITIES ************************
  27. Make sure line 10 exists or change the GOTO number at the end of
  28. line 7
  29.  
  30. *********************** GENERAL COMMENTS ***********************
  31. -This is a nice sort of finishing touch which should be added to
  32.  any program which will not run without ADVANCED BASIC.
  33.  
  34. -The complete code listing is:
  35. 7 ON ERROR GOTO 8 :PLAY"mf" :ON ERROR GOTO 0 :GOTO 10
  36. 8 PRINT "Sorry, but you must use BASICA to run this program.":RESUME 9
  37. 9 ON ERROR GOTO 0 :END
  38.  
  39. -An improvement would be :
  40.