Skip to content

Initializing and Starting the Status Panel

The caption, title, and message areas are initialized by sending the Initialize_StatusPanel message, passing these three text strings.

Send Initialize_StatusPanel of ghoStatusPanel ;
    "Running batch Process" ;    // the caption
    "Processing all Orders" ;     // the title
    ""                            // Message area (none in this sample)

Alternatively, these three text values may be set individually by setting the properties Caption_Text, Title_Text, and Message_Text.

Set Caption_Text of ghoStatusPanel to "Running batch Process"
Set Title_Text of ghoStatusPanel to "Processing all Orders"
Set Message_Text of ghoStatusPanel to ""

You can also change the label of the button to a value other than Cancel by setting the Button_Text property.

Set Button_Text of ghoStatusPanel to "Halt"

The status panel is invoked by sending the Start_StatusPanel message.

Send Start_StatusPanel of ghoStatusPanel

See Also