Lines Matching refs:pWnd
749 HBRUSH properties_win::OnCtlColor(CDC *pDC, CWnd *pWnd, UINT nCtlColor) in OnCtlColor() argument
751 int nCtrlId = pWnd->GetDlgCtrlID(); in OnCtlColor()
753 HBRUSH hbr = CWnd::OnCtlColor(pDC, pWnd, nCtlColor); in OnCtlColor()
4690 CWnd *pWnd = GetDlgItem(ctrl_id); in OnTestMessage() local
4692 if (!pWnd) in OnTestMessage()
4698 GetClassName(pWnd->GetSafeHwnd(), class_name, MAX_PATH - 1); in OnTestMessage()
4707 ((CEdit *)pWnd)->SetWindowText(param2); in OnTestMessage()
4708 … SendMessage(WM_COMMAND, MAKEWPARAM(ctrl_id, EN_KILLFOCUS), (LPARAM)((CEdit *)pWnd)->m_hWnd); in OnTestMessage()
4712 ((CComboBox *)pWnd)->SelectString(-1, param2); in OnTestMessage()
4713 … SendMessage(WM_COMMAND, MAKEWPARAM(ctrl_id, CBN_SELCHANGE), (LPARAM)((CComboBox *)pWnd)->m_hWnd); in OnTestMessage()
4717 ((CButton *)pWnd)->SetCheck(_tstoi(param2)); in OnTestMessage()
4718 … SendMessage(WM_COMMAND, MAKEWPARAM(ctrl_id, BN_CLICKED), (LPARAM)((CButton *)pWnd)->m_hWnd); in OnTestMessage()