home *** CD-ROM | disk | FTP | other *** search
/ So Much Shareware 1 / SoMuchSharewareV1_1991.iso / util1 / btx101.exe / lha / SAMPLES.COM / ESC.BAT < prev    next >
DOS Batch File  |  1991-01-27  |  546b  |  31 lines

  1. rem This example adds a shadow and allows the user to hit ESC to exit
  2.  
  3. echo off
  4. cls
  5.  
  6. :main
  7. btx Word_processorW SpreadsheetS DatabaseD eXitX /esc /shdw
  8. if errorlevel 4 goto end
  9. if errorlevel 3 goto dbase
  10. if errorlevel 2 goto spread
  11. if errorlevel 1 goto wordproc
  12. rem Yul be here is the user hits ESC!
  13. goto end
  14.  
  15. :wordproc
  16. rem this is where you would whatever commands necessary to load
  17. rem yer word processor
  18. goto main
  19.  
  20. :spread
  21. echo SPREADSHEEEEEET!
  22. goto main
  23.  
  24. :dbase
  25. echo DATABASE!
  26. goto main
  27.  
  28. :end
  29. echo Yer ALL DONE!
  30.  
  31.