Display bottom of the page
hi
we had document like
Report Title1
Header1
MasterData1(Multiple records)
Child1
Footer1
MasterData2(which it has multiple records)
ReportSummary1
my requirement is footer,MasterData2,reportsummary should display to the bottom of the page.
But as it is a4 page reportsummary having more data so it's going to next page
or if it is custom page it will display to the bottom of the page.
i want to display bottom of the page when it is a4 page. please give me solution
i wrote like this
procedure Footer1OnBeforePrint(Sender: TfrxComponent);
begin
while engine.freespace > (Child1.height + Footer1.height + MasterData2.height + ReportSummary1.height + PageFooter1.height)-1 do
begin
engine.showband(Child1);
end ;
end;
begin
end.
Please provide me the solution that when it will go to next page footer,masterdat2 and report summary band should
always come together end of the last page.
Thanks&Regards,
Geetha.
we had document like
Report Title1
Header1
MasterData1(Multiple records)
Child1
Footer1
MasterData2(which it has multiple records)
ReportSummary1
my requirement is footer,MasterData2,reportsummary should display to the bottom of the page.
But as it is a4 page reportsummary having more data so it's going to next page
or if it is custom page it will display to the bottom of the page.
i want to display bottom of the page when it is a4 page. please give me solution
i wrote like this
procedure Footer1OnBeforePrint(Sender: TfrxComponent);
begin
while engine.freespace > (Child1.height + Footer1.height + MasterData2.height + ReportSummary1.height + PageFooter1.height)-1 do
begin
engine.showband(Child1);
end ;
end;
begin
end.
Please provide me the solution that when it will go to next page footer,masterdat2 and report summary band should
always come together end of the last page.
Thanks&Regards,
Geetha.