IEDisableScriptDebugging function
Prevents the webpage error dialog box (with debugging information) from displaying upon script errors. This is the programmatic equivalent of selecting the Disable script debugging (Internet Explorer) checkbox in the Internet Options -> Advanced -> Browsing settings. This function is also called upon selecting the Do not show this message again checkbox option of the Webpage Error dialog box (if script debugging was previously enabled).
Syntax
HRESULT IEDisableScriptDebugging(void);
Parameters
This function has no parameters.
Return value
Returns S_OK if successful.
Remarks
This function is not declared in the software development kit (SDK) headers and has no associated import library. To use IEDisaableScriptDebugging, call LoadLibrary on iertutil.dll and then GetProcAddress to load this function by its ordinal value (176).
IEEnableScriptDebugging and IEDisableScriptDebugging have the following ordinals:
| Function | Ordinal value |
|---|---|
| IEEnableScriptDebugging | 175 |
| IEDisableScriptDebugging | 176 |
Requirements
|
Minimum supported client |
Windows Vista |
|---|---|
|
Minimum supported server |
Windows Server 2008 |
|
Header |
|
|
DLL |
|
See also
- IEEnableScriptDebugging