G
george tracey
I have used the code below to try to avoid having a footer section print
out on a first page and then print out on all succeeding pages.
It works for pages 1, 3 ...... in that the footer doesn't display on
page 1 and does display on pages 3 onwards.
The fail point is that it doesn't work for page 2 which is also not
displayed!
Private Sub PageFooterSection_Format(Cancel As Integer, PrintCount As
Integer)
If Page = 1 Then
PageFooterSection.Visible = False
Else
PageFooterSection.Visible = True
End If
End Sub
out on a first page and then print out on all succeeding pages.
It works for pages 1, 3 ...... in that the footer doesn't display on
page 1 and does display on pages 3 onwards.
The fail point is that it doesn't work for page 2 which is also not
displayed!
Private Sub PageFooterSection_Format(Cancel As Integer, PrintCount As
Integer)
If Page = 1 Then
PageFooterSection.Visible = False
Else
PageFooterSection.Visible = True
End If
End Sub