T
Tony Williams
I have a label on a form that I want to be visible only if the value of a
combo box control on the form is not null. I have tried this
Private Sub cmbHazards_AfterUpdate()
If Not IsNull(Me.cmbHazards) Then
Me.lblcaution.Visible
End If
End Sub
However it would appear I can't use the Visible property with a label?
Can anyone help?
Thanks
Tony
combo box control on the form is not null. I have tried this
Private Sub cmbHazards_AfterUpdate()
If Not IsNull(Me.cmbHazards) Then
Me.lblcaution.Visible
End If
End Sub
However it would appear I can't use the Visible property with a label?
Can anyone help?
Thanks
Tony