G
Guest
I want to insert a "Continued on Next Page" message when there is more than
one page to a report. I'm using the following code and it isn't working.
Any suggestions?
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
If Me.Section("PageHeaderSection").WillContinue = True Then
Me.pgcont.Visible = True
Else: Me.pgcont.Visible = False
End If
End Sub
one page to a report. I'm using the following code and it isn't working.
Any suggestions?
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
If Me.Section("PageHeaderSection").WillContinue = True Then
Me.pgcont.Visible = True
Else: Me.pgcont.Visible = False
End If
End Sub