Hi all,
I've put the following code into the page footer section in order to keep the "Submitted By" text on the bottom of the last page only.
However, the only value "me.pages" ever has is 0, so it doesn't work. Can anyone point out where this went awry?
thanks!
J
----------------------------------------------------------
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page = Me.Pages Then
Me.lineSubmittedBy.Visible = True
Else
Me.lineSubmittedBy.Visible = False
End If
End Sub
I've put the following code into the page footer section in order to keep the "Submitted By" text on the bottom of the last page only.
However, the only value "me.pages" ever has is 0, so it doesn't work. Can anyone point out where this went awry?
thanks!
J
----------------------------------------------------------
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page = Me.Pages Then
Me.lineSubmittedBy.Visible = True
Else
Me.lineSubmittedBy.Visible = False
End If
End Sub