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

inivisible button

Former Member
0 Likes
356

Hi all,

How to make the input button invisible. I need code for that.

Thank

1 ACCEPTED SOLUTION
Read only

gopi_narendra
Active Contributor
0 Likes
340
loop at screen.
if screen-name = 'P_BUTTON'.
screen-active = 0.
modify screen.
endif.
endloop.

Regards

Gopi

Hi all,

How to make the input button invisible. I need code for that.

Thank

1 REPLY 1
Read only

gopi_narendra
Active Contributor
0 Likes
341
loop at screen.
if screen-name = 'P_BUTTON'.
screen-active = 0.
modify screen.
endif.
endloop.

Regards

Gopi