DisableScriptDebugger Property

Enables/Disbles Internet Explorer's script debugger.

Type

Boolean

Remarks

It is highly recommended that Internet Explorer's script debugger is turned off during printing so that PDF conversion process is not interrupted.

Example Usage

Set oPrinter = CreateObject("easyPDF.Printer.6")

Set oPrintJob = oPrinter.IEPrintJob
Set oIESetting = oPrintJob.IESetting

oIESetting.DisableScriptDebugger = True
oIESetting.Save

oPrintJob.PrintOut "C:\input.htm", "C:\output.pdf"