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
Creating a summary band in code
rbuser
January 2004
edited January 2004
in
General
Hi !
When coding a report, I get an AV when acessing the summary band properties.
Seems the summary band needs a create. Could you give a short code example
of how to do this ?
TIA, Regards
Heiko Knuettel
Comments
nicocizik
January 2004
edited January 2004
Hi Heiko,
Try this...
var
lSummaryBand: TppSummaryBand;
begin
lSummaryBand := TppSummaryBand.Create(Self);
lSummaryBand.Report := ppReport1;
myLabel.Band := lSummaryBand;
end;
--
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
rbuser
January 2004
edited January 2004
Thanks a lot !
Cheers,
Heiko Knuettel
This discussion has been closed.
Comments
Try this...
var
lSummaryBand: TppSummaryBand;
begin
lSummaryBand := TppSummaryBand.Create(Self);
lSummaryBand.Report := ppReport1;
myLabel.Band := lSummaryBand;
end;
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Cheers,
Heiko Knuettel