multiple access databases

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

Guest

Is it possible to set-up a Master Menu Form (switchboard) that can work with
several different Access databases? For example:

Master Menu button1(click) and it goes to a form in database2
Master Menu button2(click) and it goes to a report in database5
Master Menu button3(click) and it goes to a form in database1
etc...
Many thanks.
John
 
Certainly, but that is also what a shortcut does. If you want to do it from
Access though, use the following code to fill a table of Access database
names:

http://www.datastrat.com/Download/DocMgr_2K.zip

The above code uses a filter to find Word.doc's, but you can easily change
the filter to find mdb's, then add a column of friendly names. Fill a
listbox with the names and paths, and use ShellExecute to open the
databases:

http://www.mvps.org/access/api/api0018.htm
 
John said:
Is it possible to set-up a Master Menu Form (switchboard) that can
work with several different Access databases? For example:

Master Menu button1(click) and it goes to a form in database2
Master Menu button2(click) and it goes to a report in database5
Master Menu button3(click) and it goes to a form in database1
etc...
Many thanks.
John

Depending on what you really want, you may want to set up one or more
split databases. You can make a "front end" database and then link to the
"back end" database(s) Look up split database.
 

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

Back
Top