home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / DOS / TEKST / E-Z-BOOK / DOCPRINT.BAT < prev    next >
DOS Batch File  |  1995-02-14  |  2KB  |  36 lines

  1. echo off
  2. cls
  3. if exist DOC.TXT goto :message
  4. echo ERROR:  Cannot locate the file which is named
  5. echo DOC.TXT.  Please  change  to  the drive or 
  6. echo directory which contains your E-Z-BOOK files,
  7. echo then run the DOCPRINT.BAT file again.
  8. goto :exit
  9. :message
  10. echo           ┌─────────────────────────────────────────────────────────┐
  11. echo           │   The E-Z-BOOK User Guide consists of 9 printed pages   │
  12. echo           ├─────────────────────────────────────────────────────────┤
  13. echo           │ If you do not want to print this now,  press Control-C  │
  14. echo           │                and then press the Y key.                │
  15. echo           │ Otherwise,  this program will print the guide for you.  │
  16. echo           ├─────────────────────────────────────────────────────────┤
  17. echo           │                                                         │
  18. echo           │                Simply do the following:                 │
  19. echo           │                                                         │
  20. echo           │            1. Turn your printer ON                      │
  21. echo           │            2. For laser printer, set @ 60 lines/page    │
  22. echo           │            3. Adjust the left margin to zero or 1       │
  23. echo           │            4. Adjust the top line to the very top       │
  24. echo           │                of the page                              │
  25. echo           │            5. Press any key when ready to print,        │
  26. echo           │                or type Ctrl-C now to abort...           │
  27. echo           │                                                         │
  28. echo           └─────────────────────────────────────────────────────────┘ 
  29. pause > nul
  30. echo                      ┌────────────────────────────────────┐
  31. echo                      │    Printing E-Z-BOOK USER GUIDE    │
  32. echo                      └────────────────────────────────────┘
  33. type DOC.TXT > prn
  34. cls
  35. echo                                        Done
  36.