home *** CD-ROM | disk | FTP | other *** search
/ Hot Stuff 2 / hot_stuff_2.zip / hot_stuff_2 / DEMOS / DIGIT_IM / RUNME.BAT < prev    next >
DOS Batch File  |  1992-11-04  |  1KB  |  91 lines

  1. @echo off
  2. echo off
  3. :menustart
  4. cls
  5. echo Editors Note, there are more demos in this branch than I have listed
  6. echo in the menu.  For better results, copy the Digital Image demos to your
  7. echo hard disk.
  8. echo:
  9. echo ******************** Digital Image Demos ********************
  10. echo:
  11. echo [1] Chkmodeo     , Checks your systems video capability
  12. echo [2] Read Me      , Information about Digital Image 
  13. echo: 
  14. echo Demos which requires a VGA :
  15. echo: 
  16. echo [3] DI2          [4] GA Logo     [5] EARTH320
  17. echo: 
  18. echo Demos which requires a SVGA :
  19. echo: 
  20. echo [6] TAP          [7] PEANUTS     [8] HSEGOLD     [9] POUND640
  21. echo [A] KIDZ640
  22. echo:
  23. echo [Q] Return to dos.
  24. echo:
  25. \programs\what c "Select your choice [1..9,a,q] -> " 123456789aq
  26. echo:
  27. if %what%==1 goto chk
  28. if %what%==2 goto rea
  29. if %what%==3 goto di2
  30. if %what%==4 goto ga
  31. if %what%==5 goto ear
  32. if %what%==6 goto tap
  33. if %what%==7 goto pea
  34. if %what%==8 goto hse
  35. if %what%==9 goto pou
  36. if %what%==A goto kid
  37. goto exittodos
  38. :chk
  39. chkmode
  40. goto menustart
  41. :rea
  42. readme
  43. goto menustart
  44. :di2
  45. cd 320
  46. di2
  47. cd ..
  48. goto menustart
  49. :yeg
  50. cd 320
  51. di2
  52. cd ..
  53. goto menustart
  54. :ga
  55. cd 320
  56. ga
  57. cd ..
  58. goto menustart
  59. :ear
  60. cd 320
  61. earth320
  62. cd ..
  63. goto menustart
  64. :tap
  65. cd 640
  66. tap
  67. cd ..
  68. goto menustart
  69. :pea
  70. cd 640
  71. peanuts
  72. cd ..
  73. goto menustart
  74. :hse
  75. cd 640
  76. hsegold
  77. cd ..
  78. goto menustart
  79. :pou
  80. cd 640
  81. pound640
  82. cd ..
  83. goto menustart
  84. :kid
  85. cd 640
  86. kidz640
  87. cd ..
  88. goto menustart
  89. :exittodos
  90. set what=
  91.