I'm trying to give a color for 1 single HWND in my win32 api.. So far I managed to give color for txt/background but that's for all the static HWNDs i have as follow:
I know it gets applied to wParam which is the whole thing.. But I want to apply it to 1 single HWND called (txtview1) not to txtview2 too I tried: HDC hdcStatic = GetDC(txtview1) but it doesn't take affect, any hint is much appreciated.