M
Mark S via AccessMonster.com
I am try to hide a Tab control with underlying forms attached. When I click
on a combo box on the main form I want this Tab control to become visible.
When I use the following code I am able to hide/unhide the Tab but not able
to select the actual Tabs.
Any help is appreciated.
Private Sub Combobox_Click()
If [Combobox] Then
Me!TabCtl0.Visible = True
Else
Me!TabCtl0.Visible = False
End If
End Sub
on a combo box on the main form I want this Tab control to become visible.
When I use the following code I am able to hide/unhide the Tab but not able
to select the actual Tabs.
Any help is appreciated.
Private Sub Combobox_Click()
If [Combobox] Then
Me!TabCtl0.Visible = True
Else
Me!TabCtl0.Visible = False
End If
End Sub