home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / vrac / ho51.zip / HO51.ZIP / demomenu.bat < prev    next >
DOS Batch File  |  1994-06-13  |  444b  |  28 lines

  1. @echo off
  2. rem   a simple demonstration
  3. set TWSAV= Shareware is simply another software distribution scheme
  4. :start
  5. mnu menu "t:Main Menu" "Dbase" "Chkdsk" "DIR Listing" "Quit"
  6. if errorlevel == 4 goto :end
  7. if errorlevel == 3 goto :dir
  8. if errorlevel == 2 goto :chkdsk
  9. if errorlevel == 1 goto :dbase
  10. goto :end
  11. :dbase
  12. cls
  13. dbase
  14. pause
  15. goto :start
  16. :chkdsk
  17. cls
  18. chkdsk
  19. pause
  20. goto :start
  21. :dir
  22. cls
  23. ls
  24. pause
  25. goto :start
  26. :end
  27. cls
  28.