Answered Set BGCOLOR for the LABEL of a FILL-IN

ezequiel

Member
Hello, I need to set a BGCOLOR for the label of a fill-in.

In this example, I would like to display the label "Conteo Digitadas" with the same light green background color of the rectangle.

1659632815332.png
I know I can supress the label and put a text object in its place, but I would prefer a less clumsy way.

Is it possible?

We use OpenEdge AppBuilder 11.6.4

Thanks in advance.
 
Last edited:

Osborne

Active Member
You can do something like this:

Code:
DEFINE VARIABLE vLabel AS HANDLE NO-UNDO.

vLabel = FILL-IN-1:SIDE-LABEL-HANDLE.
vLabel:BGCOLOR = 10.

Does this solve?
 
Top