Application Development and Automation 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: 
Read only

Hiding Tabstrip.

Former Member
0 Likes
1,188

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

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

6 REPLIES 6
Read only

Former Member
0 Likes
865

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...

Read only

0 Likes
865

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

Read only

0 Likes
865

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

Read only

0 Likes
865

I tried it tat ways but its not happening.

its not recoginizing the name of the tabstrip as screen name

Read only

0 Likes
865

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

Read only

Former Member
0 Likes
865

Thanks