PDA

View Full Version : Print


OMID SOFT
04-30-04, 11:28 PM
How to print out a .txt file on the H.D.D ?

kebo
05-01-04, 10:00 AM
How to print out a .txt file on the H.D.D ?

H.D.D ???? hard drive???

OMID SOFT
05-02-04, 12:05 AM
YES, an existing file on the hard drive !

kebo
05-03-04, 08:34 AM
YES, an existing file on the hard drive !
One of the simplest methods is to read it and print it line by line.

open FName for input as #1
do until EOF(1)
input #1,s
printer.print s
loop
printer.enddoc
close #1

kevin