if you want to change it, use
1. PreCreateWindow
http://support.microsoft.com/support/kb/articles/Q99/1/82.ASP2. OnUpdateFrameTitle
void CMyMDIChild::OnUpdateFrameTitle(BOOL bAddToTitle)
{
// update the parent window first
GetMDIFrame()->OnUpdateFrameTitle(bAddToTitle); if ((GetStyle() & FWS_ADDTOTITLE) == 0)
return;     // leave child window alone! CDocument* pDocument = GetActiveDocument();
if (bAddToTitle && pDocument != NULL)
{
TCHAR szText[256];
lstrcpy(szText, pDocument->GetTitle());
CString sAdd;
sAdd.LoadString(IDS_MYWINDOWTITLE);
lstrcat(szText, sAdd); // set title if changed, but don't remove completely
AfxSetWindowText(m_hWnd, szText);
}
}