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: 

prob in tab strip.....

naveenvishal
Contributor
0 Kudos

how to dynamically made tabs of the tabcontrol invisble at rumtime..

suppose out of 4 tabs, i want only 2 tabs to appear, how can i do that, based on some condition...

Design Time -


> Runtime

1,2,3,4 1,3,4

Thanx,

1 ACCEPTED SOLUTION

Former Member
7 REPLIES 7

Former Member

Former Member
0 Kudos

Hi friend,

I think we cannot make tabs disappear at runtime but we can make them as disable.

Regards,

Swetha.

Former Member
0 Kudos

Hii,

When you create a table control you to create Additional TABS,

you also Define Functional Code to those TABS.

USE these TABS based on your requirment.

Thanks,

GAURAV J.

Former Member
0 Kudos

Hi friend,

I think we cannot make tabs disappear at runtime but we can make them as disable.

Regards,

Swetha.

Former Member
0 Kudos

you can hide a tab at runtime by setting the corresponding tab title to inactive at runtime using screen syst table.

loop at screen.

if screen-name = <ur tab name>.

screen-active = 0.

modify screen.

endloop.

Former Member
0 Kudos

Hi Naveen,

You can hide a tab page at runtime by setting the corresponding tab title to inactive

using the system table SCREEN, SCREEN-ACTIVE = 0. You should do this before

processing the tabstrip control for the first time to ensure that the screen environment

remains constant.

Reward points if this helps,

Kiran Kumar S

naveenvishal
Contributor
0 Kudos

it is not solving my prob...how to make the tabs 1, 3 disaapear runtime, from tabs 1 to 4....