mfc_ComboBox - 8BitsCoding/RobotMentor GitHub Wiki

콤보박스 입력막기

CWnd *p_combo = GetDlgItem(IDC_COMBO1);
HWND h_wnd = ::FindWindowEx(p_combo->m_hWnd, NULL, _T("Edit"), NULL);
if(NULL != h_wnd) ((CEdit *)CWnd::FromHandle(h_wnd))->SetReadOnly(TRUE);

참고사이트