Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing report page footers 1

Status
Not open for further replies.

Moss100

Technical User
Aug 10, 2004
586
GB


I have made my logo as the report header and my address as my page footer. The problem with this is that I get my address appearing on the bottom of the following pages and I just want it to appear on the front page.

Is it possible to just make the page footer print on the first page???

Thanks for any help or suggestions

Mark
 
Yes, it is. In the footer section's OnFormat event, try something like this:
Code:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
    Me.PageFooterSection.Visible = (Me.Page = 1)
End Sub
Hope this helps.

[pc2]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top