home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / ewbademo.zip / EWBDEMO.BAT < prev    next >
DOS Batch File  |  1992-11-09  |  739b  |  44 lines

  1. @echo off
  2. echo off
  3.  
  4. echo  
  5. echo  
  6. echo  
  7. echo This demo requires at least 520 KB RAM.
  8. echo Make sure your mouse is connected and the driver is installed.
  9. echo  
  10. echo Press Ctrl-C to quit now.
  11. pause
  12.  
  13. cls
  14. echo Program loading, please wait...
  15. echo (If you are running from a floppy disk, this may take up to 3 minutes.)
  16. echo  
  17. echo To exit the demo at any time, press ESC.
  18. echo  
  19.  
  20. ewbtad /c:demo /dc:12 /p:ewbdemo.rec
  21.  
  22.  
  23. type ordrinfo.txt
  24.  
  25. what C  "--->  Type P to print an order form, Q to quit:  "  PQ
  26.  
  27. if %WHAT%a == Pa goto PRINT
  28. if %WHAT%a == Qa goto QUIT
  29.  
  30. :PRINT
  31. what P
  32. if %WHAT%a == 1a goto :PRINT2
  33. echo  
  34. echo  
  35. echo Printer not connected.
  36. goto QUIT
  37.  
  38. :PRINT2
  39. type order.frm > PRN
  40.  
  41. :QUIT
  42. cls
  43. 
  44.