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

Group header hidding page footer gives problems

Status
Not open for further replies.

Bresart

Programmer
Feb 14, 2007
314
ES
Hi, i have a report with a Group1 and after a Group2. The Group1 header has the line

Me.PageFooterSection.visible = False

in the Format event. The Group2 header has the line

Me.Group2Header.ForceNewPage = 1
Me.PageFooterSection.visible = True

also in the Format event.

The Group1 corresponds to an index, so the Group1Header_Format event only enters once.

The result is that also in the first page where the Group2 appears the first time, the PageFooter is hidden. In the next page and following the PageFooter is shown.

Any solution for showing the PageFooter from the beginning of Group2?

Thanks for looking.

 
I have solved it with the line

Me.PageFooterSection.visible = True

in the Format event of the Page Header.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top