I am using an SSTab control with 2 tabs.
I want to disable or hide tab 2 in code
How can I do this?
------------------
Mark Sreeves
Analyst Programmer
[email protected]
A BMW Group Company
Printable View
I am using an SSTab control with 2 tabs.
I want to disable or hide tab 2 in code
How can I do this?
------------------
Mark Sreeves
Analyst Programmer
[email protected]
A BMW Group Company
Either of these will do what you are after.
------------------Code:SSTab1.TabEnabled(1) = False
SSTab1.TabVisible(1) = False
Ishamel
[email protected]
Thanks for that! It's just what I needed :)