设你的文本框ID是IDC_STATIC_VALUE
CString Result;
CFile File;
GetDlgItemText(IDC_STATIC_VALUE,Result);
Result+="\x0d\x0a";//加个回车便于查看
if(File.Open("C:\\Result.txt",CFile::modeCreate|CFile::modeNoTruncate|CFile::modeWrite))
{
File.SeekToEnd();
File.Write(Result,Result.GetLength());
File.Close();
}
else AfxMessageBox("文件打开失败");
比如文本框控件的值是 CString str;
UpDateData(true);
fstream file("file.dat",ios::out|ios::binary|ios::app);
if(!file)
{
AfxMessageBox("文件错误!!");
}
file<