Получение дескриптора
У меня возникла проблема, как получить HWND компонента диалогового окна, созданного в редакторе ресурсов, т. к. одного ID нехватает.
Спасибо.
-----------------------
The GetDlgItem function retrieves the handle of a control in the specified dialog box.
HWND GetDlgItem(
HWND hDlg, // handle of dialog box
int nIDDlgItem // identifier of control
);
Parameters
hDlg - Identifies the dialog box that contains the control.
nIDDlgItem - Specifies the identifier of the control to be retrieved.
Return Values:
If the function succeeds, the return value is the window handle of the given control.
If the function fails, the return value is NULL, indicating an invalid dialog box handle or a nonexistent control.