青 青衣 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-08 #2 窗口例如CDlg; 句柄为CDlg.m_hWnd; 控件 例如ID为IDC_COMBO2 的 CComboBox控件 CComboBox* m_combox=(CComboBox*)GetDlgItem(IDC_COMBO2); HWND hwnd=m_combox->m_hWnd;
窗口例如CDlg; 句柄为CDlg.m_hWnd; 控件 例如ID为IDC_COMBO2 的 CComboBox控件 CComboBox* m_combox=(CComboBox*)GetDlgItem(IDC_COMBO2); HWND hwnd=m_combox->m_hWnd;
G Gboy Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-08 #4 GetDlgItem(IDC_BUTTON_CLOSE)->m_hWnd
青 青方 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-17 #6 VC的Sample里有Spy的源程序,建议你看看, 一般用FindWindow就可以找到窗口的句柄。还可以用EnumWindows来得到一个窗体下所有子 窗体(包括按钮等)的句柄。