opening an access apl. from access apl.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have an access application and i need to add ability to open another access
application (by Botton).

i tried Run App. it didn't work

any idea

thanks

avner
 
Do you want to have the new Access application be a "child" of the current
app. What this means is that the Second instance of MSAcces would close when
the app reference goes "out of scope" in the first application.

To create an access app that is as described above:

Public Sub foo()
Dim appAccess As Access.Application
Set appAccess = New Access.Application
With appAccess
.OpenCurrentDatabase ....Put some more code here to do what you want
<<<<
.CloseCurrentDatabase ...
End With
appAccess.Close
Set appAccess = Nothing
End Sub

.... Or ...

If you what to spawn an new independant (sortof) MSAccess application ...
check out the following:

Shell()
Application.Followhyperlink

Hope the helps ...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top