thoughts were released on Wed, 20 Mar 2002 12:48:53 -0000
bearing the following fruit:
Quote:
>I want to make a control visible depending on which tab is active on an
>SSTab control.
>Can anyone give me a clue as to what I need to do. I have been messing
>around with sstab.tab(1).visible but that doesn't do the trick.
>Please point me in the write direction.
>Phil Evelyn
Try something like
Text1.visible = (sstab1.tab = 1)
or (the longhand method)
If sstab1.tab = 1 then
Text1.visible = true
else
Text1.Visible = false
endif