Versions: 97 +
Chances are you won't want the report header and the page header on the first page as the two sections may have very similar content (captions, run by/when info, and so on). Here's the easiest way I've found of hiding the page header section latter on page one; it makes use of the page header section's OnFormat event, thus:
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
    'Code sample from Accessory http://www22.brinkster.com/accessory
    Me.PageHeaderSection.Visible = Not (Me.Page = 1)
End Sub
This code sets the page header section's visibility to false if the page number is one, otherwise true. Bingo. 

Site requires Javascript and IFRAME support.
Visitors:
© Accessory 2001-.
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 2.5 License.