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

Problem on the display of Page Footer

Status
Not open for further replies.

ejocobip

Programmer
Feb 11, 2005
13
US
Hello everybody, I have an old problem with a Report.

thread703-943831

I would like to print the Page Footer only on the last page, but when the page is full sometimes the Page Footer doesn't appears.

I'm using the next code on Page Header Section Format event to make the Page Footer apear only on the last page:
Code:
Me.PageFooterSection.Visible=(Me.Page=Me.Pages)

I think the problem is than when the code is run the Me.Pages value is unknown.

Any ideas on how to print the Page Footer only on the last page?

Thank's for the help.
Best Regards

Patricia Jocobi



 
Try putting your objects in the report footer rather than the page footer. That way, it'll only print at the end of the report.

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
hi traingamer,
thank's a lot for your reply.

I've already try that option but, what i would like is that the Report Footer appear in the bottom of the page.

is there a way to do that using Report Footer?

Patricia Jocobi
 
see thread703-886713

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top