Question:
Can I change the field’s background and text colors in E3Browser via scripts?
Solution:
Yes. To change the text’s color, you must attribute the new color to the Field‘s Color property.
Example: Screen.Item(“E3Browser1”).Fields.Item(“Area”).Color = RGB(255, 0, 0)
To change a field’s or column’ background color, you must attribute the new color to the Field‘s BkColor property.
Example: Screen.Item(“E3Browser1”).Fields.Item(“Area”).BkColor = RGB(255, 0, 0)