Important alert: (current site time 7/15/2013 5:22:21 PM EDT)
 

VB icon

Add the '*' flag to the caption of vw when modfd

Email
Submitted on: 10/23/1999
By: Found on the World Wide Web 
Level: Beginner
User Rating: By 1 Users
Compatibility: C++ (general)
Views: 10203
 
     To display the '*' in the caption of the view associated with a modified document, override CDocument's virtual SetModifiedFlag() function in your document class as follows. http://stingsoft.com/mfc_faq/chapter8/chapter8_3.htm
 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
				
//**************************************
// Name: Add the '*' flag to the caption of vw when modfd
// Description:To display the '*' in the caption of the view associated with a modified document, override CDocument's virtual SetModifiedFlag() function in your document class as follows. http://stingsoft.com/mfc_faq/chapter8/chapter8_3.htm
// By: Found on the World Wide Web
//**************************************

void CTest2Doc::SetModifiedFlag(BOOL bModified)
{
CString strTitle = GetTitle();
CString strDirtyFlag = " *"; // note space before the '*' 
// so we don't break Save As dialog
if (!IsModified() && bModified)
{
SetTitle(strTitle + strDirtyFlag);
}
else if ( IsModified() && !bModified )
{
int nTitleLength = strTitle.GetLength();
int nDirtyLength = strDirtyFlag.GetLength();
SetTitle( strTitle.Left(nTitleLength - nDirtyLength) );
}
UpdateFrameCounts();
CDocument::SetModifiedFlag(bModified);
}


Other 162 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

11/8/2008 5:35:07 AM

good job boy..
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.