I have 10 small databases. At present, I have another database which serves as a platform to launch the 10 databases. I have a graphic for each database and posted an Event Procedure for each graphic to launch the respective database. For example ...
Dim accapp As Access.Application
Set accapp = New Access.Application
accapp.OpenCurrentDatabase ("M:\MPF\MPF_Mgmt_Info_System\SignInPlus\SignInPlus.accdb")
accapp.Visible = True
Is this the best way to centrally locate and launch multiple databases or is there are smarter way? Thanks
Dim accapp As Access.Application
Set accapp = New Access.Application
accapp.OpenCurrentDatabase ("M:\MPF\MPF_Mgmt_Info_System\SignInPlus\SignInPlus.accdb")
accapp.Visible = True
Is this the best way to centrally locate and launch multiple databases or is there are smarter way? Thanks