home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / pat10000 / demo.bat < prev    next >
DOS Batch File  |  1990-09-07  |  918b  |  48 lines

  1. echo off
  2. :start
  3. cls
  4. echo .
  5. echo     This demo has instruction build into the demo.
  6. echo     Follow the instructions on the screen to configure
  7. echo     the demo for your system.  
  8. echo .
  9. echo     For a printout of more complete instruction 
  10. echo     select option 2 below.
  11. echo .
  12. echo     1. Interactive demo
  13. echo     2. Print instructions
  14. echo     3. Quit
  15. echo .
  16. echo     Please enter the number for your choice:
  17. query
  18.  
  19. if errorlevel = 3 goto exit
  20. if errorlevel = 2 goto insturctions
  21. if errorlevel = 1 goto inter
  22.  
  23. echo Unavailable choice.
  24. pause
  25. goto start
  26.  
  27. REM run interactive demo
  28. :inter
  29. echo .
  30. echo .
  31. echo Loading interactive demo
  32. FLOWDEMO
  33. goto exit
  34.  
  35. REM Instructions
  36. :insturctions
  37. echo .
  38. echo .
  39. echo Using the DOS PRINT program to print out INSTRUCT.DOC
  40. echo Ready printer and
  41. pause
  42. print instruct.doc
  43. goto start
  44.  
  45. :exit
  46. echo .
  47. echo returning to The SelectWare System
  48.