Hello, I have a form that is a continuous form and it has a combo box named [cboProductID] that If I select ID 10 or 21 then I need to show a text box in that row named [txtGap]. The problem I’m having is since it’s a continuous form the first time I select 10 or 21 all the txtGap text boxes set to visible and vise versa. My question is how do I get it to work with just that record? Below is the VBA I’m using in the [cboProductID] after update. Thanks!
Thanks,
SoggyCashew.....
Code:
If Me.cboProductID = 10 Or Me.cboProductID = 21 Then
Me.txtGap.Visible = True
Else
Me.txtGap.Visible = False
End If
Thanks,
SoggyCashew.....