rowardHoark
Registered User.
- Local time
- Today, 17:15
- Joined
- Jan 14, 2011
- Messages
- 20
I have a form f_select_tests, where I select tests to be conducted using toggle buttons.
Each test has a corresponding tab in a form called f_manage_tests. All tabs are default hidden.
Depending on the tests selected I want corresponding tabs to become visible.
Currently this code for Water_absorbtion test toggle button is not working.
Each test has a corresponding tab in a form called f_manage_tests. All tabs are default hidden.
Depending on the tests selected I want corresponding tabs to become visible.
Currently this code for Water_absorbtion test toggle button is not working.
Code:
Private Sub Water_absorbtion_GotFocus()
Forms!f_manage_tests.SetFocus
Me.Controls("testManagementTab").Pages("waterAbsorbtionTab").Visible = True
End Sub