home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / winit / gwinit.bas (.txt) next >
Encoding:
GW-BASIC  |  1994-01-01  |  349 b   |  12 lines

  1. 10   PRINT ""
  2. 20   PRINT "This file may be run with the command GWBASIC gwinit.bas"
  3. 30   PRINT ""
  4. 40   INPUT "Enter the name of a Windows program: ", PROG$
  5. 50   PRINT ""
  6. 60   PRINT "If you have enabled AUTOMATIC mode " + PROG$ + " will be run."
  7. 70   PRINT "If you have not, you will get a one line message from " + PROG$ + "."
  8. 80   PRINT ""
  9. 90   SHELL PROG$
  10. 100  SHELL "pause"
  11. 110  SYSTEM
  12.