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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing multiple copies in Paradox 10

Status
Not open for further replies.

NearlyOAP

Programmer
Mar 11, 2003
1
0
0
GB
Trying out the eval of Paradox 10 on a clean W2K machine, using a networked Laserjet. Single copies printed OK but using ReportPrintInfo to specify two copies produced a very large number of copies. Adding .makeCopies = True to the rpi created just a single copy even though .nCopies = 2. What is more, repeated print statements still created only one copy, not one per statement. Weird.

What else can I do?
 
In Paradox10 you have to pass reports arguments via an array thus-

var
daratRpi dynarray[] anytype
LabelPrn string
endvar

printerSetCurrent(LabelPrn)
daratRpi["name"] = "MailLabels"
daratRpi["panelOptions"]=PrintClipToWidth ;solves xtra blank page problem
r.print(daratRpi)

This is the Paradox10 way to handle reports
get your number of pages in like this
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top