Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Report Page Margin Different From Odd and Even

Status
Not open for further replies.

Marryp

Technical User
May 28, 2001
129
0
0
CA
Hello this code works fine except that on the next page the first value is adjusted to the format of the previous page:

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)

If FormatCount > 1 Then Exit Sub
If Me.Page Mod 2 = 1 Then
Me.Controls.Item("Word").Left = 1650
Else
Me.Controls.Item("Word").Left = 550
End If
End Sub
 
Is there a way to fix the problem above?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top