Share via


CWinApp::AddToRecentFileList

virtualvoidAddToRecentFileList(LPCTSTRlpszPathName**);**

Parameters

lpszPathName

The path of the file.

Remarks

Call this member function to add lpszPathName to the MRU file list. 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("c:\\temp\\test.doc");

CWinApp OverviewClass MembersHierarchy Chart

See Also   CWinApp::LoadStdProfileSettings