home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 21 / bbd21.zip / DOC.BAT < prev    next >
DOS Batch File  |  1988-03-30  |  3KB  |  60 lines

  1. ECHO OFF
  2. cls
  3. IF %1!==! GOTO HELP1
  4. GOTO %1
  5. :HELP1
  6. ECHO ┌──────────────────────────────────────────────────────────────────────┐
  7. ECHO │ Four files are available on the program disk with additional         │
  8. ECHO │ information, the User Manual for Version 3.31, update information on │
  9. ECHO │ additions to the program from 3.0 up to the latest version, the help │
  10. ECHO │ file for the PC-KEY-DRAW, and a listing of the files on this disk.   │
  11. ECHO │ To send these files to the printer enter DOC followed by the name of │
  12. ECHO │ the file to be printed as follows:                                   │
  13. ECHO └──────────────────────────────────────────────────────────────────────┘
  14. ECHO     User   - Prints User Manual
  15. ECHO     Update - Prints Updates to PC-KEY-DRAW
  16. ECHO     Help   - Prints Help file used in PC-KEY-DRAW
  17. ECHO     File   - Prints Listing of the files on this disk
  18. goto end
  19. :USER
  20. ECHO  ╔═══════════════════════════════════════════════════════════════════╗
  21. ECHO  ║              The User Manual for PC-KEY-DRAW Ver 3.31             ║
  22. ECHO  ║ ───────────────────────────────────────────────────────────────── ║
  23. ECHO  ║ A partial user manual for PC-KEY-DRAW is about to be printed.     ║
  24. ECHO  ║ Registered users get a printed user manual with pictures,index,   ║
  25. ECHO  ║ IBM size binder, and Quick Reference card.                        ║
  26. ECHO  ║ ───────────────────────────────────────────────────────────────── ║
  27. ECHO  ║                 Load printer with continuous forms.               ║
  28. ECHO  ╚═══════════════════════════════════════════════════════════════════╝
  29. PAUSE
  30. COPY kd-doc.txt PRN:
  31. menu
  32. :UPDATE
  33. ECHO ┌────────────────────────────────────────────────────────────────────┐
  34. echo │ Information on updates to PC-KEY-DRAW  version 3.0 are about to be │
  35. echo │ printed on your parallel printer (LPT1:)                           │
  36. echo │ ────────────────────────────────────────────────────────────────── │
  37. echo │ PC-KEY-DRAW is constantly being updated and improved.  The listed  │
  38. echo │ updates are the more significant ones.  Suggestions for future     │
  39. echo │ improvements are always welcome.                                   │
  40. ECHO └────────────────────────────────────────────────────────────────────┘
  41. PAUSE
  42. copy kd-updat.txt prn:
  43. menu
  44. :HELP
  45. ECHO ┌─────────────────────────────────────────────────────────────────────┐
  46. echo │ The help file for PC-KEY-DRAW  is about to be printed on LPT1:      │
  47. echo │ ─────────────────────────────────────────────────────────────────── │
  48. echo │ This help file is reached from within PC-KEY-DRAW by selecting "h"  │
  49. echo │ (Removal or renaming this file puts PC-KEY-DRAW in a run time mode) │
  50. ECHO └─────────────────────────────────────────────────────────────────────┘
  51. PAUSE
  52. copy kd-draw.hlp prn:
  53. menu
  54. :FILE
  55. ECHO The correct list of files on this disk is about to be printed on LPT1:
  56. PAUSE
  57. copy file.txt prn:
  58. menu
  59. :end
  60.