How change band height or top
On my report I should put signature on the bottom of the last page. I tried with band ReportSummary with OBP:
After execution there is no change in ReportSummary1 height and signature is not at the bottom as expected.
Thanks in advance.
if Engine.FreeSpace > (ReportSummary1.height + 1) then
  ReportSummary1.height := Engine.FreeSpace - 1;
On ReportSummary1 there are many memos with vAlign = vaBottom, StretchMode = smMaxHeight and band prop. Streched = true.After execution there is no change in ReportSummary1 height and signature is not at the bottom as expected.
Thanks in advance.
Comments
PageFooter.Visible:=<Page#>=<totalpages#>
and put on TwoPassReport in ReportOptions.
That works fine for me.
Daniel
I also want to use a combination of PageFooter and Child but PageFooter band cannot have child band.
And sth like this also doesnt work?:
If <Page#>=<totalpages#> then
begin
MemoSignatur.Visible:=True;
PageFooter.Height:=150;
end;
Daniel
dschuch thanks for inspire me