Saves all Internet Explorer setting changes.
Sub Save()
N/A.
N/A.
You need to call this method to have the changes applied for the current print job. Note that method also saves the changes globally (subsequent IEExtendedPrintJob's will have the same setting).
Set oPrinter = CreateObject("easyPDF.Printer.6")
Set oPrintJob = oPrinter.IEExtendedPrintJob
Set oIESetting = oPrintJob.IEExtendedSetting
' Make changes to IE's setting
oIESetting.DisableScriptDebugger = True
oIESetting.DisplayErrorDialogOnEveryError = False
' ...
' Save the above changes before calling PrintOut method.
oIESetting.Save
oPrintJob.PrintOut "C:\input.htm", "C:\output.pdf"