Hello,
I'm trying print multiple PDF files using the following code:
All files print just fine, but the queue to the printer is not in the correct order.Code:Dim startInfo As New ProcessStartInfo startInfo.FileName = fileToPrint startInfo.Verb = "print" startInfo.Arguments = "" startInfo.UseShellExecute = True startInfo.CreateNoWindow = False Dim report As Process = New Process report.StartInfo = startInfo report.Start()
I think I need a way to wait until the queue has been loaded, but not sure how to accomplish this.
Any ideas?


LinkBack URL
About LinkBacks




Reply With Quote

Bookmarks