Only through windows own customisation settings so far as I'm aware
There are most likely some funky custom control available but I don't reckon the standard one is that flexible. Hopefully for you, I'm wrong but if it's certainly not one of those simple things.
You can change the color of the whole box with a little VBA code in the OnGotFocus and OnLostFocus events. If your combo box is named MyCombo then in the OnGotFocus put:
MyCombo.BackColor = vbYellow ' or whatever color
in the OnLostFocus event put:
MyCombo.BackColor = vbWhite
Or you can use Access colors like you see in the property sheets (numbers).
Now, if you want to customize the color just a SPECIFIC list item in the box, you got me... but Access does that ANYWAY when you click on it!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.