Toolbar Component

Fnd_Tlbr_StatusMessage

Fnd_Tlbr_StatusMessage ({new text}) -> Text

Legacy manual page 251

Parameters

ParameterTypeDescription
new textTextText to set for the info line (optional)
Function resultTextText displayed in the info line

Description

Fnd_Tlbr_StatusMessage allows for the getting and setting of the information text line displayed in the standard toolbar output form. Pass this routine the message to display.

Fnd_Tlbr_StatusMessage ("There are "+String(Records in selection([People]))+" People

records.")

If this command is not called during the form’s On Load phase, or if it is passed a blank string, then no status bar will be visible. The status message can be updated at any time. It is not necessary to call the Fnd_Tlbr_Redraw command after calling this routine to update the status message. However, if the status bar is hidden and text has been passed to this routine to display it, or to hide a visible status bar, Fnd_Tlbr_Redraw should be called after calling Fnd_Tlbr_StatusMessage. This routine can also be called as a function to get the current content of the status bar:

$displayedMessage_t:=Fnd_Tlbr_StatusMessage
Extracted source text
            Fnd_Tlbr_StatusMessage ({new text}) ➔ Text

              Parameter                Type               Description
              new text                 Text               Text to set for the info line (optional)
              Function result          Text               Text displayed in the info line

            Fnd_Tlbr_StatusMessage allows for the getting and setting of the information text line displayed in the
            standard toolbar output form. Pass this routine the message to display.
              Fnd_Tlbr_StatusMessage ("There are "+String(Records in selection([People]))+" People
              records.")

            If this command is not called during the form’s On Load phase, or if it is passed a blank string, then no
            status bar will be visible.
            The status message can be updated at any time. It is not necessary to call the Fnd_Tlbr_Redraw
            command after calling this routine to update the status message. However, if the status bar is hidden
            and text has been passed to this routine to display it, or to hide a visible status bar, Fnd_Tlbr_Redraw
            should be called after calling Fnd_Tlbr_StatusMessage.
            This routine can also be called as a function to get the current content of the status bar:
              $displayedMessage_t:=Fnd_Tlbr_StatusMessage