home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / dosutils / quikmenu.arj / MAINMENU.BAT next >
DOS Batch File  |  1991-11-03  |  2KB  |  46 lines

  1.  
  2. :START
  3. ECHO OFF
  4. REM Display the menu on screen
  5. REM 'MAINMENU' in the next line is whatever you called your .MNU file.
  6. QM MAINMENU
  7. CLS
  8. REM The label name after GOTO in the next lines may be any name you desire
  9. REM as long as the same name is used with ':' in front of it - see below.
  10. IF ERRORLEVEL 4 GOTO DOSLEVEL
  11. IF ERRORLEVEL 3 GOTO SPREAD
  12. IF ERRORLEVEL 2 GOTO DATABASE
  13. IF ERRORLEVEL 1 GOTO WORDPROC
  14. IF ERRORLEVEL 0 GOTO doslevel
  15. REM ----------------------------------------------------------------
  16. REM Run the Wordprocessor Program
  17. :WORDPROC
  18. REM 'WS' in next line should be your wordprocessor directory name.
  19. CD\WS
  20. REM 'WS' in next line should be the command to run your wordprocessor.
  21. WS
  22. GOTO START
  23. REM ------------------------------------------------------------------
  24. REM Run the database
  25. :DATABASE
  26. REM 'DB4' in next line should be your database directory name
  27. CD\DB4
  28. REM 'DB4' in next line should be the command to run your database.
  29. DB4
  30. GOTO START
  31. REM Run the spreadsheet.
  32. REM ------------------------------------------------------------------
  33. :SPREAD
  34. REM 'SC5' in next line should be your spreadsheet directory name.
  35. CD\SC5
  36. REM 'SC5' in next line should be the command to run your spreadsheet.
  37. SC5
  38. GOTO START
  39. REM ------------------------------------------------------------------
  40. REM Goto Operating System Level
  41. :DOSLEVEL
  42. CD\
  43. CLS
  44. REM 'MAINMENU' in the next line is whatever you called this batch file.
  45. ECHO Returning to DOS Level - Type 'MAINMENU' then hit 'Enter' for MainMenu
  46.