home *** CD-ROM | disk | FTP | other *** search
GW-BASIC | 1994-01-01 | 349 b | 12 lines |
- 10 PRINT ""
- 20 PRINT "This file may be run with the command GWBASIC gwinit.bas"
- 30 PRINT ""
- 40 INPUT "Enter the name of a Windows program: ", PROG$
- 50 PRINT ""
- 60 PRINT "If you have enabled AUTOMATIC mode " + PROG$ + " will be run."
- 70 PRINT "If you have not, you will get a one line message from " + PROG$ + "."
- 80 PRINT ""
- 90 SHELL PROG$
- 100 SHELL "pause"
- 110 SYSTEM
-