2008年10月28日 星期二

將數字在MSG BOX中顯示

int i = 100;
char str[10]="";
_itoa(i, str, 10);
CString GetIntStr(str);
MessageBox(NULL, GetIntStr, L"將數字在MSG BOX中顯示", MB_OK);

沒有留言: