May 27, 2006 #1 Tommy408 Programmer Joined Apr 30, 2006 Messages 53 Location US How can I find out which tab is selected?
May 27, 2006 1 #2 Eupher MIS Joined Jul 18, 2002 Messages 1,724 Location 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 Joined May 23, 2006 Messages 35 Location 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