I have a form that contains a combobox (HW_Chassis) which I would like to remain invisible unless the Yes/No control (In_Chassis) is selected.
The If statement I used:
If Me.In_Chassis = True Then
Me.HW_Chassis.Visible = True
Else
Me.HW_Chassis.Visible = False
End If
It works...but the In_Chassis Yes/No Control does not have an "OnChange" event to use and all the ones that I tried required toggling the In_Chassis control to work.
Please advise...Thanks!
The If statement I used:
If Me.In_Chassis = True Then
Me.HW_Chassis.Visible = True
Else
Me.HW_Chassis.Visible = False
End If
It works...but the In_Chassis Yes/No Control does not have an "OnChange" event to use and all the ones that I tried required toggling the In_Chassis control to work.
Please advise...Thanks!