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

How to Enable Pushbutton at runtime in MPP

Former Member
0 Likes
658

Hi Expert,

I have problem in the following scenario..

I design screen say '0230' and set property of one push button(Show) is invisible.

I am calling screen '0230' multiple time based on run time.

When I calling screen '0230' in third time I want to enable that push button(show).

How could I do this.

Please explain me....

Regards,

Rajavel Nj

Hi Expert,

I have problem in the following scenario..

I design screen say '0230' and set property of one push button(Show) is invisible.

I am calling screen '0230' multiple time based on run time.

When I calling screen '0230' in third time I want to enable that push button(show).

How could I do this.

Please explain me....

Regards,

Rajavel Nj

3 REPLIES 3
Read only

Former Member
0 Likes
630

Hi,

Keep a counter variable to count how many time the screen has been called.

Each time a call is made of the screen increase the counter.

In the PBO of the screen called screen where you want to hide the button, Modify the pushbutton invisible attribute by LOOP AT SCREEN.

Regards,

Ashish

Read only

venuarun
Active Participant
0 Likes
630

Hi,

Set a counter and if the counter value equals 3

In PBO of 230 you write the code for hiding the push button

Regards

Arun VS

Read only

Former Member
0 Likes
630

Thank you for your response

Regards,

Rajavel Nj