R
RipperT \(again\)
Private Sub Form Current()
If [nameofcontrolwithvalue] = "the value" Then
[othercontrol].Enable = False 'Disable other
control
Else
[othercontrol].Enable = True 'Enable other
control
End If
End Sub
I am wondering what the syntax would be if I wanted "the
value" to be multiple values, in other words, the field
in question could accept any of 3 or 4 pre-determined
values. Is this possible?
Rip
If [nameofcontrolwithvalue] = "the value" Then
[othercontrol].Enable = False 'Disable other
control
Else
[othercontrol].Enable = True 'Enable other
control
End If
End Sub
I am wondering what the syntax would be if I wanted "the
value" to be multiple values, in other words, the field
in question could accept any of 3 or 4 pre-determined
values. Is this possible?
Rip