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
Hiding Group Header based on value in Group Footer
rbuser
April 2002
edited April 2002
in
General
I want to make the Group Header invisible depending on the value TppVariable
in the Group Footer. Any assistance in accomplishing this would be greatly
appreciated.
Thanks,
Scott Rowat
Comments
digitalmetaphors
April 2002
edited April 2002
Make your report two pass. In the Group Header's BeforePrint event examine
the value of the variable during the second pass, ie.
if (ppReport1.SecondPass) and (ppVariable1 = someValue) do
ppGroupHeader1.Visible := False;
--
Cheers,
Alexander Kramnik
Digital Metaphors
Digital Metaphors Corporation
http://www.digital-metaphors.com
info@digital-metaphors.com
This discussion has been closed.
Comments
the value of the variable during the second pass, ie.
if (ppReport1.SecondPass) and (ppVariable1 = someValue) do
ppGroupHeader1.Visible := False;
--
Cheers,
Alexander Kramnik
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com