VS 2008 MFC Feature Pack - How do I
问题 I have an application I'm writing using the MFC Feature pack. It uses Document/View. Since these classes are derived from "normal" MFC classes, these questions may not be Feature Pack specific. When a change is made, I add an asterisk * to the name on the tab, and the word (modified) to the main window title using the following code: tabval = "Report_" + pDoc->rptData.reportId.Strip(); winval = tabval; if (changed) { tabval += " *"; winval += " (modified)"; } frame->SetTitle(tabval); frame-