Enables/Disbles Internet Explorer's error dialog displayed on every error.
Boolean
It is highly recommended that this feature is turned off from Internet Explorer so that PDF conversion process is not interrupted.
Set oPrinter = CreateObject("easyPDF.Printer.7")
Set oPrintJob = oPrinter.IEPrintJob
Set oIESetting = oPrintJob.IESetting
oIESetting.DisplayErrorDialogOnEveryError = False
oIESetting.Save
oPrintJob.PrintOut "C:\input.htm", "C:\output.pdf"