home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / c / cnumbers.zip / RUNME.BAT < prev    next >
DOS Batch File  |  1991-12-21  |  621b  |  36 lines

  1. echo off
  2. cls
  3. echo  
  4. echo  To run "COMPLEX NUMBERS" with a black and white monitor, select 1.
  5. echo  
  6. echo  To run "COMPLEX NUMBERS" with a color monitor, select 2.
  7. echo  
  8. echo  To run "COMPLEX NUMBERS" with a grey-scale monitor, select 3.
  9. echo  
  10. getkey To quit, press any other key. 
  11. echo  
  12. if errorlevel 52 goto END
  13. if errorlevel 51 goto THREE
  14. if errorlevel 50 goto TWO
  15. if errorlevel 49 goto ONE
  16. goto END
  17. :THREE
  18. echo  
  19. echo  Please wait.
  20. echo  
  21. CNUMBERS m
  22. goto END
  23. :TWO
  24. echo  
  25. echo  Please wait.
  26. echo  
  27. CNUMBERS c
  28. goto END
  29. :ONE
  30. echo  
  31. echo  Please wait.
  32. echo  
  33. CNUMBERS
  34. goto END
  35. :END  
  36.