here is the code i forgot before
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.Section(4).Visible = (Me.Page Mod 2 = 1)
Me.Section(0).Visible = (Me.Page Mod 2 = 1)
Me.Section(1).Visible = (Me.Page Mod 2 = 1)
Me.Section(2).Visible = (Me.Page Mod 2 = 1)
Me.Section(3).Visible = (Me.Page Mod 2 = 1)
If Me.Page Mod 2 = 0 Then
Me.Section(0).Height = 1440 * 10
Me.txtContract.Height = 1440 * 10
Text117.Visible = False
Text38.Visible = False
[Delivery Method].Visible = False
ItemNumber.Visible = False
ItemDescription.Visible = False
RequestedAmount.Visible = False
UnitOfMeasure.Visible = False
Hours.Visible = False
CustPrice.Visible = False
AllowedQty.Visible = False
CoPay.Visible = False
Me.NextRecord = False
Else
Me.txtContract = 0
Me.Section(0).Height = 0.2 * 1440
Text117.Visible = True
Text38.Visible = True
[Delivery Method].Visible = True
ItemNumber.Visible = True
ItemDescription.Visible = True
RequestedAmount.Visible = True
UnitOfMeasure.Visible = True
Hours.Visible = True
CustPrice.Visible = True
AllowedQty.Visible = True
CoPay.Visible = True
txtContract.Visible = False
Me.NextRecord = True
End If
End Sub
Steve said:
I am working on the same problem as you. the following suppresses the text
boxes OK and suppresses the pageFooter OK. Nothing I have tried will
suppress the pageHeader. I do not know much about Section() other than what
I have read in these groups.
If you can see something else for me to try, please let me know.
TIA
Steve