D
diablowrym via AccessMonster.com
I am using the following code to make my pagefooter only appear on the first
page of my report.
Private Sub PageFooterSection_Print(Cancel As Integer, PrintCount As Integer)
If [Page] = [Pages] Then
Me.PageFooterSection.Visible = True
Else
Me.PageFooterSection.Visible = False
End If
End Sub
This is working fine in the 2003 version that I have on my pc, but on other
pc's in the office that have 2007 it is not working.
Anyone have any ideas how to fix this, or other code I could use,
Thanks,
Point
page of my report.
Private Sub PageFooterSection_Print(Cancel As Integer, PrintCount As Integer)
If [Page] = [Pages] Then
Me.PageFooterSection.Visible = True
Else
Me.PageFooterSection.Visible = False
End If
End Sub
This is working fine in the 2003 version that I have on my pc, but on other
pc's in the office that have 2007 it is not working.
Anyone have any ideas how to fix this, or other code I could use,
Thanks,
Point