int iChars = GetwindowTextLength (GetDlgitem(handle,ID))+1; // Room for 'char* MWC::System::TextBox::GetText(){ int len = SendMessage(handle,WM_GETTEXTLENGTH,0); char* buffer = new char[len]; SendMessage(handle,WM_GETTEXT,(WParaM)len+1,(LParaM)buffer); return buffer;}'char* pstrText;pstrText = (char*) malloc (sizeof(char)*iChars);if (pstrText != NulL) { //GetwindowText (GetDlgitem(handle,ID),pstrText,iChars); GetDlgitemText(handle,ID,iChars);}return pstrText; // Memory gets freed after it returns
工作范例:
SendMessage(handle,(WParaM)len,(LParaM)buffer);解决方法 wParam参数在这里是错误的:
由于零终止符,您应该传递len 1.
总结以上是内存溢出为你收集整理的c – 从编辑控件中获取文本(Pure Win32 API)全部内容,希望文章能够帮你解决c – 从编辑控件中获取文本(Pure Win32 API)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)