End Google Ads 201810 - BS.net 01 --> Hello,
How to change the background color of the dropdown list in combo box.
I changed the back ground color of dialog box in OnCtlColor() method, this changed the color of all the items on the dialog.

I could individual controls color but not able to change the dropdown list color of combo box.

Below is the code snippet.
if(pWnd->GetDlgCtrlID() == IDC_COMBO1)
{
HBRUSH g_bkcolor = CreateSolidBrush(RGB(255,255,255));
pDC->SetTextColor(RGB(0,0,0));
pDC->SetBkColor (RGB(255,255,255));
hbr = g_bkcolor;
return hbr;
}

If someone knows how to change the color please let me know.. Thank You..