home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The SelectWare System Volume 2 #3
/
The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso
/
las10000
/
menu.bat
< prev
next >
Wrap
DOS Batch File
|
1990-09-07
|
768b
|
40 lines
echo off
:start
cls
echo .
echo The Laser/Law demo can be run interactively,
echo or you watch a self running slideshow.
echo .
echo Please choose one of the selections below:
echo .
echo 1. Interactive demo
echo 2. Self running slideshow
echo 3. Quit
echo .
echo Please enter the number for your choice:
query
if errorlevel = 3 goto exit
if errorlevel = 2 goto slideshow
if errorlevel = 1 goto inter
echo Unavailable choice.
pause
goto start
REM run interactive demo
:inter
echo Loading interactive demo
LASER
goto exit
REM Slideshow
:slideshow
echo Loading slideshow demo
DEMO
goto exit
:exit
echo .
echo returning to The SelectWare System