2nd page on Report

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

Guest

Get me started in the right direction. In my report I have a page header
with certain information. But on the 2 page I want to keep some page header
info but not other information.

Using VB can I somehow have certain information show on 1st page but not in
the following page in the page header section.

I can use the report header. Thank you.
 
Get me started in the right direction. In my report I have a page header
with certain information. But on the 2 page I want to keep some page header
info but not other information.

Using VB can I somehow have certain information show on 1st page but not in
the following page in the page header section.

I can use the report header. Thank you.

Several ways to do this.
1) Place all your Page Header controls in the Page Header.
Code the Page Header Format event:
[ControlA].Visible = Me.[Page] >1
[ControlB].Visible = Me.[Page] = 1
etc.
or...
2) Place the controls you wish to display on the first page in the
Report Header. Place only the controls you want to show on the second
and later pages in the Page Header.
Set the Report's PageHeader property to "Not with Rpt Hdr".
It's on the Report property sheet's Format tab.
The Page header will not show on page 1, but will on succeeding pages.
 
I agree with fredg if you what more control over what the reports dose go
with solution 1 it is good practise to use code to edit such information as
you can do nice tricks like pulling other data out of the database to be
displayed as part of the headers.

fredg said:
Get me started in the right direction. In my report I have a page header
with certain information. But on the 2 page I want to keep some page header
info but not other information.

Using VB can I somehow have certain information show on 1st page but not in
the following page in the page header section.

I can use the report header. Thank you.

Several ways to do this.
1) Place all your Page Header controls in the Page Header.
Code the Page Header Format event:
[ControlA].Visible = Me.[Page] >1
[ControlB].Visible = Me.[Page] = 1
etc.
or...
2) Place the controls you wish to display on the first page in the
Report Header. Place only the controls you want to show on the second
and later pages in the Page Header.
Set the Report's PageHeader property to "Not with Rpt Hdr".
It's on the Report property sheet's Format tab.
The Page header will not show on page 1, but will on succeeding pages.
 
Back
Top