Use an Action to Open a NotesDB

I have a (hopefully) simple formula langauge question. I need to open a seperate database through an Action in another database. I know the location of the .nsf I need to open, I just need to know if there is a formula language command that will allow me to open the seperate database. Anyone have any suggestions or examples I can look at to do this?

Thank you!

Subject: Use an Action to Open a NotesDB

You could use @Command([FileOpenDatabase])-

Create an action button and insert this formula:

@Command([FileOpenDatabase];“yourservername”:“foldername\dbname.NSF”)

This will open the selected database to the framset or view you have set in the database properties.

-B