On Wed, 2 Mar 2005 12:19:05 -0800, Lamar wrote:
> 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.
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
|