Ok, I'm sure this is a stupid question, but where do I find any tab controls in VB6? I assume they aren't installed by default (since I can't find them) so where do I find them?
Ok, new question on the same topic: I just spent the morning adding the controls to the default tab, only to find out they should all have been placed on a Tab Page for the corresponding tabs. I have read through the MSDN and can't seem to find where to add Tab Pages. Is this another control? By the way, I'm using the "TabStrip" control. Should I be using the "SSTab" control instead?
The particular problem is that the subsequent tabs don't display, only the controls on the default tab.
I just put frames on TabStrip. Number of frames = Number of tabs. On each frame put it's own set of controls. Depending on what tab is active I z-order the particular frame.
Private Sub TabStrip1_Click()
fraTabs(TabStrip1.SelectedItem.Index - 1).ZOrder vbBringToFront
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.