Link to home
Start Free TrialLog in
Avatar of SGyves
SGyves

asked on

Save Before Close

I thought this was default behavior for any SDI app...but it is not happening in mine. Before a user closes an application...I want it to ask them if they want to save changes to the current document...and only if it has been modified. How is this done?
ASKER CERTIFIED SOLUTION
Avatar of KurtVon
KurtVon

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jkr
You'd call the 'IsModified()' member of your 'CDocument' derived class and, dpending of the modified state, prompt the user.
Avatar of SGyves
SGyves

ASKER

Then from the document...how do I call the save routine
CDocument::SaveModified() prompts the user if teh document is set to modified.

Hope this helps.
Avatar of SGyves

ASKER

So it looks like as long as you set the flag...the save routine gets called
Easiest way is to....handle WM_CLOSE message..
in the class wizard...in the MainFrame...handle WM_CLOSE message...

MFC adds the following function...
everytime the user closes the application control comes here...

void CMainFrame::OnClose()
{
      
      CFrameWnd::OnClose();//If u comment this line the application does not close..
}

Now u can modify it as...
void CMainFrame::OnClose()
{
      if(m_bNotSaved)
                      CFrameWnd::OnClose();                  
                else
                //Call u r Save routine here
                PromptForSave() ;
               CFrameWnd::OnClose();
}
Luv ..
Jd
               

}


Unless you override the save routine, the framework automatically checks the modified status, prompts if the document is modified, and then serializes if the user chooses "yes."

So all you need to do is set the modified flag when the document is modified (and it is okay to call this multiple times, so you don't even need to check it) and override the ::Serialize function to write out the ocument.  MFC should handle everything else for you.

Hope this helps.