views:

326

answers:

1

Hi All,

Is there a way to retrieve window handle from a CDialog derived class (like CWnd::m_hWnd member) ?

Thanks

+3  A: 
HWND hWnd = GetSafeHwnd();

Should do the trick, but CDialog is itself derived from CWnd so m_hWnd would be accessable inside CDialog too

John Sibly