Position absolute of the bands
We need to put a Group footer at the end of the page of a report.
Fast Report automaticly puts the band close to the master/detail bands, but we need to put it at the end (leaving a blank space between it at the rest of the bands if needed).
With Rave Reports, we had a property of the band called "position", and we could set it to "absolute" and set the top property.
Is there any way to do it here? (I tried to activate the "free layout of the bands", but FR place the bands again all together when I execute the report).
Fast Report automaticly puts the band close to the master/detail bands, but we need to put it at the end (leaving a blank space between it at the rest of the bands if needed).
With Rave Reports, we had a property of the band called "position", and we could set it to "absolute" and set the top property.
Is there any way to do it here? (I tried to activate the "free layout of the bands", but FR place the bands again all together when I execute the report).
Comments
in the obp event of the footer
write code toto position the output.
end
if engine.freespace > groupfooter1.height then
begin
Engine.CurY := Engine.PageHeight -groupfooter1.height -pagefooter1.Height - 1;
end;
end;