I am running a form and I need to run a module from an external database
Any ideas on how to call it?
Printable View
I am running a form and I need to run a module from an external database
Any ideas on how to call it?
Do you mean a module inside an access database? The only way I think that you can do it (although I've been wrong before) is to declare an Access object and open the database that way. You can reach the Module that way. You know like:
dim appAccess as new Application.Access with a reference to the Access object in your project.
ya I am running an mdb and I want to open the other mdb and run a module
I can't seem to get around the syntax :(