I had created a ComboBoxEx using the WINAPI CreateWindowEx. The class is WC_COMBOBOXEX. The ComboBox is created properly. However, I need to change the color of Dropdown List. The default color is white, I need it to be just as the Window client area color.
I tried to hook on WM_CTLCOLORLISTBOX message, but it didn't work because the ListBox of the ComboBox is already created and colored. I need to change the color before creation of the ListBox.
So, I know how to do it but what I don't know is on which event.