я не могу изменить имена на картинке ...
я хочу изменить названия названий для телефонной книги и названия новых новых ... см. рисунок.
CMultiDocTemplate* pDocTemplatePersons;
pDocTemplatePersons = new CMultiDocTemplate(IDR_PhoneBookTYPE,
RUNTIME_CLASS(CPersonsDocument),
RUNTIME_CLASS(CChildFrame), // custom MDI child frame
RUNTIME_CLASS(CPersonsView)
);
if (!pDocTemplatePersons)
return FALSE;
AddDocTemplate(pDocTemplatePersons);
CMultiDocTemplate* pDocTemplate;
pDocTemplate = new CMultiDocTemplate(IDR_PhoneBookTYPE,
RUNTIME_CLASS(CCitiesDocument),
RUNTIME_CLASS(CChildFrame), // custom MDI child frame
RUNTIME_CLASS(CCitiesView)
);
if (!pDocTemplate)
return FALSE;
AddDocTemplate(pDocTemplate);
CMultiDocTemplate* pDocPhoneTypes;
pDocPhoneTypes = new CMultiDocTemplate(IDR_PhoneBookTYPE,
RUNTIME_CLASS(CPhoneTypesDocument),
RUNTIME_CLASS(CChildFrame), // custom MDI child frame
RUNTIME_CLASS(CPhoneTypesView)
);
if (!pDocPhoneTypes)
return FALSE;
AddDocTemplate(pDocPhoneTypes);