Expand Minimize
This topic has not yet been rated - Rate this topic

CWinApp::AddDocTemplate

Call this member function to add a document template to the list of available document templates that the application maintains.

void AddDocTemplate( 
   CDocTemplate* pTemplate  
);
pTemplate

A pointer to the CDocTemplate to be added.

You should add all document templates to an application before you call RegisterShellFileTypes.

   // The following code is produced by the Application Wizard when you 
   // choose the MDI (multiple document interface) option.
	CMultiDocTemplate* pDocTemplate;
	pDocTemplate = new CMultiDocTemplate(IDR_MYTYPE,
		RUNTIME_CLASS(CMyDoc),
		RUNTIME_CLASS(CChildFrame), // custom MDI child frame
		RUNTIME_CLASS(CMyView));
	if (!pDocTemplate)
		return FALSE;
	AddDocTemplate(pDocTemplate);

Header: afxwin.h

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.