如何在Visual C ++中设置文本框的值? 我一直在尝试以下但是行strTemp.Format(“%d”,nNbr);不编译 感谢
int nNbr = 5;
CString strTemp;
strTemp.Format("%d", nNbr);
textBox.SetWindowTextW(strTemp);
答案 0 :(得分:1)
您可能需要使用_T宏来支持应用的ANSI
和UNICODE
版本:
int nNbr = 5;
CString strTemp;
strTemp.Format(_T("%d"), nNbr);
textBox.SetWindowText(strTemp);