S
scott04
Hi everyone,
I am trying to make two textboxes visible only if data is present. My code
works fine if the first record loaded meets my criteria. My problem is if i
go to the next record and then come back the record the data that should be
visible does not appear. I have placed the code in the oncurrent event and
have tried placing it in other places but have not had much luck. My code is:
If IsNull(Me.Auditor2nd) = True Then
Me.Auditor2nd.Visible = False
End If
If IsNull(Me.Auditor3rd) = True Then
Me.Auditor3rd.Visible = False
End If
Any suggestions?
I am trying to make two textboxes visible only if data is present. My code
works fine if the first record loaded meets my criteria. My problem is if i
go to the next record and then come back the record the data that should be
visible does not appear. I have placed the code in the oncurrent event and
have tried placing it in other places but have not had much luck. My code is:
If IsNull(Me.Auditor2nd) = True Then
Me.Auditor2nd.Visible = False
End If
If IsNull(Me.Auditor3rd) = True Then
Me.Auditor3rd.Visible = False
End If
Any suggestions?