CWinApp::AddToRecentFileList
Call this member function to add lpszPathName to the MRU file list.
virtual void AddToRecentFileList(
LPCTSTR lpszPathName
);
Parameters
- lpszPathName
The path of the file.
Remarks
You should call the LoadStdProfileSettings member function to load the current MRU file list before you use this member function.
The framework calls this member function when it opens a file or executes the Save As command to save a file with a new name.
Example
// 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"));
Requirements
Header: afxwin.h