home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / p / p112 / 1.ddi / VPRNT.BAT < prev   
Encoding:
DOS Batch File  |  1988-06-01  |  589 b   |  31 lines

  1. echo off
  2. if %1.==C. goto close
  3. if %1.==c. goto close
  4. if %1.==O. goto lp
  5. if %1.==o. goto lp
  6. goto help
  7. :lp
  8. set vprnt=1
  9. if %2.==. goto open
  10. if %2.==1. goto lpx
  11. if %2.==2. goto lpx
  12. if %2.==3. goto lpx
  13. goto help
  14. :lpx
  15. set vprnt=%2
  16. goto open
  17. :open
  18. mode LPT%vprnt%:=COM1:
  19. mode COM1:96,N,8
  20. vplot o
  21. goto end
  22. :close
  23. mode LPT%vprnt%:
  24. vplot c
  25. goto end
  26. :help
  27. echo Usage: VPRNT O x - Redirects LPTx to VPLOT.TMP, where x is 1, 2, or 3.
  28. echo                    If x is omitted, LPT1 is used.
  29. echo        VPRNT C   - Closes file VPLOT.TMP and stops redirection of LPTx.
  30. :end
  31.