S
Shelley
I want to print every other page (odd pages first) and
then have the user be able to re-load the paper so they
can then print all the even pages on the other side. I
have been scouring the newsgroup for help and have found
how I can tell if a page is odd or even (below) but don't
know where to go from here.
Private Sub PageFooterSection_Format(Cancel As Integer,
FormatCount As Integer)
'OddEven is a control in the Page Footer.
If Me.Page Mod 2 = 0 Then
Me.OddEven = "Even"
Else
Me.OddEven = "Odd"
End If
End Sub
Thank you in advance for your help,
Shelley
then have the user be able to re-load the paper so they
can then print all the even pages on the other side. I
have been scouring the newsgroup for help and have found
how I can tell if a page is odd or even (below) but don't
know where to go from here.
Private Sub PageFooterSection_Format(Cancel As Integer,
FormatCount As Integer)
'OddEven is a control in the Page Footer.
If Me.Page Mod 2 = 0 Then
Me.OddEven = "Even"
Else
Me.OddEven = "Odd"
End If
End Sub
Thank you in advance for your help,
Shelley