VC++ 如何把整形转成字符串

2024-11-09 04:47:03
推荐回答(1个)
回答(1):

CString csText;
csText.Format("%d",i);

myEdit->SetWindowText(csText);