central access database

G

Guest

I have 3 databases that perform 3 different things.

I would like to have one main menu and the user can go click on the name of
the database he wants to open rather than having all these databases sitting
on his desk top. This way all the databases and handled thru one screen.


How do i do this??? Any cons on the are welcome. I am just starting on this.
Please help.

Thanks.
 
B

bob

You are not giving us a lot of info - but a best guess is that you can make
one user interface for all them by combining them into one front-end...the
front-end can have many databases on the back-end.

Bob
 
G

Guest

How can i do this???

bob said:
You are not giving us a lot of info - but a best guess is that you can make
one user interface for all them by combining them into one front-end...the
front-end can have many databases on the back-end.

Bob
 
J

johngo

I have 3 databases that perform 3 different things.

I would like to have one main menu and the user can go click on the name of
thedatabasehe wants toopenrather than having all these databases sitting
on his desk top. This way all the databases and handled thru one screen.

How do i do this??? Any cons on the are welcome. I am just starting on this.
Please help.

Thanks.

You can use the Shell command like so.

Dim vAppID


vAppID = Shell("msaccess.exe [Full Path to Access Db]",
vbNormalFocus)
AppActivate vAppID, True
Application.Quit

If you remove the quit line the initial database will remain open.
 
J

johngo

I have 3 databases that perform 3 different things.

I would like to have one main menu and the user can go click on the name of
thedatabasehe wants toopenrather than having all these databases sitting
on his desk top. This way all the databases and handled thru one screen.

How do i do this??? Any cons on the are welcome. I am just starting on this.
Please help.

Thanks.

You can use the Shell command like so.

Dim vAppID


vAppID = Shell("msaccess.exe " & sDesktopFolder & sAppFile,
vbNormalFocus)
AppActivate vAppID, True

Application.Quit

If you remove the quit line the database running the shell command
will remain open.
 

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

Top