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
- Create MDI application with AppWizard.
- Add ZoDocTemplate.h & ZoDocTemplate.cpp in your project, named <your app>.
- Include ZoDocTemplate.h in <your app>.cpp.
- 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.
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