home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- IF NOT EXIST README GOTO ERROR
- IF NOT EXIST MAX-MENU.FRM GOTO ERROR
- CLS
- ECHO ┌─────────────────────────────────────────────────────────────────┐
- ECHO │ PrintDoc will print the README file and the │
- ECHO │ comment/registration form on your printer. │
- ECHO ├─────────────────────────────────────────────────────────────────┤
- ECHO │ │
- ECHO │ Please make sure your printer is on and set to TOP OF FORM. │
- ECHO │ │
- ECHO │ This document is about 7 pages long. If you do not want to │
- ECHO │ print it at this time, hold down the Ctrl key and press C. │
- ECHO └─────────────────────────────────────────────────────────────────┘
- ECHO
- ECHO The printing will begin as soon as you
- PAUSE
- ECHO
- ECHO Now printing README file to printer. This file contains information
- ECHO about Max-Menu that is more current than the manual.....
- COPY README PRN: >NUL
- ECHO
- ECHO Now printing the comment/registration form.......
- COPY MAX-MENU.FRM PRN: >NUL
- IF NOT EXIST MAX-MENU.DOC GOTO NOTSHARE
- CLS
- ECHO ┌─────────────────────────────────────────────────────────────────┐
- ECHO │ PrintDoc will now print the manual to your printer. │
- ECHO ├─────────────────────────────────────────────────────────────────┤
- ECHO │ │
- ECHO │ Please make sure your printer is on and set to TOP OF FORM. │
- ECHO │ │
- ECHO │ This document is about 55 pages long. If you do not want to │
- ECHO │ print it at this time, hold down the Ctrl key and press C. │
- ECHO └─────────────────────────────────────────────────────────────────┘
- ECHO
- ECHO The printing will begin as soon as you
- PAUSE
- ECHO
- ECHO Now printing the manual.......
- COPY MAX-MENU.DOC PRN: >NUL
- :NOTSHARE
- ECHO
- ECHO Max-Menu documentation has been printed.
- GOTO LEAVE
- :ERROR
- ECHO Please change to the directory Max-Menu was installed in before
- ECHO running PrintDoc. README or MAX-MENU.FRM file could not be found.
- :LEAVE