omitting some items on the 1st page of page header

  • Thread starter Thread starter AlexD
  • Start date Start date
A

AlexD

I have some labels and text boxes on the page header I
don't wont they show up on the first page. It's dates (not
current). I have them on the report header.

Is it possible to do it?

Thanks
 
I have some labels and text boxes on the page header I
don't wont they show up on the first page. It's dates (not
current). I have them on the report header.

Is it possible to do it?

Thanks

If you would like to not show the ENTIRE Page Header on just page 1,
set the PageHeader property to Not with Rpt Hdr.
It's on the Report's Property sheet Format tab.

If you do want the page header to show on page 1 and just not show a
few controls, then:

Code the Page Header Format event:
If [Page] = 1 Then
[Control1].Visible = False
[Control2].Visible = False
' etc.
Else
[Control1].Visible = True
[Control2].Visible = True
' etc.
End If
 
Thanks a lot, Fred.
It's working.
-----Original Message-----
I have some labels and text boxes on the page header I
don't wont they show up on the first page. It's dates (not
current). I have them on the report header.

Is it possible to do it?

Thanks

If you would like to not show the ENTIRE Page Header on just page 1,
set the PageHeader property to Not with Rpt Hdr.
It's on the Report's Property sheet Format tab.

If you do want the page header to show on page 1 and just not show a
few controls, then:

Code the Page Header Format event:
If [Page] = 1 Then
[Control1].Visible = False
[Control2].Visible = False
' etc.
Else
[Control1].Visible = True
[Control2].Visible = True
' etc.
End If
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
 
Back
Top