‎2005 Oct 21 3:01 AM
I am not sure if this can be done, but still want to confirm it ..
I have a tabstrip with 5 tabs.. Under certain conditions I want to replace a tabstrip with a subscreen of its own... for certain users I want to show the tabstrip and for others I want to show a single subscreen.. Is this possible?
‎2005 Oct 21 5:00 AM
did u try doing it using the SCREEN table.
loop at screen.
if <your condition>.
if screen-name = 'TABSTRIP name'.
screen-active = '0'.
endif.
else.
if screen-name = 'TABSTRIP name'.
screen-active = '1'.
endif.
endif.
modify screen.
endloop.
just try this if it serves your req...
rgds,
PJ
‎2005 Oct 21 3:27 AM
hi.
you can do this by defining the tabstrip in a subscreen.
Call the tabstrip in a sub screen area of ur main screen for those whom u want to show tabstrip, otherwise call those subscreens which u r calling in tabstrip, in that subscreen area of ur main screen, for those whom u want to show screens not tabstrip.
have a nice time ahead
Mithlesh
‎2005 Oct 21 5:00 AM
did u try doing it using the SCREEN table.
loop at screen.
if <your condition>.
if screen-name = 'TABSTRIP name'.
screen-active = '0'.
endif.
else.
if screen-name = 'TABSTRIP name'.
screen-active = '1'.
endif.
endif.
modify screen.
endloop.
just try this if it serves your req...
rgds,
PJ
‎2005 Oct 21 6:31 AM