I don't understand what you mean.
Here is an example.
In the header of a form, there is an unbound combo box named "cboHideShow".
The combo box row source type property is "Value List".
The combo box row source property is "False";"True"
The combo box limit to list property is YES.
The combo box label caption property is "Visible"
The combo box default value is TRUE
The combo box Format property is set to "True/False"
In the details section there are one or more controls with "Selected" in the Tag property.
The combo box "cboHideShow" after update event has this code:
Code:
Private Sub cboHideShow_AfterUpdate()
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.Tag = "Selected" Then
ctl.Visible = Me.cboHideShow
End If
Next ctl
Set ctl = Nothing
End Sub
Setting the combo box "cboHideShow" to FALSE hides the controls.
Setting the combo box "cboHideShow" to TRUE shows the controls.