Click here to Skip to main content
15,891,409 members
Articles / Desktop Programming / MFC
Article

Adding Most Recently Used (MRU) Files to an SDI/MDI Application

Rate me:
Please Sign up or sign in to vote.
4.65/5 (11 votes)
26 Mar 2003 79.6K   1.9K   22   8
Adding Most Recently Used (MRU) files to an SDI/MDI application tutorial.

Sample Image - most_recent_used.gif

Introduction

The Most Recently Used (MRU) files list is standard feature of most Windows applications. This article describes how to add (MRU) support to Windows (SDI/MDI) application using the class CRecentFileList. CRecentFileList is a CObject class that supports control of the most recently used (MRU) file list. Files can be added to or deleted from the MRU file list, the file list can be read from or written to the registry or an .INI file, and the menu displaying the MRU file list can be updated.

Using the code

Adding MRU to MFC SDI or MDI is actually not very difficult. I just add AddToRecentFileList(LPCTSTR lpszPathName) to CDocument derived class which calls the add the path name to CWinApp's CRecentFileList (m_pRecentFileList). I use SDI for this demo.

1. Iinclude afxadv.h to stdafx.h. This contains the class CRecentFileList.

#include <afxadv.h>

2. Add AddToRecentFileList to CDocument derived class and use this function during opening and saving the document.

void CCMRUTestDoc::AddToRecentFileList(LPCTSTR lpszPathName)
{
    ((CCMRUTestApp*)AfxGetApp())->AddToRecentFileList(lpszPathName);
}

BOOL CCMRUTestDoc::OnOpenDocument(LPCTSTR lpszPathName) 
{
    if (!CDocument::OnOpenDocument(lpszPathName))
        return FALSE;
    
    // Add to MRU file list
    AddToRecentFileList(lpszPathName);
    
    return TRUE;
}

BOOL CCMRUTestDoc::OnSaveDocument(LPCTSTR lpszPathName) 
{
    // Add to MRU file list
    AddToRecentFileList(lpszPathName);
    
    return CDocument::OnSaveDocument(lpszPathName);
}

3 Add AddToRecentFileList for CWinApp derived class.

void CCMRUTestApp::AddToRecentFileList(LPCTSTR lpszPathName)
{
    // lpszPathName will be added to the top of the MRU list. 
    // If lpszPathName already exists in the MRU list, it will be moved to the top
    if (m_pRecentFileList != NULL)    {
        m_pRecentFileList->Add(lpszPathName);
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice Tool Pin
valdo_gmail9-Oct-06 21:51
valdo_gmail9-Oct-06 21:51 
GeneralNo action when clicking Pin
Anonymous9-Dec-04 16:05
Anonymous9-Dec-04 16:05 
GeneralRe: No action when clicking Pin
Ramil C. Matira10-Dec-04 23:02
Ramil C. Matira10-Dec-04 23:02 
Generalelaborate Pin
aslamshikoh25-Jul-04 21:56
aslamshikoh25-Jul-04 21:56 
GeneralRe: elaborate Pin
Ramil C. Matira27-Jul-04 1:06
Ramil C. Matira27-Jul-04 1:06 
Generalthank,it's very useful for me. Pin
ZhuoGuangSheng7-Jul-03 19:10
ZhuoGuangSheng7-Jul-03 19:10 
GeneralHmmm Pin
Roger Allen28-Mar-03 0:11
Roger Allen28-Mar-03 0:11 
GeneralRe: Hmmm Pin
Habeeballah Hasnoddin15-Feb-10 9:00
Habeeballah Hasnoddin15-Feb-10 9:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.