SwitchBoard Operations

S

Sondra

Is it possible to add a command button to a switchboard to have it close one
database and open another?? and after done using that database have a button
returnign to the original switchboard?

Thanks.
 
F

fredg

Is it possible to add a command button to a switchboard to have it close one
database and open another?? and after done using that database have a button
returnign to the original switchboard?

Thanks.

You want to close the current database?
Add a command button to the switchboard.
Code it's click event:
Application.FollowHyperlink "c:\FolderName\DatabaseName.mdb"
DoCmd.Quit

Have a command button on the newly opened database like the above, but
setting to path back to this database.
 
Top