Open a Form from a diferent Access Database

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

Guest

Hi!

I have a simple question to do:
1. How can I open one form from a diferent Access Database?
2. How can I open from a button, other applications, like word, excel and
Outlook, and an Access application also?

any help?
Thank you.
 
1. You cannot open a FORM from another Access Database. You can however
setup linked tables to those that the form uses and then import the FORM
from into the database.

2. The command button wizard will automatically create the code for you.
Basically if you create a button to run word or run excel, you'll use
the CreateObject function, using Outlook.Application; Word.Application;
Excel.Application
 
Back
Top