Report with two headers

A

AMarin

Hello:
Is there anyway to make a report with two header? One with an logo (the
report head) and others (second pages) with other logo (page head).
Or with vba code make visible the first logo and after print it make
invisible.

Now I get in the first page the two logos (report head and page head)?

I mean something like this:
if page <= 1 then
logo1.visible=true
logo2.visible=false
else
logo1.visible=false
logo2.visible=true
end if
thank you very much
 
F

fredg

Hello:
Is there anyway to make a report with two header? One with an logo (the
report head) and others (second pages) with other logo (page head).
Or with vba code make visible the first logo and after print it make
invisible.

Now I get in the first page the two logos (report head and page head)?

I mean something like this:
if page <= 1 then
logo1.visible=true
logo2.visible=false
else
logo1.visible=false
logo2.visible=true
end if
thank you very much

Place the logo you want to display on the first page in the report
header.
Place the logo you wish to display on the second page in the page
header.
Set the Report's Page Header property to
Not with rpt hdr
This will hide the entire Page Header on the first page.
It's on the Report property sheets Format tab.

Alternatively, you can place both logos in the page header and code
the Page Header format event:
Logo1.visible = Page =1
Logo2.Visible = Page <> 1
 

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