程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> VC >> 關於VC++ >> VC保存文件的參考代碼

VC保存文件的參考代碼

編輯:關於VC++

void CDiaryDlg::OnButtonSave()
{
// TODO: Add your control notification handler code here
// 這種用bSave的方式來判斷是否保存過,這樣不好,待考慮。
// if (!bSave)
{
int iYear = m_cMonthView.GetYear();
int iMonth = m_cMonthView.GetMonth();
int iDay = m_cMonthView.GetDay();
CString sFileName;
sFileName.Format("%d-%d-%d.txt", iYear, iMonth, iDay);
CFileDialog dlg(FALSE, "txt", sFileName,
OFN_OVERWRITEPROMPT|OFN_HIDEREADONLY,
"文本文件(*.txt)|*.txt||", this);
dlg.m_ofn.lpstrTitle = _T("保存日記文件");
if (dlg.DoModal() == IDOK)
{
// 實現存盤
CString fileName = dlg.GetPathName();
CFile file(fileName, CFile::modeCreate|CFile::modeReadWrite|CFile::shareExclusive);
CArchive ar(&file, CArchive::store|CArchive::bNoFlushOnDelete);
UpdateData(TRUE);
ar<<m_sComment;
ar.Close();
bSave = TRUE;
m_sFileName = fileName;
}
}
/*
else
{
CFile file(m_sFileName, CFile::modeCreate|CFile::modeReadWrite|CFile::shareExclusive);
CArchive ar(&file, CArchive::store|CArchive::bNoFlushOnDelete);
UpdateData(TRUE);
ar<<m_sComment;
ar.Close();
}
*/
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved