>> Page header not first page

  • Thread starter Thread starter Jonathan
  • Start date Start date
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
 
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
 
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
 
Back
Top