Which method is the "correct" method, ie which method produces the
report that is
intended to produced by Rbase? If second method that gives the
undesired form feed is incorrect,
can it be fixed by issuing a printer control code that does a reverse
form feed?
Mike
At 04:28 AM 5/22/2007, you wrote:
Mike -
I tried to solve that problem on an off
for years and never got anywhere with it. I got
a solution from microsoft.com and it didn't work.
Bernie
At 05:00 PM 5/21/2007, Michael Sinclair wrote:
Hi all,
In Rbase for DOS, I have a report to print to a network printer.
I create the report and print it to a file. Then I want to send the file
to the network printer.
The following code works...
zip net use lpt1 \\servername\print_que_name
copy filename.txt lpt1
zip net use lpt1 /delete
The following code gives an extra (unwanted) form feed...
zip print /d:\\servername\print_que_name filename.txt
Why would there be a difference?
Thanks
Mike