阅读:2562回复:2
怎么用SetWindowText()输出HANDLE类型的变量?
GetDlgItem(IDC_DATA)->SetWindowText((LPTSTR)handle)这样不行啊。
该怎么办哪??? |
|
沙发#
发布于:2005-04-25 09:27
CString strHandle;
strHandle.Format( \"%d\", handle ); GetDlgItem(IDC_DATA)->SetWindowText( strHandle ); |
|
|
板凳#
发布于:2005-04-25 09:59
搞定
多谢援手!! |
|