home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
5 Star Games: Animations
/
5_STAR_GAMES.ISO
/
author
/
textscrn
/
ex_menu.bat
< prev
next >
Wrap
DOS Batch File
|
1993-11-01
|
374b
|
27 lines
@echo off
nocurs.com
menu.com
choice /c:abcd /n >nul
if errorlevel 4 goto choice4
if errorlevel 3 goto choice3
if errorlevel 2 goto choice2
if errorlevel 1 goto choice1
goto NONE
:choice1
echo chose A
GOTO EXIT
:choice2
echo chose B
GOTO EXIT
:choice3
echo chose C
GOTO EXIT
:choice4
echo chose D
GOTO EXIT
:NONE
ECHO NO CHOICE
:EXIT
normcurs.com