How to print a prn file?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

The print dialog box in most Windows apps has the option 'Print to file',
which produces a file with a '.prn' extension. Can someone please tell me
how to send that file to the printer?

Thank you.
 
Fred,
The print dialog box in most Windows apps has the option 'Print to file',
which produces a file with a '.prn' extension. Can someone please tell me
how to send that file to the printer?

open a Command Prompt and type:
copy filename.prn > lpt1 (if it's locally connected)
or
copy filename.prn \\computer_name\shared_printer_name (if it's networked)

Kind regards,
Davide Guolo
--------------------------------------------------------------
Printfil - Windows Printing System for Applications
http://www.guolo.com/printfil
Odbc4All - Connection to ODBC Data Sources for any Application
http://www.guolo.com/odbc4all
--------------------------------------------------------------
 
Back
Top