How to create a CMultiDocTemplate based window in Visual C++ (113257)



The information in this article applies to:

  • The Microsoft Foundation Classes (MFC), when used with:
    • Microsoft Visual C++ for Windows, 16-bit edition 1.0
    • Microsoft Visual C++ for Windows, 16-bit edition 1.5
    • Microsoft Visual C++ for Windows, 16-bit edition 1.51
    • Microsoft Visual C++ for Windows, 16-bit edition 1.52
    • Microsoft Visual C++, 32-bit Editions 1.0
    • Microsoft Visual C++, 32-bit Editions 2.0
    • Microsoft Visual C++, 32-bit Editions 2.1
    • Microsoft Visual C++, 32-bit Editions 4.0
    • Microsoft Visual C++, 32-bit Editions 4.1
    • Microsoft Visual C++, 32-bit Enterprise Edition 4.2
    • Microsoft Visual C++, 32-bit Professional Edition 4.2
    • Microsoft Visual C++, 32-bit Enterprise Edition 5.0
    • Microsoft Visual C++, 32-bit Professional Edition 5.0
    • Microsoft Visual C++, 32-bit Enterprise Edition 6.0
    • Microsoft Visual C++, 32-bit Professional Edition 6.0
    • Microsoft Visual C++, 32-bit Learning Edition 6.0

This article was previously published under Q113257

SUMMARY

It is sometimes desirable to create a CMultiDocTemplate based window (in other words, a CFrame/CDocument/CView combination) without using the mechanism provided by CWinApp::OnFileNew.

For example, if the program has multiple document templates, CWinApp::OnFileNew will prompt the user with a dialog box asking which type of document to open. The programmer may already know which type of CMultiDocTemplate to use, and therefore may not want to prompt the user because it would be inappropriate in the given context of the application.

MORE INFORMATION

Assuming the application was originally created with AppWizard, the undocumented CMultiDocTemplate::OpenDocumentFile function can be used to create a new CMultiDocTemplate based window. There are several steps involved:

  1. Add a CMultiDocTemplate pointer to your CWinApp derived class:
          class CMyApp : public CWinApp
          {
            ...
    
           public:
            CMultiDocTemplate* m_pDocTemplate;
    
            ...
    
          }
    						
    NOTE: If you plan to use multiple document types, you must create a CMultiDocTemplate pointer member variable for each document type.
  2. In the call to CWinApp::InitInstance, remove the creation of the CMultiDocTemplate from the call to AddDocTemplate. Set the pointer to point to the new CMultiDocTemplate. Use the pointer to call AddDocTemplate:
          BOOL CMyApp::InitInstance()
          {
            ...
    
            m_pDocTemplate = new CMultiDocTemplate(IDR_TEXTTYPE,
                                          RUNTIME_CLASS(CMyDoc),
                                          RUNTIME_CLASS(CMDIChildWnd),
                                          RUNTIME_CLASS(CMyView));
    
            AddDocTemplate(m_pDocTemplate);
    
            ...
    
          }
    						
  3. Use the pointer to call CMultiDocTemplate::OpenDocumentFile with a NULL parameter to create the new window. For this example, assume there is a button in a CView window. In the BN_CLICKED handler for the button, we want to create a window based on m_pDocTemplate:
          void CMyView::OnNewWindowButtonClicked()
          {
              CMyApp* pApp = (CMyApp*)AfxGetApp();
              pApp->m_pDocTemplate->OpenDocumentFile(NULL);
          }
    						
    This same technique could be used to create a CSingleDocTemplate based window in a Single Document Interface (SDI) application. However, it is not necessary. Because there is only one document template for the application, calling OnFileNew() will create the new window without prompting the user for the type of document.

Modification Type:MajorLast Reviewed:6/2/2005
Keywords:kbinfo kbDocView kbhowto KB113257 kbAudDeveloper