-
Tab order VB6
In vB6 using the sstab control, how do I set which tab is active when I start that form? I always want tab 1 active when the form loads but right now it starts with the last tab accessed before the form was closed as the active tab when restart the form.
Doug
-
Re: Tab order VB6
You just need to assign Tab property - indexing starts with Zero:
Code:
Private Sub Form_Load()
SSTab1.Tab = 0
End Sub
-
Re: Tab order VB6
In design I've had this happen, but not from an Exe.
If Tab1 is the active tab when you compile the program, it should always be the active tab whenever you load the form.