report header

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am having problems with omitting the page header from the 1st page of a
multipage report. My report has a group. I have the page header visible
properties set to "no". Then on the group I have the following code:

Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
PageHeaderSection.Visible = True
End Sub

This works great when I view the report. No header on the 1st page just as
I wanted. However, when I send the report to the printer the header appeares
on the 1st page. Please help! Thanks in advance.
 
I would use code in the On Format event of the Page Header like:
Cancel = (Page = 1)
You might need to add page numbers to your report.
 
Thanks, Duane. Worked!

Duane Hookom said:
I would use code in the On Format event of the Page Header like:
Cancel = (Page = 1)
You might need to add page numbers to your report.
 
Back
Top