Sub JumpToTab(tp As TabPane, TabText As String)
For Each tb As TabPage In tp.Tabs
If tb.Text = TabText Then
tp.SelectedIndex = tp.Tabs.IndexOf(tb)
Exit
End If
Next
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.