Hi
I am printing succesfully a pdf document with VB .NET from my PC in silent mode like this
Dim drucken As String = "C:\projekte\SumatraPDF\SumatraPDF.exe"
Dim pr = New Process
pr.StartInfo.FileName = drucken
Dim filename As String = "C:\Users\mgbig\Documents\docs\packinglist.pdf"
pr.StartInfo.Arguments = "-silent -exit-on-print -print-to-default " & filename
pr.Start()
Now I want to print a document, that I will find on a web page like this
I tried just to change this line
Dim filename As String = "C:\Users\mgbig\Documents\docs\packinglist.pdf"
into
Dim filename As String = "http://www.mywebside.de/docs/packinglist.pdf"
but nothing happens. When I remove -silent -exit-on-print then an error shows up “File could not be printed”
but unfortunately nothing happens. Is there a way to print out a pdf in silent mode?
Thanks a lot
mgbig