T
tm3025
On my form, I have two combo boxes. I want the second to be visible only if a
certain choice is made in the first combo box. In the second box, I set
visibility to No and entered the following code into the AfterUpdate Event:
Private Sub Grade_AfterUpdate()
If Me![Combo83] = "RCC" Then
Me![Grade].Visible = True
Else
Me![Grade].Visible = False
End If
End Sub
I saved this and returned to the form. However, my records that I have
previously entered do not show Grade even if RCC is selected. New records
also do not show Grade if RCC is entered. Not sure what's wrong here. Thanks
for your help.
certain choice is made in the first combo box. In the second box, I set
visibility to No and entered the following code into the AfterUpdate Event:
Private Sub Grade_AfterUpdate()
If Me![Combo83] = "RCC" Then
Me![Grade].Visible = True
Else
Me![Grade].Visible = False
End If
End Sub
I saved this and returned to the form. However, my records that I have
previously entered do not show Grade even if RCC is selected. New records
also do not show Grade if RCC is entered. Not sure what's wrong here. Thanks
for your help.