Referring to PageFooter

  • Thread starter Thread starter Eddy
  • Start date Start date
E

Eddy

Using Access2003 I am trying to reference the page footer from code behind
a report. The code fires under the On Format event of the PageFooter. The
code is as follows:

For Each ctl In Me.PageFooter.Controls
(Actions)

The error I am getting is Invalid Qualifer with PageFooter highlighted.
PageFooter is the name of the footer. Help!
 
Eddy said:
Using Access2003 I am trying to reference the page footer from code behind
a report. The code fires under the On Format event of the PageFooter. The
code is as follows:

For Each ctl In Me.PageFooter.Controls
(Actions)

The error I am getting is Invalid Qualifer with PageFooter highlighted.
PageFooter is the name of the footer. Help!


This will work:

For Each ctl In Me.Section(4).Controls
 
Back
Top