I have a printer hooked up to my pc and I'm creating a server so that anyone in my WLAN can access the printer. I'm using the following code to open a default print dialog:
Process p = new Process();
p.StartInfo = new ProcessStartInfo()
{
CreateNoWindow = true,
Verb = "print",
FileName = @"C:\Users\User\Pictures\HurwitzofAz3p4j.png"
};
p.Start();
My question is how to acctualy start printing, i.e. trigger the print button click in the window opened (print dialog form)?