Do you mean a GROUP Header? If so, there is NO way to get the Group Header to print on every page because it is NOT possible to accurately determine when a page is over in Clarion. One of the biggest disadvantages in the Clarion Report Engine. If you are using fixed height detail bands you can calculate on your own in a Local variable and guess. The better way is to have a STRING control in the PAGE Header which is populated with a CLIP(GroupHeaderDescription) & ' - Continued ...'. Store the Group Break Column and check before printing the detail band :
IF LOC:GroupColumn <> FIL:GroupColumn
Report$?GroupContHeader{prop:text} = CLIP(GroupHeaderDescription) & ' - Continued ...'
As usual, I looked at Report and excluded the writer from my vision. :-(
I do not use Report writer but I just checked the properties of the Group header band and there is NO setting to ask it to repeat on eveny page. All you can do is ask for a Page Break on the Group Footer so that the next Group Header is on a new page.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.