Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Zero or One Document Interface (ZODI)

0.00/5 (No votes)
25 Feb 2004 1  
This article describes how to create a single-document application using multi-document interface. You may have zero or one document at a time.

What's this?

This article describes how to create a single-document application using multi-document interface. You may have zero or one document at a time.

I've written a CMultiDocTemplate - derived class CZoDocTemplate. It overrides OpenDocumentFile function. OpenDocumentFile works like CSingleDocTemplate one. It reinitializes created document instead of creating one more document. If there is no opened document, new document is created like in MDI case. If you create several document templates, you will have maximum one document per each template.

To create your own ZODI application

  1. Create MDI application with AppWizard.
  2. Add ZoDocTemplate.h & ZoDocTemplate.cpp in your project, named <your app>.
  3. Include ZoDocTemplate.h in <your app>.cpp.
  4. In InitInstance function, replace
        CMultiDocTemplate* pDocTemplate;
        pDocTemplate = new CMultiDocTemplate(...);

    with

        CZoDocTemplate* pDocTemplate;
        pDocTemplate = new CZoDocTemplate(...);

Similar Article

Here is a similar article: Single View in MultiDoc-Application. I present another more simpler way of "Single View in MultiDoc-Application" implementation. In ZODI, the existing document is reinitialized like in SDI case.

History

Date posted: February 18, 2004.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here