SSTab problem 
Author Message
 SSTab problem

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



Sun, 05 Sep 2004 20:48:53 GMT  
 SSTab problem

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



Sun, 05 Sep 2004 21:44:16 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. SStab Problem - Dragover event

2. SSTab Problem

3. SStab Problem - Drag and Drop

4. SSTAB problem

5. SSTAB:Problem with creating tabs at runtime

6. SSTab problem

7. Horrendous SStab problems

8. SSTab problems

9. SSTab problem

10. SSTab Problem/Queston.

11. SStab Problem

12. SSTab problem

 

 
Powered by phpBB® Forum Software