eagle11232
Technical User
In a single form I have one dropdown field that is a yes/no option, based on the input, in this case a no, I want to either lock out or simply hide the following four fields (3 dropdowns and one text). I checked the FAQ and searched the forum, but didn't find anything that helped me. I have never coded VB before, so if someone can tell me where my error is it would be greatly appriciated. Thanks
Private Sub Label77_AfterUpdate()
Dim Label77 As Boolean
If FormTestOne.Label77.Value = False Then FormTestOne.Extra1.Dropdown.visable = False
End If
End Sub
Private Sub Label77_AfterUpdate()
Dim Label77 As Boolean
If FormTestOne.Label77.Value = False Then FormTestOne.Extra1.Dropdown.visable = False
End If
End Sub