HWND h = 文件框窗口的hwnd
char buff[4096];
char tmpbuff[32];
buff[0] = 0;
for(int i = 0;i
itoa(tmpbuff,data[0],10);
strcat(buff,tmpbuff);
strcat(buff,',');
}
buff[strlen(buff)] = 0;
SetWindowText(h,buff,strlen(buff));
用函数_itot将数字转换为unicode串sz,然后
SetWindowText(GetDlgItem(hDlg,nID),sz);
hDlg是对话框句柄,nID是你静态文本框ID