Help to do these report
Hello everybody,
I have the report, of the schema:
.GroupHeader
...MasterData
.GroupFooter
...Child (of GroupFooter)
.PageFooter
Group is marked to start a new page every group.
My problem is:
1- PageFooter, can only print if the "group" has more than 1 page.. more especific... PageFooter can't print in last page os Group.
2- The GroupFooter, in last page, it's necessary to complete all blank space in page... like this:
GroupFooter.Height := Page.Height - MasterData.Height - Child.Height; (not work this code, for example only)
How I do these?
Best Regards.
I have the report, of the schema:
.GroupHeader
...MasterData
.GroupFooter
...Child (of GroupFooter)
.PageFooter
Group is marked to start a new page every group.
My problem is:
1- PageFooter, can only print if the "group" has more than 1 page.. more especific... PageFooter can't print in last page os Group.
2- The GroupFooter, in last page, it's necessary to complete all blank space in page... like this:
GroupFooter.Height := Page.Height - MasterData.Height - Child.Height; (not work this code, for example only)
How I do these?
Best Regards.
Comments
use a duplicate empty objects in anunattached child band and control it's appearance using the engine opject and the show band method.
ie
while engine .freespace > somevalue do
begin
engine.showband(bandname);
end;
I don't understand.. can you make a sample for these and send to me?
Regards,