void CDeletethespecifiedcharacter151Dlg::OnBnClickedButton1()
{
// TODO: 在此添加控件通知处理程序代码
CString strtxt, str1, str2, strres;
int istart, iend;
CEdit m_text;//此处添加的m_text变量
m_text.GetWindowText(strtxt);//此处添加的m_text变量
m_text.GetSel(istart, iend);//此处添加的m_text变量,程序报错无法读取内存,该怎样添加CEdit 变量?
if (istart==iend)
{
return;
};
str1 = strtxt.Left(istart);
if (iend>=strtxt.GetLength())
{
str2 = "";
}
else
{
str2 = strtxt.Right(strtxt.GetLength()-iend);
}
strres += str1;
strres += str2;
m_text.SetWindowText(strres);
}
慕的地6079101
慕无忌2961384
慕无忌2961384
相关分类