Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
Devices
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Print a report in a large file AND splitting each group in a seperate pdf files
rbuser
December 2012
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
nicocizik
December 2012
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.
Comments
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;
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com