> I'm tying to get a handle on the forms collection. If I have 5 forms
> in my application, why don't I get a message box for each of the
[quoted text clipped - 10 lines]
>
> End Sub

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Ok, that helps a bunch, but, is there a way to iterate through all the forms
in an application without them being open?
Thanks
B
> > I'm tying to get a handle on the forms collection. If I have 5 forms
> > in my application, why don't I get a message box for each of the
[quoted text clipped - 13 lines]
> The Forms collection only includes "open" forms. Similar is true of the Reports
> collection.
Rick Brandt - 24 Nov 2005 14:53 GMT
> Ok, that helps a bunch, but, is there a way to iterate through all
> the forms in an application without them being open?
CurrentDB.Containers("Forms").Documents(n).Name
Will return the form name of each form if n is substituted with a value from
zero to the number of forms minus 1, but you cannot use that to get at all the
same properties that the Forms collection does.

Signature
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com