‎2005 Dec 27 10:41 AM
hi freinds ,
i had two subscreeen one of each with table control, in output of my program i had both subcreen with table control and had two pushbutton to compress data areas when i click on one compress data area pushbutton one of the table control gets disappear at the same time i want the the other subcreen tablecontrol should increase, for example if it has 8 lines then it should be 24 lines or full screen .
(2)- i had pushbutton created on my layout i want to deactivate it ...not by using excluding syntax.
i will be thankfull if any body help me
‎2005 Dec 27 10:49 AM
try this...
IN PBO
loop at screen.
if screen-name = 'BUTTON'.
screen-INVISIBLE = 1.
endif.
modify screen.
endloop.Message was edited by: Vijay Babu Dudla
‎2005 Dec 27 11:00 AM
Hi,
Try changing the checking the check box of Output Field attribute while developing screen
‎2005 Dec 27 11:09 AM
loop at screen.
if screen-name = 'PUSHBUTTON NAME'.
screen-active = '0'.
modify screen.
endif.
endloop.