ShowProgress
Specifies whether the progress indicator window has to be displayed during audit test execution and generating the report.
Compatibility
Available as of IDEA version 12.0
Syntax
ShowProgress As Boolean
Remarks
When set to True, a popup window with progress indicator is displayed during audit test execution and/or generating the report.
The default value is False.
Example
Sub Main()
Dim ac As Object
Dim atExecutor As Object
Set ac = CreateObject("SmartAnalyzer.AutomationClient")
atId = "f4d65220-77f1-5969-8943-59c7bd448460"
tblName = "Sample-Weblog"
Set atExecutor = SA.GetAtExecutor(atId, tblName)
atExecutor.ShowProgress = True
atExecutor.Execute
End Sub