Gets/Sets queue wait timeout value.
Long (milliseconds)
Since Outlook cannot perform multiple conversions at the same
time, each conversion request via PrintOut method will be put into
queue, and they are converted one at a time. A waiting print
job will timout if it waits for more than the value specified in
QueueWaitTimeout property.
Timeout value is in milliseconds. Set to zero if you want to wait
indefinitely.
Set oPrinter = CreateObject("easyPDF.Printer.7")
Set oPrintJob = oPrinter.OutlookPrintJob
' Set queue waiting timeout value to 2 minutes
oPrintJob.QueueWaitTimeout = 2 * 60000
oPrintJob.PrintOut "C:\input.msg", "C:\output.pdf"