CSteinwand
Technical User
I need help using the visibility feature.
I have a form and I want a label to become visible if the form has data in it, an invisible when it is blank. The code I have been trying is
If Me.Customer = Null Then
Me.Label29.Visible = False
Else
Me.Label29.Visible = True
End If
It doesn't work, I don't know if I have it on the right event. I have tried on form load, form open... Please help
Should I have the focus on the customer as I do here, or should the focus be on something else?
I have a form and I want a label to become visible if the form has data in it, an invisible when it is blank. The code I have been trying is
If Me.Customer = Null Then
Me.Label29.Visible = False
Else
Me.Label29.Visible = True
End If
It doesn't work, I don't know if I have it on the right event. I have tried on form load, form open... Please help
Should I have the focus on the customer as I do here, or should the focus be on something else?