home *** CD-ROM | disk | FTP | other *** search
/ 5 Star Games: Animations / 5_STAR_GAMES.ISO / author / textscrn / ex_menu.bat < prev    next >
DOS Batch File  |  1993-11-01  |  374b  |  27 lines

  1. @echo off
  2. nocurs.com
  3. menu.com
  4. choice /c:abcd /n >nul
  5. if errorlevel 4 goto choice4
  6. if errorlevel 3 goto choice3
  7. if errorlevel 2 goto choice2
  8. if errorlevel 1 goto choice1
  9. goto NONE
  10. :choice1
  11. echo chose A
  12. GOTO EXIT
  13. :choice2
  14. echo chose B
  15. GOTO EXIT
  16. :choice3
  17. echo chose C
  18. GOTO EXIT
  19. :choice4
  20. echo chose D
  21. GOTO EXIT
  22. :NONE
  23. ECHO NO CHOICE
  24. :EXIT
  25. normcurs.com
  26.  
  27.