Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Hiding Tabstrip.

Former Member
0 Kudos

Please Let me knw how to hide a tabstrip on main screen on click of button.

6 REPLIES 6

Former Member
0 Kudos

Hi Vinita,

onclick of the button you can write the below code:

Loop at screen.

if screen-name eq <Tab_name>.

screen-active = 0.

endif.

endloop.

Here <tab_name> is the name of the tab which you want to hide.

Thanks...

0 Kudos

hi m able to hide the tab in the tabstrip. but i want to hide the Tabstrip also along with the tabs

0 Kudos

Use Tabstip name in the <tab_name> . it will hide it...

0 Kudos

I tried it tat ways but its not happening.

its not recoginizing the name of the tabstrip as screen name

0 Kudos

Place your tabstrip at subscreen i.e 100. Create second empty subscreen i.e 200. Once you want to hide entire tabstrip simply switch b/w 100 and 200 in subscreen area of main screen.

Regards

Marcin

Former Member
0 Kudos

Thanks