"slickdock" <(E-Mail Removed)> wrote in message
news

ADB8717-E248-479E-A7F9-(E-Mail Removed)...
> Similar problem. How can I make the entire Page Header invisible on page 1
> and visible >Page 1? Rather than code each control separately, I'd like to
> code the entire header.
Have you tried code like this in the Format event of the PageHeader section?
'----- start of code -----
Private Sub PageHeaderSection_Format( _
Cancel As Integer, _
FormatCount As Integer)
Me.PageHeaderSection.Visible = (Me.Page > 1)
End Sub
'----- end of code -----
--
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)