Set Background color in a MENU-ITEM

ezequiel

Member
Hello, I'm tryng to set a differnet color for a dynamic menu-item.

Some like this:

CREATE MENU-ITEM "MenuName"
ASSIGN PARENT = H-parent[ Nivel-Act ]
LABEL = "Etiqueta"
PRIVATE-DATA = "Programa"
ACCELERATOR = admopcion.TECLA-ACELERADORA
NAME = "NO"
BGCOLOR = 14
TRIGGERS:
ON CHOOSE
DO:
RUN PROCESA( SELF:PRIVATE-DATA ).
END.
END TRIGGERS.


It doesn't work; do anybody know if that is possible?

The user needs to remember to always check this option in his menu, and wants to see it with another color or font.


Thanks!
 
Hi ezequiel,

it isn't possible to give a background color to a menu-item.
The BGColor attribute is ignored in Character interfaces and in Windows.
 
Back
Top