How do I make me VB6 report landscape? I can change the printer default to landscape prior to printing the report (and it works) but the report still prints out portrait.
Any ideas?
Printable View
How do I make me VB6 report landscape? I can change the printer default to landscape prior to printing the report (and it works) but the report still prints out portrait.
Any ideas?
Once your report is open, you can change the default REPORT paper orientation. If I'm accessing report info from a database, I usually add a boolean field for the orientation. Otherwise you can hardcode either crLandscape or crPortrait
Set Report = App1.OpenReport(rptName)
PaperOrientation = crLandscape