Home Devices

Print a report in a large file AND splitting each group in a seperate pdf files

edited December 2012 in Devices
Hello,

I got a report with 500 pages. It works when I print this report in one
large pdf-file or when I split it on each group.

Is it possible to do both ways in one report?


Best Regards

Christian

Comments

  • edited December 2012
    Hi Christian,

    This would require two generations of the same report. One with the
    Group.NewFile property set to True and one with it set to False.
    Something like the following.

    ppReport1.Groups[0].NewFile := True;
    ppReport1.Print;

    ppReport1.Groups[0].NewFile := False;
    ppReport1.Print;

    Best Regards,

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