home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
So Much Shareware 1
/
SoMuchSharewareV1_1991.iso
/
util1
/
btx101.exe
/
lha
/
SAMPLES.COM
/
ESC.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-01-27
|
546b
|
31 lines
rem This example adds a shadow and allows the user to hit ESC to exit
echo off
cls
:main
btx Word_processorW SpreadsheetS DatabaseD eXitX /esc /shdw
if errorlevel 4 goto end
if errorlevel 3 goto dbase
if errorlevel 2 goto spread
if errorlevel 1 goto wordproc
rem Yul be here is the user hits ESC!
goto end
:wordproc
rem this is where you would whatever commands necessary to load
rem yer word processor
goto main
:spread
echo SPREADSHEEEEEET!
goto main
:dbase
echo DATABASE!
goto main
:end
echo Yer ALL DONE!