Adjust page length

edited 10:25PM in FastReport VCL 5
I have normal USA paper size 8.5 x 11. But I want to print the report on legal size paper 8.5 x 14.

Is this possible?

And what if I have 2 or 3 separate .fr3 reports that are part of this report?

Thank you!

Comments

  • gpigpi
    edited 10:25PM
    Try to print report with pmScale print mode
  • edited 10:25PM
    Does that just take the same data and resize it to fit the page? The reason people are using the larger paper is so more data will fit on the page.
  • edited 10:25PM
    I got it to work, here is the code I used

    ((TfrxReportPage*)Report3->FindObject("Page1"))->PaperHeight = 355.6; // For Legal size paper 8.5 x 14 inch


    ((TfrxReportPage*)Report3->FindObject("Page1"))->PaperHeight = 279.4; // For Letter 8.5 x 11 inch

Leave a Comment