Hi Emad,
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 ...'
LOC:GroupColumn = FIL:GroupColumn
END
Regards