J
Jim Pockmire
The following code will open up a 2nd instance of MSAccess.
Dim oApp As Object
Set oApp = CreateObject("Access.Application")
oApp.Visible = True
1. How can I open a specified mdb after starting the 2nd instance?
2. What if I do not know the exact path to the mdb above, only that it
resides in the same folder as the mdb in the 1st instance?
Dim oApp As Object
Set oApp = CreateObject("Access.Application")
oApp.Visible = True
1. How can I open a specified mdb after starting the 2nd instance?
2. What if I do not know the exact path to the mdb above, only that it
resides in the same folder as the mdb in the 1st instance?