Click here to Skip to main content
Licence CPOL
First Posted 1 Dec 1999
Views 66,883
Bookmarked 20 times

Closing unused MDI documents with 1 line of code

By | 1 Dec 1999 | Article
This code closes the default "blank" document when an existing file is opened in a MFC MDI application.

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalthe list is no more correct Pinsussdeliu21:30 24 Aug '02  
GeneralVia CWinApp::InitInstance() PinmemberSeby6:40 19 Dec '01  
GeneralRe: Via CWinApp::InitInstance() PinmemberWarren Stevens10:57 19 Dec '01  
GeneralRe: Via CWinApp::InitInstance() PinmemberDuane16:26 13 Apr '02  
GeneralCouldn't resist PinmemberNorm Almond1:16 1 Sep '01  
Generalvery deceptive... PinmemberyeahRight8:20 7 Aug '01  
GeneralRe: very deceptive... PinmemberWarren Stevens8:31 7 Aug '01  
GeneralRe: very deceptive... PinmemberNish [BusterBoy]5:57 28 Nov '01  

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

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

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