That is what I tried to do early on but for some reason I kept getting an run time error saying, "The object doesn't have access to object or method". The code I used is below:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim result As Boolean
result = IsNull(txtSearchLineItemSSNResult.value)
If (result = False) Then
txtSearchLineItemSSNResult.Visibal = True
Else
txtSearchLineItemSSNResult.Visibal = False
End If
End Sub
It keeps caughing on the 1st instance of the .Visibal method
Thanks,
Scott