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 Custom control in dialog program

Former Member
0 Likes
1,539

Developed dialog program with input/output fields and custom control. according to few conditions need to hide CUSTOM CONTROL.

i tried using

LOOP at screen.

modify screen.

endloop.

it's not working.

Please advise, how to hide custom control.

Thanks in advance.

regards,

bala

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
895

Hi,

use this as in PBO.

loop at screen.

*some condition

modify screen.

endloop.

Regards,

Varun

4 REPLIES 4
Read only

Former Member
0 Likes
896

Hi,

use this as in PBO.

loop at screen.

*some condition

modify screen.

endloop.

Regards,

Varun

Read only

0 Likes
895

already code under PBO only.. but it is not working..

Read only

Former Member
0 Likes
895

I have the same probelm.

Any ideas since?

Read only

0 Likes
895

Hi,

Please check the below code is helpful.

PBO......

LOOP AT SCREEN.

IF screen-name = <the name which is defined on the screen for custom control>

screen-invisible = 1.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

If it is helpful then give me reward points

Cheers.

Prashant