home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / icons / f1378 / sample.bat < prev    next >
DOS Batch File  |  1991-03-22  |  403b  |  24 lines

  1. REM Office batch file program
  2. ECHO OFF
  3. :BEGIN
  4. IMENU 123 windows pctools
  5. IF ERRORLEVEL 255 GOTO EXIT
  6. IF ERRORLEVEL 3 GOTO PCT
  7. IF ERRORLEVEL 2 GOTO WIN
  8. IF ERRORLEVEL 1 GOTO LOT
  9. :PCT
  10. ECHO Here we would run PCTools.
  11. PAUSE
  12. GOTO BEGIN
  13. :WIN
  14. ECHO Here we would run Windows.
  15. PAUSE
  16. GOTO BEGIN
  17. :LOT
  18. ECHO Here we would run Lotus 1-2-3.
  19. PAUSE
  20. GOTO BEGIN
  21. :EXIT
  22. ECHO Exiting, user pressed ESC.
  23.  
  24.