次の方法で共有


CWinApp::AddToRecentFileList

更新 : 2007 年 11 月

MRU ファイル リストに lpszPathName を追加します。

virtual void AddToRecentFileList(
   LPCTSTR lpszPathName 
);

パラメータ

  • lpszPathName
    ファイルのパス。

解説

このメンバ関数を呼び出す前に、LoadStdProfileSettings メンバ関数を呼び出して現在の MRU ファイル リストを読み込む必要があります。

フレームワークは、ファイルを開くとき、または新しいファイル名で保存するために [名前を付けて保存] コマンドを実行するときに、この関数を呼び出します。

使用例

// This adds the pathname c:\temp\test.doc to the top of
// the most recently used (MRU) list in the File menu.
AfxGetApp()->AddToRecentFileList(_T("c:\\temp\\test.doc"));

必要条件

ヘッダー : afxwin.h

参照

参照

CWinApp クラス

階層図

CWinApp::LoadStdProfileSettings

その他の技術情報

CWinApp のメンバ