Different headers in report

J

John

I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.
Thanks,
John
 
F

fredg

I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.
Thanks,
John

If you wish to not show the page header on just the first page, set
the Report's PageHeader property to:

Not with rpt hdr

It's on the property sheet's Format tab.

Or you can code the Page Header Format event:

Cancel = [Page] = 1
 
D

Dirk Goldgar

I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.


On the Format tab of the report's property sheet, there are Page Header and
Page Footer properties that let you specify whether those sections will be
shown on the Report Header and Report Footer sections.
 
J

John

Thanks guys. Works great!
I kept looking in the Page's Property sheet.
John

fredg said:
I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling
with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.
Thanks,
John

If you wish to not show the page header on just the first page, set
the Report's PageHeader property to:

Not with rpt hdr

It's on the property sheet's Format tab.

Or you can code the Page Header Format event:

Cancel = [Page] = 1
 
Top