Then you need to get to the event tab of the properties sheet for the Detail Section and press the "..." button and select code. Then *replace* the stub of code provided with the following:
Code:
Option Compare Database
Option Explicit
Dim LastInvoiceNumber As String
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
If Me.txtInvoiceNumber = LastInvoiceNumber Then
Me.txtFreight.Visible = False
Me.txtHandling.Visible = False
Else
LastInvoiceNumber = Me.txtInvoiceNumber
Me.txtFreight.Visible = True
Me.txtHandling.Visible = True
End If
End Sub