Does anybody know how to set a Report as Landscape instead of Portrait using the .NET Crystal tool? Thanks.
Printable View
Does anybody know how to set a Report as Landscape instead of Portrait using the .NET Crystal tool? Thanks.
The ReportObject should have a PaperOrientation property. The value you are looking for is crLandscape = 2. Or PageOrientation property. Do a check.
oReport.PrintOptions.PaperOrientation = PaperOrientation.Landscape
Huh, that will change it on the fly to Landscape alright, but what I really need to figure out is how to set the Designer tool to Landscape, otherwise I just have a Potrait width report turned on its side with alot of white space on the right hand side if you understand what I mean.
go into the printer setup for the report, and change it in there to landscape and you will see the report change its size in design mode.
That's it. Thanks! :wave: