The "Default Instance" of a Form
The Application object refers to all of the forms in an Access .MDB via the Forms collection. This collection contains class modules that happen to be "automatically instanced" when the .MDB file is loaded.
The Object Browser's Project/Library field contains a project name referring to what is stored in the .MDB file. (This project name is stored in the Title field under File > Database Properties > Summary.) Here are found the default instances of all the Forms (and Reports) in the .MDB file. For example, a form called "Form1" in a file called DB1.MDB will been seen as Form_Form1.
The exact way to refer this instance in code when setting a property like Caption is:
DB1.Form_Form1.Caption = "Test"
The shorthand syntax is:
Form_Form1.Caption = "Test"
Properties set against the default instance of an object are not "saved" (they do not modify the underlying class module). Like any other object, they have a limited life.
Programming Multiple Copies of the Same Form (pg. 83)
Forms used in multiple-instance references must have modules to denote the variable storing the references to the instanced forms. In some cases you may have to set the HasModule property to True.
The general form for instancing a new form is:
Set frmInstanced = New Form_DefaultInstance
'
'...where Form_DefaultInstance is the class name
'of the instancing form.
'
With frmInstanced
.Filter = "<stuff>"
.FilterOn = True
<more stuff>
.Visible = True
End With
Note that the Visible property of the instanced form must be explicitly set to True. When multiple copies of a forms class are instanced, it is not possible to "find" the forms in the Forms collection without using something like a custom property or the Tag property to differentiate among forms.
Each time the New keyword is used above, a new form is added to the Forms collection. In the Unload event of the instancing form, set the variable referencing the instanced forms to Nothing. This event causes all of the Form_DefaultInstance forms in the Forms collection to close.
To keep instanced forms open when the instancing form closes, modify the form above by adding these lines of code after the With structure:
Set p_colForms As New Collection
p_colForms.Add frmInstanced
where p_colForms is a public variable defined in a module.