获取EDIT控件内容的长度
发布时间:2018年1月13日 作者:未知 查看次数:1027
首先调用int GetWindowTextLength( HWND hWnd // handle to window or control ); 获取长度,然后申请相应的空间,从而调用GetWindowText得到 //int length = GetWindowTextLength(GetDlgItem(hDlg,IDC_EDIT1)); int length = GetWindowTextLength(hEdit); //得到edit控件的文本长度 GetWindowText(hEdit, buffer , length ); //读取文本内容 //SendDlgItemMessage(hDlg,IDC_EDIT1,WM_GETTEXT,length ,(long)&buffer);
|
|
|