Jul 13, 2003 #1 LPlates Programmer Jun 5, 2003 554 AU I add a tab to the Tabcontrol... Tab1.Tabs.Add Index, Key, Caption How do I select the new tab to show the contents of the tab(without clicking on it)? Thanks in advance!
I add a tab to the Tabcontrol... Tab1.Tabs.Add Index, Key, Caption How do I select the new tab to show the contents of the tab(without clicking on it)? Thanks in advance!
Jul 14, 2003 #2 ca8msm Programmer May 9, 2002 11,327 GB You just have to set the selected property to True for whichever index. i.e. Code: Tab1.Tabs(3).Selected = True Upvote 0 Downvote
You just have to set the selected property to True for whichever index. i.e. Code: Tab1.Tabs(3).Selected = True
Jul 14, 2003 Thread starter #3 LPlates Programmer Jun 5, 2003 554 AU Ahh, so near yet so far! Thankyou. Upvote 0 Downvote