T Tony Wainwright Feb 11, 2005 #1 How do I find the name of the Tabbed Page I am on. Using Access 2003
B Brendan Reynolds Feb 11, 2005 #2 The Value property of the tab control returns the index number of the active tab page. It's zero-based, so the first page is 0, the second is 1, etc. Private Sub TabCtl0_Change() MsgBox "Now showing page: " & CStr(Me.TabCtl0.Value) End Sub
The Value property of the tab control returns the index number of the active tab page. It's zero-based, so the first page is 0, the second is 1, etc. Private Sub TabCtl0_Change() MsgBox "Now showing page: " & CStr(Me.TabCtl0.Value) End Sub
K Ken Snell [MVP] Feb 11, 2005 #3 NameOfTabPage = Me.TabControlName.Pages(Me.TabControlName.Value).Name
V Van T. Dinh Feb 12, 2005 #4 If you want the Text as it appears in the little tab, follow Ken's advice but use the Caption Property instead of the Name Property.
If you want the Text as it appears in the little tab, follow Ken's advice but use the Caption Property instead of the Name Property.