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

problem in subscreen(dialog program) & how to deactivate pushbutton

Former Member
0 Likes
448

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

3 REPLIES 3
Read only

Former Member
0 Likes
428

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

Read only

Former Member
0 Likes
428

Hi,

Try changing the checking the check box of Output Field attribute while developing screen

Read only

Former Member
0 Likes
428

loop at screen.

if screen-name = 'PUSHBUTTON NAME'.

screen-active = '0'.

modify screen.

endif.

endloop.