Can anyone help me? I have put this bit of code into my database and i can see the results on screen but when i go to print the report it is linked to it doesn't print the information but it prints the rest of the report fine.
[code=vb]Private Sub Detail_Format(C ancel As Integer, FormatCount As Integer)
If (Me.[Paid] = False) Then
Me.labelPaid.Vi sible = False
Me.PaidDate.Vis ible = False
Me.PaymentMetho d.Visible = False
Me.PaymentNumbe r.Visible = False
Else
Me.labelPaid.Vi sible = True
Me.PaidDate.Vis ible = True
Me.PaymentMetho d.Visible = True
Me.PaymentNumbe r.Visible = True
End If
End Sub[/code]
[code=vb]Private Sub Detail_Format(C ancel As Integer, FormatCount As Integer)
If (Me.[Paid] = False) Then
Me.labelPaid.Vi sible = False
Me.PaidDate.Vis ible = False
Me.PaymentMetho d.Visible = False
Me.PaymentNumbe r.Visible = False
Else
Me.labelPaid.Vi sible = True
Me.PaidDate.Vis ible = True
Me.PaymentMetho d.Visible = True
Me.PaymentNumbe r.Visible = True
End If
End Sub[/code]
Comment