RPAEngine.SetStatus
The RPAEngine.SetStatus method sets the text to be displayed in the status bar.
Syntax
RPAEngine.SetStatus( _ ByVal strStatusText As String) |
Parameters
strStatusText
|
Return Value
None. |
Remarks
The text will appear in the status bar until either (a) the end of the VBScript Action code is reached, or (b) the RPAEngine.ClearStatus method is called. |
Examples: The code below displays "Please wait..." in the status bar.
Call RPAEngine.SetStatus("Please wait...") |