Macros/Modules in another database

B

BlockNinja

Is it possible to find out and manipulate the macros/modules of another
database? I know that you can do it with the db you're current using.

What I'd like to do is make a utility in access to help clean up / format
code and insert comments into modules programmatically in another access
database.
 
J

JimS

VBA doesn't care if it's the current database or another (even a non-Access
database). Just use ADO or ADOX and specify the other database in your
connection string...
 
Top