Hi,
I need to print a
.docx/.pdf from the project folder.
I tried with the below code but no luck.
ProcessStartInfo info = new ProcessStartInfo(path);
info.Verb = "Print";
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);
Please suggest me how to proceed.
Thanks&Regards,
Pand.