Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Change SubReport PrintBehaviour settings
rbuser
June 2003
edited June 2003
in
General
how can i change the PrintBehaviour settings in code
ASubReport.PrintBehavior := [pbSection];
i tried this but end up with syntax error
Comments
rbuser
June 2003
edited June 2003
Hi nagen,
property 'PrintBehavior' isn't a set.
ASubReport.PrintBehavior := pbSection;
HTH,
Chris Ueberall;
rbuser
June 2003
edited June 2003
i tried that also but i'm getting undeclared identifier error during
compilation
rbuser
June 2003
edited June 2003
Hi nagen,
you have to add 'ppTypes' to your uses clause.
regards,
Chris Ueberall;
rbuser
June 2003
edited June 2003
thankx..it's working
This discussion has been closed.
Comments
property 'PrintBehavior' isn't a set.
ASubReport.PrintBehavior := pbSection;
HTH,
Chris Ueberall;
compilation
you have to add 'ppTypes' to your uses clause.
regards,
Chris Ueberall;