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

Paradox 9 printing problems

Status
Not open for further replies.

GerryGoldberg

Technical User
Apr 12, 2001
55
I have just converted from Paradox 7 to Paradox 9 without much problem. However, I have one report that was fine in v7 that now prints sometimes in portrait and sometimes in landscape. The report is defined as portrait, as is the printer. The code I use to print is:

var
rpi reportPrinterInfo
r report
poi printerOptionInfo
endVar
rpi.name = rName ; report name
rpi.orient = rOrient ; prnPortrait
rpi.masterTable = rTable ; ":priv:answer.db"
poi.orientation = rOrient ; prnPortrait
printerSetOptions(poi,true)
r.print(rpi)

Any clues here?

Thanks,

Gerry Goldberg
 
Have you applied the service pack? I ran into a few funky printing issues without it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top