次の方法で共有


CWinApp::AddToRecentFileList

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 のメンバー