I have an old app with a tab control (says SSTab in properties, says Microsoft Tab ActiveX Control Version 6.0). It has 10 tabs with a multitude of controls on them.
I need to add a new tab, but it needs to be the 2nd from the left. However, the new tab will only show up in the right-most position and I don’t see a property to move it relative to other tabs.
So short of copying all controls from tab to tab, how do I move the new tab into the 2nd position?
I’m pretty sure there’s no way to do what you want to do with the SSTab.
Maybe you can copy each tab’s controls in a container (like a PictureBox?) and copy these containers from tab to tab to simulate positioning tabs. You can edit the tabs’ captions through the TabCaption property.