I want to display the company logo and the report title only in the first page,
So far in searching the web I found and tested the following
-- In the Print Page event datawindow
A.)
IF Pagenumber > 1 THEN
dw_report.object.p_header.Visible=false
dw_report.object.r_title.Visible = false
END IF
It works only in the first page but in the succeeding pages, it will leave a blank space since the objects are only hidden.
B.)
IF Pagenumber > 1 THEN
dw_report.object.p_header.Visible=false
dw_report.object.r_title.Visible = false
dw_report.object.datawindow.header.height = 100
END IF
Hide the objects but some of the details in the succeeding pages are not displayed.
Any suggestions please?