Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SET PRINTER TO file....why don'twork in VFP 8.0?

Status
Not open for further replies.

cruicu

Technical User
Nov 25, 2002
24
RO
I want to print some reports in same file using commands:
set printer to myfile additive
...create report
report form myfile to printer .

But this not work corect.
The command "report form myfile to printer" sens outputs only to printer not to myfile.
I don't know what's the matter?
Can somebody help me?
thanks.

In command help says that "set printer to" does not function in unattended server mode.
What is this?...Is this my problem?
 
cruicu

report form myfile to printer

If you need to send it to a file, why are you sending it to the printer?
Try this format:
Code:
SET PRINTER TO c:\myFile.txt additive
REPORT FORM c:\windows\temp\myReport.frx TO myFile.txt ASCII
Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top