2007 Mar 05 3:46 PM
Hi, All:
In Dialog Screen programming, how to set Text Field background Color and Font size. Thanks.
Regards,
Hi, All:
In Dialog Screen programming, how to set Text Field background Color and Font size. Thanks.
Regards,
2007 Mar 05 3:52 PM
You do not have the option of font size or colour. However, you can make a text field appear in blue.
loop at screen.
case screen-name.
when ???
screen-intensified = 1.
modify screen
endcase.
endloop.
Message was edited by:
Martin Shinks
2007 Mar 05 3:54 PM
hi ,
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 = 'YELLOW'.
modify screen.
endif.
endloop.
2007 Mar 26 9:57 AM
SCREEN-COLOR is an INT4 field so cannot be set to 'YELLOW' can it ??
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |