PrintOnFirstPage
ReportBuilder 7.0
I am setting the ppFooterBand.PrintOnFirstPage := true
For one page reports, the footerband will not print. I've tried setting
visibility based on page count by:
procedure TFrmPreorderReqRep.ppReport1EndFirstPass(Sender: TObject);
begin
if ppReport1.AbsolutePageCount = 1 then
ppFooterband1.visible := true;
// ppFooterBand1.PrintOnFirstPage := True; // This didn't work either
end;
I've noticed other posts with this same problem.. is there a fix?
John
I am setting the ppFooterBand.PrintOnFirstPage := true
For one page reports, the footerband will not print. I've tried setting
visibility based on page count by:
procedure TFrmPreorderReqRep.ppReport1EndFirstPass(Sender: TObject);
begin
if ppReport1.AbsolutePageCount = 1 then
ppFooterband1.visible := true;
// ppFooterBand1.PrintOnFirstPage := True; // This didn't work either
end;
I've noticed other posts with this same problem.. is there a fix?
John
This discussion has been closed.
Comments
check that you sent 'ppFooterBand1.PrintOnLastPage := True' as well?
The other way to do it as well may be to initially set them to true and set
the respective properties to false as needed (ie PageCount > 1). (Haven't
used this issue before and I don't fully understand the issue nor how you
are implementing it).
Enjoy.
--
Ed Dressel
Team DM
well?
Yes. I played with changing the values of PrintOnLastPage and
PrintOnFirstPage. This made no difference. I really think it's a
bug.
set
Tried that as well....
John
should sent it to support--just in case they are 2 different issues.
--
Ed Dressel
DX Squad
Developer Express newsgroups are for peer-to-peer support.
For direct support from Developer Express, write to support@devexpress.com
Bug reports should be directed to: support@devexpress.com
Please state if you are not using the latest version of the product.
on page count and it doesn't seem to work.
John
.Reset before printing.
Enjoy.
Ed Dressel
Team DM
trying to do. Try setting PrintOnFirstPage to true and PrintOnLastPage to
false by default. Then code:
procedure TForm1.ppReport1EndFirstPass(Sender: TObject);
begin
ppFooterband1.PrintOnLastPage := (ppReport1.AbsolutePageCount = 1);
end;
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com