在vs2010中保存编辑框中的内容到文档
在vs2010的MFC中,设置了一个按键,按下后可将编辑框中的内容以文档的形式保存,但是我的文档里保存的只有编辑框中内容的前半部分,我的代码如下,应该怎么改?void CCommTestDlg::OnBnClickedButtonSave()
{
// TODO: 在此添加控件通知处理程序代码
CFile file;
file.Open(TEXT("result.txt"),CFile::modeCreate|CFile::modeWrite);
CString strValue;
GetDlgItemText(IDC_EDIT2,strValue);//此处为编辑框的内容
file.Write(strValue,strValue.GetLength());
file.Close();
AfxMessageBox(_T("保存成功!"));
}