I am trying to open another database so it can take some specific action, and then close the current database while it's working. I'm using...



Dim accApp As Access.Application
Set accApp = New Access.Application

accApp.OpenCurrentDatabase (strNewPathname)
accApp.Visible = True

Docmd.Quit

This opens the other database just fine. However, it waits until the other database is closed before it executes the Docmd.Quit instruction. Is there any way I can just open the other database and continue processing without waiting for it?

Thanks, Eddie