Im new to windows programming and im trying to change the background color of a edit box doeing:
But it doesnt work. What i must do?Code:case WM_CTLCOLOREDIT:
HDC hdc;
hdc = GetDC (controls[0]) ;
SetBKColor(hdc,RGB(30,50,80));
ReleaseDC (controls[0], hdc) ;
break;
