@StatusBar (Formula Language)

Writes a message or messages to the status bar.

Note: This @function is new with Release 6.

Syntax

@StatusBar( statusBarText )

Return value

statusBarText

Text or text list. The text of the status bar message. A list produces one message per element.

Usage

This @function works only in the Notes® client.

Examples

  1. This onLoad/Postopen event writes a message to the status bar.
    @StatusBar("Loaded \"Form A\" in \"" + @Subset(@DbName; -1) + "\"")
  2. This onLoad/Postopen event writes two messages to the status bar.
    @StatusBar("Loaded \"Form A\"" :
    ("Database is \"" + @Subset(@DbName; -1) + "\""))