Link to home
Start Free TrialLog in
Avatar of feesu
feesu

asked on

SSTab

Experts,
Isn't there a way to delete tabs from SSTab after creating them?!
I've been trying to delete certain tabs from within the SSTab i have, but i couldn't!
Avatar of vinnyd79
vinnyd79

Not sure if this will help,but you could remove tabs from the end:

Private Sub Command1_Click()
On Error Resume Next
SSTab1.Tabs = SSTab1.Tabs - 1
End Sub
it's controlled by the tabs property either in form design or code, and only removes from the end as vinnyd says
ASKER CERTIFIED SOLUTION
Avatar of vinnyd79
vinnyd79

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of feesu

ASKER

so that's the only way; runtime!
Thanks everyone!