Infbox

Infbox displays a popup windows with an information message.

This function is only usable in Classic pages related code and is deprecated for code running in version 7 mode.

Syntax

   Infbox MESSAGE_LIST
   Infbox MESSAGE_LIST Titled TITLE
   Infbox MESSAGE_LIST Titled TITLE Sleep TIME
   Infbox MESSAGE_LIST Sleep TIME

Examples

# The computation failed because no valid entry is there
 Call COMPUTATION(FORMULA,RESULT, ERROR)
  If ERROR=0
    Infbox "The following formula has been computed",FORMULA,
&          "with the following result",num$(RESULT)
&   Titled "Computation Error" Sleep 60
  Endif

Description

Infbox behaves as Endbox, but the popup looks different ("i" symbol on a blue bar).
This instruction should be used only to display information messages.

See also

Endbox, Errbox, Qstbox, Selbox, Wrnbox