Open Application

  • Thread starter Thread starter David W
  • Start date Start date
D

David W

Is there a way to open one application from within another.
I am wanting to open one particular application first(both are a mde), then
after a few things are entered, open the second application, then close the
first one.
Is this possible?
 
David said:
Is there a way to open one application from within another.
I am wanting to open one particular application first(both are a
mde), then after a few things are entered, open the second
application, then close the first one.
Is this possible?

Check help on the Shell command. With that you can run most any Windows
command. Use that to open the second Access app and then on the next line
of code...

DoCmd.Quit

....to close the first one.
 
Back
Top