I have a drop box with option of colors:
I want that every option should be in the color it describes. i.e. Aqua should appear in aqua color. Blue in blue color and so on.
Is it possible?
Code:
cboColorList.AddItem "Aqua"
cboColorList.AddItem "Blue"
cboColorList.AddItem "Bright Green"
cboColorList.AddItem "Dark Green"
cboColorList.AddItem "Indigo"
cboColorList.AddItem "Lavender"
cboColorList.AddItem "Orange"
cboColorList.AddItem "Red"
I want that every option should be in the color it describes. i.e. Aqua should appear in aqua color. Blue in blue color and so on.
Is it possible?