home *** CD-ROM | disk | FTP | other *** search
/ New Horizons Shareware Collection / HORIZONS1.BIN / REGIT.BAT < prev    next >
DOS Batch File  |  1994-11-09  |  926b  |  31 lines

  1. Echo OFF
  2. Echo      This file will print a copy of the REGISTRATION FORM for you.
  3. Echo.
  4. Echo      The file will be printed on your default printer (device PRN)
  5. Echo.
  6. Echo      If your printer is attached to your first serial port you will
  7. Echo      need to start this batch file with the command:  REGIT COM1
  8. Echo.
  9. Echo 
  10. IF A%1 == A GoTo Default
  11. Echo.
  12. Echo      Make certain that the printer attached to device %1
  13. Echo      is on and set to THREE spaces from the top of the page.
  14. Echo.
  15. Echo 
  16. Echo      To stop press Control-Break, otherwise
  17. PAUSE
  18. COPY ORDERFRM.TXT %1
  19. Echo.
  20. Echo      Thank you for your interest and payment.
  21. GoTo Halt
  22. :Default
  23. Echo      Make certain your default printer is on and set to THREE
  24. Echo      spaces from the top of the page.
  25. Echo 
  26. Echo      To stop press Control-Break, otherwise
  27. PAUSE
  28. COPY ORDERFRM.TXT PRN
  29. Echo      Thank you for your interest and payment.
  30. :Halt
  31.