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
Can one detect if Header is first or subsequent
rbuser
August 2007
edited August 2007
in
General
I would like to turn a field on if the Header is not the first.
is there a property that would tell me that?
Many thanks...
Todd
Comments
nicocizik
August 2007
edited August 2007
Hi Todd,
Are you trying to detect the page header? If so, you could check the
Report.AbsolutePageNo to be sure the value is greater than one in the
HeaderBand.BeforePrint event. If so, then display the field.
MyDBText.Visible := Report.AbsolutePageNo > 1;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
This discussion has been closed.
Comments
Are you trying to detect the page header? If so, you could check the
Report.AbsolutePageNo to be sure the value is greater than one in the
HeaderBand.BeforePrint event. If so, then display the field.
MyDBText.Visible := Report.AbsolutePageNo > 1;
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com