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

Making lable 'RED' in Dialog programming screen

Former Member
0 Likes
1,805

Hi all,

I am developing an object using Dialog programmming. I got a requirement to make some of the lables in RED color. I did not find any option for achieving this.

Please help me out in this.

Thanks,

Vishnu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
792

You cannot change the background color , but u can change the color of that text field to blue

loop at screen.

if screen-name eq 'TEXT'.

screen-intensified = '1'.

modify screen.

endif.

endloop.

or try this..

loop at screen.

if screen-name eq 'TEXT'.

screen-color = 'RED'.

modify screen.

endif.

endloop.

2 REPLIES 2
Read only

Former Member
0 Likes
793

You cannot change the background color , but u can change the color of that text field to blue

loop at screen.

if screen-name eq 'TEXT'.

screen-intensified = '1'.

modify screen.

endif.

endloop.

or try this..

loop at screen.

if screen-name eq 'TEXT'.

screen-color = 'RED'.

modify screen.

endif.

endloop.

Read only

Former Member
0 Likes
792

Hi,

Changing background colour is not possible but you can change the clour of the text using loop statement as already told by one person.

Regards,

Rahul