V
Valeria Galvano
Hi,
when I use the System.Diagnostics.ProcessStart to send to a printer a
document that need to be printed, is possible to set a printer that is not
the default printer? (see the code below posted for me from Herfried K.
Wagner )
Thanks in advance
Valeria
\\\
Dim p As New System.Diagnostics.ProcessStartInfo()
p.Verb = "print"
p.WindowStyle = ProcessWindowStyle.Hidden
p.FileName = "C:\filename.pdf"
p.UseShellExecute = True
System.Diagnostics.Process.Start(p)
///
when I use the System.Diagnostics.ProcessStart to send to a printer a
document that need to be printed, is possible to set a printer that is not
the default printer? (see the code below posted for me from Herfried K.
Wagner )
Thanks in advance
Valeria
\\\
Dim p As New System.Diagnostics.ProcessStartInfo()
p.Verb = "print"
p.WindowStyle = ProcessWindowStyle.Hidden
p.FileName = "C:\filename.pdf"
p.UseShellExecute = True
System.Diagnostics.Process.Start(p)
///