Enables/Disbles Internet Explorer's script debugger.
Boolean
It is highly recommended that Internet Explorer's script debugger is turned off during printing so that PDF conversion process is not interrupted.
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"