Containers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello.
I'm using db.Container("Forms") to loop through the forms collection.
I also need to loop through Macros and Modules collection.
How can i do this?

Thanks
 
Luis said:
Hello.
I'm using db.Container("Forms") to loop through the forms collection.
I also need to loop through Macros and Modules collection.
How can i do this?

Macros are represented by the documents in the Scripts container, while
modules are are represented by documents in the Modules container.

Note that, in Access 2000 or later, you can use the AllForms, AllMacros,
and AllModules collections of the CurrentProject object to accomplish
the same thing.
 
Back
Top