report header

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.
 
G

Guest

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.
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top