‎2008 Jan 23 5:24 AM
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
‎2008 Jan 23 5:34 AM
Hi,
use this as in PBO.
loop at screen.
*some condition
modify screen.
endloop.
Regards,
Varun
‎2008 Jan 23 5:34 AM
Hi,
use this as in PBO.
loop at screen.
*some condition
modify screen.
endloop.
Regards,
Varun
‎2008 Jan 23 5:44 AM
‎2008 Mar 03 7:47 AM
‎2008 Mar 03 9:05 AM
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