home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo MusicPrinter Plus DEMO Documentation
- echo.
- echo.
- echo TYPE To PRINT
- echo ---- --------
- echo 1 MusicPrinter Plus QUICK START instructions. (7 pages)
- echo 2 Full manual for DEMO of MusicPrinter Plus. (19 pages)
- echo 3 Both documents. (26 pages)
- echo.
- echo 0 Nothing. (Exit)
- echo.
- getkey
- if ERRORLEVEL 4 goto RETRY
- if ERRORLEVEL 3 goto THREE
- if ERRORLEVEL 2 goto TWO
- if ERRORLEVEL 1 goto ONE
- cls
- goto EXIT
- :RETRY
- mpdoc
- goto EXIT
- :THREE
- cls
- echo Printing QUICK START instructions for MusicPrinter Plus. (7 pages to PRN)
- echo Press Ctrl-C to stop.
- copy mpquick.doc prn
- :TWO
- cls
- echo Printing DEMO MANUAL for MusicPrinter Plus. (19 pages to PRN)
- echo Press Ctrl-C to stop.
- copy mpdemo.doc prn
- goto EXIT
- :ONE
- cls
- echo Printing QUICK START instructions for MusicPrinter Plus. (7 pages to PRN)
- echo Press Ctrl-C to stop.
- copy mpquick.doc prn
- :EXIT
- cls