TCnWebBrowser.ScriptErrorsSuppressed Property

Gets or sets a value indicating whether the TCnWebBrowser displays dialog boxes such as script error messages.

Namespace: CNClrLib.Control.WebBrowser
published
 property ScriptErrorsSuppressed: Boolean read GetScriptErrorsSuppressed write SetScriptErrorsSuppressed default False;

Property Value

Type: Boolean

true if the control does not display its dialog boxes; otherwise, false. The default is false.

Set this property to false to debug Web pages that you display in the WebBrowser control. This is useful when you use the control to add Web-based controls and scripting code to your application. It is less useful when you use the control as a generic browser. When you have finished debugging your application, set this property to true to suppress script errors.

Note

When ScriptErrorsSuppressed is set to true, the WebBrowser control hides all its dialog boxes that originate from the underlying ActiveX control, not just script errors. Occasionally you might need to suppress script errors while displaying dialog boxes such as those used for browser security settings and user login. In this case, set ScriptErrorsSuppressed to false and suppress script errors in a handler for the Error event. For more information, see the code example in this topic.