I have a form that will have several dropdown combo boxes, each option will cause a series of fields to change from invisible to visible. I got the first part of that to work. The problem I am having is while flipping through the records, that field remains visible/invisible based on the last selection. Below is the code I am using. The first combobox is named Involved (both name and control source), and the second is named Involvement (name is Label37, haven't gotten around to renaming it yet). How do I get it to adjust the Visible setting based on the Involved combobox and retain that setting for each record?
Here is the code I am using:
Private Sub Involved_Change()
If Involved = "Yes" Then
Label37.Visible = True
Involvement.Visible = True
Else
Label37.Visible = False
Involvement.Visible = False
End If
End Sub
Edit: Also, how would I accomplish the same thing (adjusting the visible settings and making them change with the record) to tabs?