Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

How can I print 3 times the same SubReport, one after one...?

edited August 2007 in General
How can I print 3 times the same SubReport, one after one...?

Thanks
Fellipe H.

Comments

  • edited August 2007
    Hi Fellipe,

    Two options...

    1. Save your subreport to a report template and load it into three separate
    subreport objects on a report.
    2. Create a section style subreport and set collation to false and
    DelegateCopies to True for the subreports PrinterSetup. Then adjust the
    copies property to meet your needs.

    ppChildReport.PrinterSetup.DelegateCopies := True;
    ppChildReport.PrinterSetup.Collation := False;
    ppChildReport.PrinterSetup.Copies := 3;

    ppReport.Print;

    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
This discussion has been closed.