home *** CD-ROM | disk | FTP | other *** search
- echo off
- if %1.==C. goto close
- if %1.==c. goto close
- if %1.==O. goto lp
- if %1.==o. goto lp
- goto help
- :lp
- set vprnt=1
- if %2.==. goto open
- if %2.==1. goto lpx
- if %2.==2. goto lpx
- if %2.==3. goto lpx
- goto help
- :lpx
- set vprnt=%2
- goto open
- :open
- mode LPT%vprnt%:=COM1:
- mode COM1:96,N,8
- vplot o
- goto end
- :close
- mode LPT%vprnt%:
- vplot c
- goto end
- :help
- echo Usage: VPRNT O x - Redirects LPTx to VPLOT.TMP, where x is 1, 2, or 3.
- echo If x is omitted, LPT1 is used.
- echo VPRNT C - Closes file VPLOT.TMP and stops redirection of LPTx.
- :end