May 27, 2006 1 #2 Eupher MIS Jul 18, 2002 1,724 US Hi, Tommy408, The .Value property of the tab control is the same as the index of the currently selected tab page. Ken S. Upvote 0 Downvote
Hi, Tommy408, The .Value property of the tab control is the same as the index of the currently selected tab page. Ken S.
May 27, 2006 #3 CGSB Programmer May 23, 2006 35 CA Try something like this: Dim intTabNumber As Integer Dim strTabName As String intTabNumber = Me!tabControlName.Value strTabName = Me!tabControlName.Pages(intTabNumber).Caption Upvote 0 Downvote
Try something like this: Dim intTabNumber As Integer Dim strTabName As String intTabNumber = Me!tabControlName.Value strTabName = Me!tabControlName.Pages(intTabNumber).Caption