Use the following code:
Process p = new Process( );
p.StartInfo = new ProcessStartInfo( )
{
CreateNoWindow = true,
Verb = "print",
FileName = path //put the correct path here
};
p.Start( );
Please mark the post as an answer that helps/solves your problem.
No comments:
Post a Comment