Solved Open External Access Database

RevJeff

Registered User.
Local time
Today, 08:40
Joined
Sep 18, 2002
Messages
129
Is there a way of opening a second database using VBA from within the first database?

Thanks
 
Yes. Do you want to open it and let user have control or do you want code to do something with the db then close it?
 
Yes. Do you want to open it and let user have control or do you want code to do something with the db then close it?
Just open it and let the user have control.
 
Also to open the database using a new Access instance:
Code:
dim AccessApp as Access.Application
set AccessApp = createobject("Access.Application")
AccessApp.OpenCurrentDatabase "path to access database file"
 

Users who are viewing this thread

Back
Top Bottom