>> Page header not first page

J

Jonathan

Hi, using Access 2003 I do not want the page header section to appear on the
first page as the report header says it all.

Is there a simple property setting for this?

Many thanks,
Jonathan
 
J

Jonathan

Jonathan said:
Hi, using Access 2003 I do not want the page header section to appear on the
first page as the report header says it all.

Is there a simple property setting for this?

Many thanks,
Jonathan

Found my answer thanks to an earlier response by Duane Hookom.

Private Sub PageHeader_Format(Cancel As Integer, FormatCount As Integer)
Cancel = ([Page] = 1)
End Sub

Thanks Duane,
Jonathan
 
F

fredg

Hi, using Access 2003 I do not want the page header section to appear on the
first page as the report header says it all.

Is there a simple property setting for this?

Many thanks,
Jonathan

On the Report property sheet's Format tab there is a Page Header
property.
Set it to
Not with Rpt Hdr
 
J

Jonathan

fredg said:
On the Report property sheet's Format tab there is a Page Header
property.
Set it to
Not with Rpt Hdr

Ahh there it is...

Many thanks,
Jonathan
 

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