I'm using this right now in the format event...
me.txShpAcct.Visible = (Me.Page = Me.Pages)
but it still leaves a Blank space, where the Page footer controls would be. I've tried setting the controls to shrink/grow but it doesn't matter. I can manually set the footer to be invisible in the properties but
.PageFooter.visible= (Me.Page = Me.Pages) does Not work ( errors "Invalid Qualifier") How can I control this programically?
EDIT:
Ok I renamed the page footer to and put this in the new footer event...
me .PageFooter1.Visible = (Me.Page = Me.Pages)
It does hide it, but does not display it on the last page? And I don't want to use the Report footer because I need it right at the bottom of the last page as this is a signature page along with some legal mumbo jumbo...report footer will be messy as it ends anywhere.
me.txShpAcct.Visible = (Me.Page = Me.Pages)
but it still leaves a Blank space, where the Page footer controls would be. I've tried setting the controls to shrink/grow but it doesn't matter. I can manually set the footer to be invisible in the properties but
.PageFooter.visible= (Me.Page = Me.Pages) does Not work ( errors "Invalid Qualifier") How can I control this programically?
EDIT:
Ok I renamed the page footer to and put this in the new footer event...
me .PageFooter1.Visible = (Me.Page = Me.Pages)
It does hide it, but does not display it on the last page? And I don't want to use the Report footer because I need it right at the bottom of the last page as this is a signature page along with some legal mumbo jumbo...report footer will be messy as it ends anywhere.
Last edited: