Hi,
I want to change the fill color of a combo box depending on the current displayMode. I wrote this code:
If( ddComboBox.DisplayMode = DisplayMode.Edit, RGBA(255, 255, 255, 1) , RGBA(217, 216, 216, 1))
But even though the display mode is now set to edit, fill is in the color RGBA(217, 216, 216, 1).
How can I solve this?