On 2/21/2023 6:20 AM, Cornelius wrote: > Cornelius Wrote: HI there. In Creating a report can one have some printing on the pagetemplate only be done from the second page on. >>
The report has a reportPage property that can be used in canRender
events for specific elements:
function text1_canRender()
bReturn = false
if form.reportPage > 1
bReturn := true
endif
return bReturn
Or something along those lines should get you where you need to go.