DisplayErrorDialogOnEveryError Property

Enables/Disbles Internet Explorer's error dialog displayed on every error.


Type: Boolean

Remarks

It is highly recommended that this feature is turned off from Internet Explorer so that PDF conversion process is not interrupted.

Example Usage


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

Set oPrintJob = oPrinter.IEExtendedPrintJob
Set oIESetting = oPrintJob.IEExtendedSetting

oIESetting.DisplayErrorDialogOnEveryError = False
oIESetting.Save

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

 

 

<<