‎2008 Dec 15 8:18 AM
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
‎2008 Dec 15 8:26 AM
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.
‎2008 Dec 15 8:26 AM
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.
‎2008 Dec 15 8:33 AM
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