I created a dialog using MSVC++ resource editor (ID: IDC_DRAWING_AREA).
Then I have this code:

//Get a handle to IDC_DRAWING_AREA window
hDwgArea = CreateDialog(hInstance,
MAKEINTRESOURCE(IDC_DRAWING_AREA),
hWindows[3], NULL);


I want to change the background of IDC_DRAWING_AREA from its default color to WHITE. Is it doable?