如何在Visual C ++中设置文本框的值

时间:2010-11-19 06:27:43

标签: visual-c++ mfc

如何在Visual C ++中设置文本框的值? 我一直在尝试以下但是行strTemp.Format(“%d”,nNbr);不编译 感谢

        int nNbr = 5;
    CString strTemp;
    strTemp.Format("%d", nNbr);

    textBox.SetWindowTextW(strTemp);

1 个答案:

答案 0 :(得分:1)

您可能需要使用_T宏来支持应用的ANSIUNICODE版本:

int nNbr = 5;
CString strTemp;
strTemp.Format(_T("%d"), nNbr);
textBox.SetWindowText(strTemp);