AnalysisOption.ShowWarnings
This property returns or sets whether analysis informational messages or warnings are displayed to user when running analysis from SVB.
| Syntax | Return Value |
|---|---|
| - | Boolean |
SVB Example
Suppressing analysis warnings:
Option Base 1
Option Explicit
Sub Main
'when analyses are executed from svb, analysis warning messages
'and analysis error messages will be suppressed.
Application.Option.Analysis.ShowWarnings = False
End Sub