Link to home
Create AccountLog 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
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of feesu

ASKER

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