I working in a database. I want to open another database and go directly to a specific form (not the default form). How do I make this happen? Below is what I have so far.
Dim accapp As Access.Application
Dim appname As String
Set accapp = New Access.Application
appname = "M:\MPF\MPF_Mgmt_Info_System\SGLIPrepTool\SGLIPrepTool.accdb"
accapp.OpenCurrentDatabase (appname)
accapp.Visible = True
Dim accapp As Access.Application
Dim appname As String
Set accapp = New Access.Application
appname = "M:\MPF\MPF_Mgmt_Info_System\SGLIPrepTool\SGLIPrepTool.accdb"
accapp.OpenCurrentDatabase (appname)
accapp.Visible = True