home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo.
- echo ╔══════════════════════════════════════════════════════════════════════╗
- echo ║ This will send the file EZCARD13.DOC to your printer (17 pages). ║
- echo ║ Set your paper about one inch above the print-ribbon, then press ║
- echo ║ [ENTER] to begin. ■ Pressing any *OTHER* key will cancel this. ║
- echo ╚══════════════════════════════════════════════════════════════════════╝
- anykey
- if errorlevel 13 goto printit
- goto end
- :printit
- echo.
- echo.
- echo Printing EZCARD13.DOC - One moment please....
- type EZCARD13.DOC > prn
- goto end
- :end
- cls
- echo.
-