Hi All,
Is there a way to retrieve window handle from a CDialog derived class (like CWnd::m_hWnd member) ?
Thanks
Hi All,
Is there a way to retrieve window handle from a CDialog derived class (like CWnd::m_hWnd member) ?
Thanks
HWND hWnd = GetSafeHwnd();
Should do the trick, but CDialog is itself derived from CWnd so m_hWnd would be accessable inside CDialog too