Hello,
I am just learning how to code.
I have a form - repairs
I have a textbox text800
and
I have a textbox: text100
I would like code to make text100 not be visible when text800 is empty and be visble when text50 has soemthing in it.
I was thinking that the code should be addres to the on current event - is this correct?
I have tried:
If IsNull(Me.Text800) Then
Me.[text100].Visible = False
Else
If Not IsNull(Me.Text800) Then
Me.[text100].Visible = True
End If
Thanks for any help
I am just learning how to code.
I have a form - repairs
I have a textbox text800
and
I have a textbox: text100
I would like code to make text100 not be visible when text800 is empty and be visble when text50 has soemthing in it.
I was thinking that the code should be addres to the on current event - is this correct?
I have tried:
If IsNull(Me.Text800) Then
Me.[text100].Visible = False
Else
If Not IsNull(Me.Text800) Then
Me.[text100].Visible = True
End If
Thanks for any help