Zeroanarchy
Technical User
Thanks for taking the time to look over this.
What I am trying to do here is close the VB program and run an access program, the problem I am having with this code is:
It opens the database ok, but it then automaticly minimizes it then after about .2sec it automaticly closes it. What I am trying to have happen is close the exe file and keep the access program open at maximize.
Private Sub sampleLabel_Click(Index As Integer)
Dim applAccess As Access.Application
Set applAccess = New Access.Application
applAccess.OpenCurrentDatabase "D:\sbs\Current Programs\Service Ware\Servic~2.mde", True
applAccess.DoCmd.OpenForm ("autoexec"
Unload me
End Sub
Any ideas, thanks
Zero Anarchy
What I am trying to do here is close the VB program and run an access program, the problem I am having with this code is:
It opens the database ok, but it then automaticly minimizes it then after about .2sec it automaticly closes it. What I am trying to have happen is close the exe file and keep the access program open at maximize.
Private Sub sampleLabel_Click(Index As Integer)
Dim applAccess As Access.Application
Set applAccess = New Access.Application
applAccess.OpenCurrentDatabase "D:\sbs\Current Programs\Service Ware\Servic~2.mde", True
applAccess.DoCmd.OpenForm ("autoexec"
Unload me
End Sub
Any ideas, thanks
Zero Anarchy