home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nederland Interaktief Kinderen
/
NLeduca.bin
/
NLEDUCA
/
KLEUTER
/
asfmenu.bat
< prev
next >
Wrap
DOS Batch File
|
1997-05-17
|
557b
|
44 lines
echo off
cls
echo.
echo A Start Dieren
echo B Start Hangman
echo C Start Klok
echo D Start Letters
echo E Start Puzzel
echo F Start Rekenen
echo.
choice /c:abcdef
if errorlevel 6 goto Start6
if errorlevel 5 goto Start5
if errorlevel 4 goto Start4
if errorlevel 3 goto Start3
if errorlevel 2 goto Start2
if errorlevel 1 goto Start1
:Start1
dieren
goto Einde
:Start2
hangman
goto Einde
:Start3
klok
goto Einde
:Start4
letters
goto Einde
:Start5
puzzel
goto Einde
:Start6
rekenen
goto Einde
:Einde