home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / lotus123 / lotushlp.arc / LOTUSHLP.BAT < prev    next >
DOS Batch File  |  1985-05-31  |  3KB  |  105 lines

  1. echo off
  2. rem This batch file was prepared by Greg D. Rismoen  212-819-7834
  3. rem 
  4. rem This batch file is intended to be a demonstration of the RESPONSE.COM
  5. rem command in a batch environment, and must accompany the library file
  6. rem LOTUSHLP.LBR, which is a set of six advanced tutorials for Lotus 123.
  7. rem This file, like all large batch files, works best in an electronic
  8. rem RAMDRIVE environment (up to ten times faster with large batch files).
  9. rem However, if you don't have a RAMDRIVE, don't fret, just be patient.
  10. rem RESPONSE will act on keyboard input from the user.  Do not press ENTER
  11. rem after you make your selection.  If you press a key to make a selection
  12. rem and then also press ENTER, the ENTER key action will sit in the buffer
  13. rem until the next command.  In this file, if you select   1 ENTER 
  14. rem RESPONSE will act on the 1 and the ENTER will take effect when LIST
  15. rem begins listing the LOTUS1 tutorial, and it will immediately skip
  16. rem to the second page of the tutorial.  So if that happens, simply hit
  17. rem PgUp and you will be back at the first page of the tutorial.
  18. cls
  19. NUMOFF
  20. echo   
  21. echo   
  22. echo  The following is a listing of 6 tutorials for Lotus 1-2-3.
  23. echo  
  24. echo  Please select a number from 1 to 7 to proceed:
  25. echo  
  26. echo  
  27. echo  1.  Collection of illustrative Lotus macro tips.
  28. echo  
  29. echo  2.  Development of a mailing list system with macros.
  30. echo  
  31. echo  3.  Tutorial on the use of the /XI command.
  32. echo  
  33. echo  4.  Creation of looping macros.
  34. echo  
  35. echo  5.  Automatic pointer movement macros.
  36. echo  
  37. echo  6.  Converting Lotus 1-2-3 data bases to Symphony data bases.
  38. echo  
  39. echo  7.  Exit this program.
  40. echo  
  41. echo  Respond by pressing a number from 1 through 7.  DO NOT PRESS ENTER
  42. echo   
  43. RESPONSE 1234567
  44. IF ERRORLEVEL 7 GOTO END
  45. IF ERRORLEVEL 6 GOTO SIX
  46. IF ERRORLEVEL 5 GOTO FIVE
  47. IF ERRORLEVEL 4 GOTO FOUR
  48. IF ERRORLEVEL 3 GOTO THREE
  49. IF ERRORLEVEL 2 GOTO TWO
  50. IF ERRORLEVEL 1 GOTO ONE
  51. :ONE
  52. echo off
  53. cls
  54. IF NOT EXIST LOTUS1.DOC GOTO ERROR
  55. LIST LOTUS1.DOC
  56. echo off
  57. LOTUSHLP
  58. :TWO
  59. echo off
  60. cls
  61. IF NOT EXIST LOTUS2.DOC GOTO ERROR
  62. LIST LOTUS2.DOC
  63. echo off
  64. LOTUSHLP
  65. :THREE
  66. echo off
  67. cls
  68. IF NOT EXIST LOTUS3.DOC GOTO ERROR
  69. LIST LOTUS3.DOC
  70. echo off
  71. LOTUSHLP
  72. :FOUR
  73. echo off
  74. cls
  75. IF NOT EXIST LOTUS4.DOC GOTO ERROR
  76. LIST LOTUS4.DOC
  77. echo off
  78. LOTUSHLP
  79. :FIVE
  80. echo off
  81. cls
  82. IF NOT EXIST LOTUS5.DOC GOTO ERROR
  83. LIST LOTUS5.DOC
  84. echo off
  85. cls
  86. LOTUSHLP
  87. :SIX
  88. echo off
  89. cls
  90. IF NOT EXIST LOTUS6.DOC GOTO ERROR
  91. LIST LOTUS6.DOC
  92. echo off
  93. cls
  94. LOTUSHLP
  95. :ERROR
  96. echo   
  97. echo   
  98. echo  The file you requested does not exist on the default drive.
  99. echo  Please copy the six files... Lotus1.doc through Lotus6.doc... 
  100. echo  over to your default drive, or restart this batch file on the
  101. echo  same drive as the LotusX.doc files.
  102. SIGNAL1
  103. :END
  104. cls
  105.