OpenFrameset @Command (Formula Language)

Opens a frameset defined for the current database. Framesets provide a way for designers to display several pages at the same time. A frame is actually one page; a frameset is a collection of pages. Page designers can create links between frames. A major advantage of framesets is the ability to leave one page constant as users scroll or link to other pages.

Note: This @command is new with Release 5.

Syntax

@Command( [OpenFrameset] ; frameset )

Parameters

frameset

Text. The name of a frameset defined for the current database.

Usage

@Command([OpenFrameset]) is used in action formulas.You can use this command in Web applications.

Examples

This code, when added to an action button on a form, saves and closes the current form and opens the usersView frameset.
@Command([FileSave]);
@Command([CloseWindow]);
@Command([OpenFrameset];"usersView")