Hello,
Having some issues with TABS in forms.
I have three tabs
1 = Training
2 = Education
3 = Certifications
When an user select a tab it calls: Private Sub tabMatrix_Change()
then it will look at the tab number:
If Me.tabMatrix.Pages.Count = 1 Then
then I have that tab to run a query
ElseIf Me.tabmatrix.Pages.Count = 2 then
then I have this tab to run a query also
ElseIf Me.tabmatrix.Pages.Count =3 then
anotehr query
EndIF
When I click on different tabs it stuck on value for Page Count of 3. Not sure it's not changing the value.
Any help would be appreciated.
Thank you in advance.