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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change PageHeader label's caption on ReportFooter pages...

Status
Not open for further replies.

ReluctantDataGuy

Programmer
May 15, 2003
131
0
0
US
Is there a way to change the caption of a label in a report's PageHeader section while the report's ReportFooter section is being formatted/printed?

My report's ReportFooter spans multiple pages.

I want the label in the report's PageHeader section to be different for pages in the report's ReportFooter section. Soemthing like this:

If Not ReportFooter Then
Me.lblSectionTitle = "NormalSection Label Text"
Else
Me.lblSectionTitle = "FooterSection Label Text"
End if

I think the right place to put the above pseudo-code is in the report's OnPage event, but I can't seem to find a way to determine if the page being formatted is in the ReportFooter section of the report.

Any help will be much appreciated!
RDG.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top