如何在c ++中的MessageBox()?中显示数值

时间:2012-04-24 13:15:29

标签: c++ mfc

我需要在MessageBox中将屏幕分辨率像素显示为输出。我怎么能这样做?

1 个答案:

答案 0 :(得分:3)

CString msg;
msg.Format(_T("%d"), number);
AfxMessageBox(msg);