Possible Duplicate:
.NET: How to print files w/o opening them
I want to print my files discreetly without opening them I've been told to do this :
ProcessStartInfo psi = new ProcessStartInfo(documentFileName);
psi.Verb = "Print";
Process.Start(psi);
but ProcessStartInfo open the given file so how can I do my printing silently ???