如何使用SetDlgItemText方法更新编辑控件?

时间:2016-01-13 19:41:10

标签: winforms mfc formatting

我正在尝试使用此代码。

short int R = 128
CString str;
str.Format(_T("Test %d",R));
SetDlgItemText(EDIT,str);

但是,我在Edit Control获得的输出是

Test 1955401504

Short int R转换不正确。你知道如何处理这个问题吗?

1 个答案:

答案 0 :(得分:2)

您关闭)

str.Format(_T("Test %d",R));

在错误的地方。

试试这个:

str.Format(_T("Test %d"),R);