home *** CD-ROM | disk | FTP | other *** search
/ Hot Stuff 2 / hot_stuff_2.zip / hot_stuff_2 / DEMOS / SYSTEMAX / RUNME.BAT < prev    next >
DOS Batch File  |  1992-11-04  |  978b  |  52 lines

  1. @echo off
  2. echo off
  3. :menustart
  4. cls
  5. echo While these demos are some of the finest around, we have had  
  6. echo problems getting them to work on certain graphics boards. The 
  7. echo ATI cards seem to be the worst offenders.
  8. echo:
  9. echo ****************** Systemax Menu ********************
  10. echo: 
  11. echo: 
  12. echo [1] 710DEMO  Hewlett Packard
  13. echo [2] ACTDEMO  Demo for ACT! 
  14. echo [3] DB       
  15. echo [4] DNEWS002 DiscNews (c) 
  16. echo [5] GREET91  1991 X-mas Greeting 
  17. echo [6] STXLOGO  An animated logo
  18. echo:
  19. echo [Q] Return to dos.
  20. echo:
  21. echo:
  22. \programs\what c "Please choose [1-6,q] -> " 123456q
  23. echo:
  24. if %what%==1 goto d1
  25. if %what%==2 goto d2
  26. if %what%==3 goto d3
  27. if %what%==4 goto d4
  28. if %what%==5 goto d5
  29. if %what%==6 goto d6
  30. goto exittodos
  31. :d1
  32. 710DEMO  
  33. goto menustart
  34. :d2
  35. ACTDEMO  
  36. goto menustart
  37. :d3
  38. DB       
  39. goto menustart
  40. :d4
  41. DNEWS002 
  42. goto menustart
  43. :d5
  44. GREET91  
  45. goto menustart
  46. :d6
  47. STXLOGO  
  48. goto menustart
  49. :exittodos
  50. set what=
  51.  
  52.