Click here to Skip to main content
Click here to Skip to main content

Closing unused MDI documents with 1 line of code

By , 1 Dec 1999
 

This code closes the default "blank" document when an existing file is opened in a MFC MDI application (This behaviour can also be seen in Microsoft's Word and Excel).

It works for files opened from File->Open... menu option and files opened from the MRU (most-recently-used) list.

Best of all, it only requires adding one line of code to your application:

#include "CloseUnusedDocs.h"  // STEP #1: INCLUDE HEADER FILE
//
//
//
BOOL CYourDoc::OnOpenDocument(LPCTSTR lpszPathName) 
{
  if (!CDocument::OnOpenDocument(lpszPathName))
    return FALSE;        
  
  CCloseUnusedDocs::close_unused_documents(this); // STEP #2: INSERT THIS LINE
    
  return TRUE;
} 

The algorithm for the code is : loop through all of the documents (via all of the document-templates) and close the ones that match the criteria of:

  1. NOT previously saved ( CDocument::GetPathName() is empty), AND
  2. NOT Modified ( CDocument::IsModified() is zero ) AND
  3. NOT the document we are in the process of opening (the "this" pointer in the code above)

For more information you can look at the code (it's quite short, and fairly well commented).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Warren Stevens
Software Developer (Senior)
Canada Canada
Member
www.IconsReview.com[^]
Huge list of stock icon collections (both free and commercial)
 
The picture is from September 2006, after picking up a rental car at the airport in Denver, Colorado. I'm smiling in the picture, because I have yet to come to the realization that I just wasted 400 bucks ( because you don't really need a car in downtown Denver - you can just walk everywhere).

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalthe list is no more correctsussdeliu224 Aug '02 - 1:30 
GeneralVia CWinApp::InitInstance()memberSeby19 Dec '01 - 6:40 
GeneralRe: Via CWinApp::InitInstance()memberWarren Stevens19 Dec '01 - 10:57 
GeneralRe: Via CWinApp::InitInstance()memberDuane13 Apr '02 - 16:26 
GeneralCouldn't resistmemberNorm Almond1 Sep '01 - 1:16 
Generalvery deceptive...memberyeahRight7 Aug '01 - 8:20 
GeneralRe: very deceptive...memberWarren Stevens7 Aug '01 - 8:31 
GeneralRe: very deceptive...memberNish [BusterBoy]28 Nov '01 - 5:57 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 2 Dec 1999
Article Copyright 1999 by Warren Stevens
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid