This question is locked. New answers and comments are not allowed.
I have a tab strip control that has a dynamic amount of tabs. Autoscroll is set to true so that if there is more tabs then there is space to show all tabs, I can scroll back and forth to find the tab I need. The user is also given the ability to add new tabs as is necessary. When a new tab is created by the user, I want to make it the currently selected tab, and bring focus to the first control on that tab page. I have been able to successfully select the new tab by using tabstrip.SelectedTab = tabstrip.Items(tabstrip.Items.Count - 1). The problem I have is that sometimes the new tab is way off on the right side, and is hidden from sight because there are too many tabs. Is there some kind of function like ScrollToTab() or some way that I can programatically scroll to that last tab so that I can see it if it is off the screen?