Hi
I want to send pdf-files to a printer drive.
I'm using vb 2005 making a Windows Forms application.
I want to send pdf-files to a printer drive.
I'm using vb 2005 making a Windows Forms application.
Dim PathToAcroRd32 As String = "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" Dim PathToPDF As String = "C:\folder\sample.pdf" Dim PrinterDriver As String = "PrinterName" Call Shell(PathToAcroRd32 + " /t """ + PathToPDF + """ " + PrinterDriver)
Comment