Repeated Group to Page End.Pls Help!!!
Hi.
First sorry for my bad English.
I made a report.
My report page is 2 column and groupped by CustomerCity.
I used Column Header, Group Header and Master Data.
Group header StartNewPage and ResetPage Number property is True.
(Because I want to start new group in new page and Page numbers must be like group page numbers)
My Report Page's Design Pic.:
First sorry for my bad English.
I made a report.
My report page is 2 column and groupped by CustomerCity.
I used Column Header, Group Header and Master Data.
Group header StartNewPage and ResetPage Number property is True.
(Because I want to start new group in new page and Page numbers must be like group page numbers)
My Report Page's Design Pic.:
Comments
2 add a unattached child band size it the same as the master band and duplicate the objects(empty) of the master in it.
3 write code in obp event of groupfooter to check freespace and show the child band using engine.showband method.
ie
while engine.freespace > masterdata1.height + any otherband height then engine.showband(Child1);
Good solution and good idea.
But I have a problem again.
If There is 2 column in result report page result pic ( No problem):
seems like you will always have 8 records.
in the event where you check the free space check the line# variable and write code to set the number of times to repeat the child and when to shift the engines curx cury props.
read the users manual on using the engine object.