C# - CrystaReports Paper format to A5

EFileTahi-A

Well-known member
Joined
Aug 8, 2004
Messages
539
Location
Portugal / Barreiro
I would like to kown how can config CrystalReports to print in A5 format so that ITextFields will only fill half A4 paper size and print the remaining ones on another page.

Hope to hear from you soon!
 
EFileTahi-A

I have had no end of problems printing on different size paper with cyrstal reports, the following is a link to a thread with one way I managed to get it working.

http://www.computerhelp.forum/showthread.php?t=89225

You way be able to just setup a new printer and change its defaults to A5 and then but the following code in the viewer load event

Code:
crReportDocument.PrintOptions.PrinterName = "Your Printer Name";
crReportDocument.PrintOptions.PaperSize = CrystalDecisions.Shared.PaperSize.DefaultPaperSize;

If anyone else has an answer I would also be glad to hear
 
Back
Top