2010-11-19 4 views

답변

1
당신은 아마 모두 ANSIUNICODE 응용 프로그램 빌드를 지원하기 위해 _T 매크로를 사용할 필요가

:

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