All you have to do is create a class module that represents a document. Say its called CDocument. Now every time you make a new document all you do it this:
VB Code:
Dim Doc As New CDocument
You should probably also make a CDocuments that is a collection for CDocument. That allows you to access things by their Key and such. You can also store the key in the Tag property of the form that it is linked to so you always know which form goes with which instance of the class.
