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!
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!
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
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
so that's the only way; runtime!
Thanks everyone!
Thanks everyone!
Private Sub Command1_Click()
On Error Resume Next
SSTab1.Tabs = SSTab1.Tabs - 1
End Sub