Calling another access program from a form

  • Thread starter Thread starter CMI
  • Start date Start date
C

CMI

Guest
How do you use a button on a form to call another access program? We have 8 access programs that we want to be able to call from one form.
Thanks
 
I'm sure there are a few ways to do this, here's one way, just add the location of the database

In the On_Click event of the button put:
Application.FollowHyperlink "C:\Documents and Settings\Desktop\your_database.mdb"

..change the path for each database/button
 
I tried this but all I get is:
Microsoft Access can't find the macro "Application"

Any other suggestions?
 

Users who are viewing this thread

Back
Top Bottom