I'm trying to retrieve a handle to the window to
update it with the following call in the callback
procedure for my dialog box :
case WM_INITDIALOG:
hCtrlBlock = GetDlgItem (hDlg, IDC_PAINT) ;
But get the following error :
error C2065: 'IDC_PAINT' : undeclared identifier
I thought IDC_PAINT is a part of the API. Would
anyone know what I'm doing wrong?