How do I programmatically select a tab on my tabstrip control
dim tbstrp as Tabstri
tbstrp.SelectedItem="Item 1
changes the text of whatever tab is currently selected to "Item 1". I want to make the tab whose text is already "Item 1" be the currently selected tab
Thanks
Rachel09 - 20 Feb 2004 18:51 GMT
You're looking for
tbstrp.Value =
I think... 0 is the first tab, 1 is the second, etc
Rachel