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
Skip of GroupHeaderBands.BeforePrint
rbuser
September 2003
edited September 2003
in
General
I have a TitleBand in my template, and I have to set the TitleBand.visible
False in certain cases.
But every time I do that, no more BandGoup prints(nor HeaderBandGroup
neither FooterBandGroup); even if I set their Visible Value True.
What could I do?
Comments
nicocizik
September 2003
edited September 2003
Hi Vincent,
This is not a know issue. Are you able to recreate this problem with
ReportBuilder 7.03? Please send a small example demonstrating the issue in
.zip format to support@digital-metaphors.com and I'll take a look.
--
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
rbuser
September 2003
edited September 2003
There is the answer I got; and it woooorks !
You can workaround this bug by coding the following event handler in the
header band:
procedure TFrmTitleBandVisible.ppHdrBndEditionDecompteBeforePrint(Sender:
TObject);
begin
ppRprtExemple.Engine.ESExclude([esPrintingTitle]);
end;
and adding the following unit to your uses clause...
ppTypes
Cheers,
Tom Ollar
Digital Metaphors Corporation
This discussion has been closed.
Comments
This is not a know issue. Are you able to recreate this problem with
ReportBuilder 7.03? Please send a small example demonstrating the issue in
.zip format to support@digital-metaphors.com and I'll take a look.
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
You can workaround this bug by coding the following event handler in the
header band:
procedure TFrmTitleBandVisible.ppHdrBndEditionDecompteBeforePrint(Sender:
TObject);
begin
ppRprtExemple.Engine.ESExclude([esPrintingTitle]);
end;
and adding the following unit to your uses clause...
ppTypes
Cheers,
Tom Ollar
Digital Metaphors Corporation