Try a control button "OpenDb"
The method of giving the path is only an example, it should not be "hard
wired in". The other database paths should really come from a table
Private Sub OpenDb_Click()
Dim objAcc As Object
Dim StrPath As String
StrPath = "E:\Phil Data\Access\Mdb 2010\Database3.accdb"
Set objAcc = CreateObject("Access.Application")
objAcc.OpenCurrentDatabase StrPath ' Opens another database
objAcc.UserControl = True
Application.Quit Quit ' Closes this database
End Sub
Probably you can have all 3 databases open, it depends on what they are
sharing. Data should be no problem, but in the unlikely event that they are
sharing referenced databases, there will be a problem.
You must have a big screen. Why do you want 3 databases open at the same
time?
Phil