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

Dialog Screen

Former Member
0 Likes
534

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,

3 REPLIES 3
Read only

Former Member
0 Likes
499

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

Read only

Former Member
0 Likes
499
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.
Read only

0 Likes
499

SCREEN-COLOR is an INT4 field so cannot be set to 'YELLOW' can it ??