如何获取在编辑框中选择的文本内容

代码:

void CMy56Dlg::OnButton1()
{
CString str;m_edit.GetWindowText(str);              //第1步:获得编辑框内容(所有的内容)
int nfirst,nend;m_edit.GetSel(nfirst,nend);         //第2步:获得你在编辑框所选择的内容(包括初始位置与结束位置)

CString str1=str.Mid(nfirst,nend-nfirst);MessageBox("当前选择的内容是:"+str1); //第3步:根据第2步的位置获得内容
//备注:当然你也可以设置if(nfirst!=nend),屏蔽掉为空的情况(即没选择的情况)
}

你可能感兴趣的:(C++)