home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 15 / CD_ASCQ_15_070894.iso / vrac / strk_os.zip / TOSMENU.BAT < prev    next >
DOS Batch File  |  1994-03-13  |  2KB  |  53 lines

  1. @echo off
  2. rem The name of this file is TOSMENU2.BAT
  3. rem It is used to set a menu on the screen for selection of options.
  4. rem Created by David K. Kauffman on 01-18-94, last rev 03-13-94.
  5. rem
  6. :BEGIN
  7. cls
  8. echo      .                          .
  9. echo               .                                               .
  10. echo                             STAR TREK EPISODE GUIDES
  11. echo           .                        .
  12. echo                 .             THE ORIGINAL SERIES       .
  13. echo                           .
  14. echo                    .                          .                      .
  15. echo                                      .                       .
  16. echo        1.  Season One     .                        .
  17. echo                                                                 .
  18. echo        2.  Season Two             .                   .
  19. echo                                                .
  20. echo        3.  Season Three              .                           .
  21. echo                                                            .
  22. echo        4.  Ordering Information           .
  23. echo      .                                                .
  24. echo        5.  Exit     .            .         ______________
  25. echo              .                            (______________) _______/'\_______
  26. echo                                                  l l      /:::::::::::::::::\
  27. echo          .                   .                   l l      \_________________/
  28. echo                   .                 .            l l         /   /
  29. echo                                                __l_l________/___/____
  30. echo                           .             .     (______________________)
  31. echo                                                             .
  32. batget -p24,8 -c0,7 1,2,3,4,5 Enter Choice: 
  33. if errorlevel=5 goto END
  34. if errorlevel=4 goto ORDER
  35. if errorlevel=3 goto SEASON3
  36. if errorlevel=2 goto SEASON2
  37. if errorlevel=1 goto SEASON1
  38. :ORDER
  39. call tosord2
  40. goto BEGIN
  41. :SEASON3
  42. call tossn3
  43. goto BEGIN
  44. :SEASON2
  45. call tossn2
  46. goto BEGIN
  47. :SEASON1
  48. call tossn1
  49. goto BEGIN
  50. :END
  51. cls
  52. rem eof TOSMENU1.BAT
  53.