im not sure how to do this, but how do u set a sstab active on form load, or when a menu choice is chosen??
Printable View
im not sure how to do this, but how do u set a sstab active on form load, or when a menu choice is chosen??
SSTab1.TabVisible(index) = True
Give the required index
that didnt work
If what you want to do is set which tab is visible then
VB Code:
SSTab1.Tab = 0 'replace 0 with desired tab index
this pic shows the tab i want to show at load.
the index is 1 and the tab is 0
tabindex is also 0
now how do i set that tab to show on form load
John is right,
SSab1.Tab=0
This will put focus on first tab.
i got it to work. i was typing it wrong. my bad.