Print a dos file to a Comet Printer


[ Follow Ups ] [ Post Followup ] [ Signature.net Forum ]

Posted by Barbara Brazil on May 05, 2017 at 13:02:29:

In Reply to: Print a dos file to a Comet Printer posted by Yves Ste-Marie on April 28, 2017 at 12:37:34:

Yves:

Printfile can be used to print file data into a single variable. If you want to print to a printer you have to use PRINT. What kind of data is in this DOS file? If it's a standard text file where each record is terminated with (CR)(LF) you could use InputFile to read the entire file into a dynamic string, then use PRINT to write it out to your printer. Since it's not a COMET file you'd use the "full path" version of InputFile rather than the version that uses a LUN.

length dynamic & local x$
clear
x$ = inputfile("c:\comet\file.txt")
close (2) & open (2) "lph"
print (2) x$
close (2)



Follow Ups:



Post a Followup

Name:
E-Mail:

Subject:

What is the name of the main Signature System's Product?  

Comments:

Optional Link URL:
Link Title:
Optional Image URL:

You may attach up to 5 files to your followup (see below):





Each file can be a maximum of 1MB in length Uploaded files will be purged from the server on a regular basis.


[ Follow Ups ] [ Post Followup ] [ Signature.net Forum ]