点点滴滴

不积跬步,无以至千里;不积小流,无以成江海。

储备列表

  • 写文件(内容追加)

    1

    CString str; str.Format("%s\r\n",szMessage); CFile f("d:\\rr.txt",CFile::modeWrite|CFile::modeCreate|CFile::modeNoTruncate); f.SeekToEnd();//定位到文件尾,不覆盖原来的东西 f.Write(str.G

    soskp-yoours2007-04-20 19:47:41

    阅读更多
  • 非模态对话框退出

    2

    //非模态对话框退出void CInformation::PostNcDestroy(){ delete this; CDialog::PostNcDestroy();}void CInformation::OnCancel(){ DestroyWindow();}或者直接调用DestroyWindow

    soskp-yoours2007-04-20 19:46:43

    阅读更多