回 帖 发 新 帖 刷新版面

主题:告诉我错在什么地方啊

void CComboListDig::OnCloseupCombo()
{
    CString szChoice;
    CString szResult;
    int nChoice;
    m_combolist.GetWindowText(szChoice);
    if (nChoice !=CB_ERR)
    {
        m_combolist.GetLBText(nChoice,szChoice);
        szResult="Closing after selecting"+szChoice;
    }
    else if (szChoice.IsEmpty()==TRUE)
    { szResult = "No Choice selectd";}
    else if (m_combolist.FindStringExact(-1,szChoice)!=CB_ERR)
    { szResult="Closeing after selecting"+szChoice;}
    else
    {
        m_combolist.AddString(szChoice);
    szResult = "adding"+szChoice +"to List";
    }
    CWnd * pWnd=GetDigItem(IDC_RESULT);
        ASSERT(pWnd);
    if (pWnd)
    pWnd->SetWindowText(szResult);
                  
// TODO: Add your control notification handler code here}
}
这段代码谁能帮我改啊[em7][em10]

回复列表 (共2个回复)

沙发

站务讨论区不应该问这个问题,所以我觉得管理员应当将这个贴子转移到相应的论坛中去。

我来回复

您尚未登录,请登录后再回复。点此登录或注册