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

  1. @echo off
  2. echo off
  3. :menustart
  4. cls
  5. echo:
  6. echo ********** Medical Multimedia Group Menu ***********
  7. echo: 
  8. echo [A] Read information about MMG 
  9. echo [B] Patients Guide to Lower Back Pain    
  10. echo [C] Montana Rounds  
  11. echo:
  12. echo [Q] Return to Main Menu
  13. echo:
  14. \programs\what c "Select your choice [A..C,q] ->" abcq
  15. echo:
  16. if %what%==A goto a
  17. if %what%==B goto b
  18. if %what%==C goto c
  19. goto exittodos
  20. :a
  21. type mmgnews.txt |more
  22. pause
  23. goto menustart
  24. :b
  25. back
  26. goto menustart
  27. :c
  28. rounds
  29. goto menustart
  30. :exittodos
  31. set what=
  32. cls
  33.  
  34.