hi good moring to every one,
i want to convert pdf file to xps file by using either c# or Open Xml .
for this i did a lot of R&D and practice ,finally i concluded with one solution as shown below:
System.Diagnostics.Processp=newProcess();
p.StartInfo.FileName =
@"C:\Users\madhubabub\Desktop\11.pdf";
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
p.StartInfo.CreateNoWindow =true;
p.StartInfo.Verb ="PrintTo";
p.StartInfo.RedirectStandardInput.ToString();
p.Start();
but i facing problem with this snippet is: it's working fine but after execution pdf file was opening in background along with save dialog box, even i used hidden property in my code
as shown above.
any one can help me to hide or minimize pdf file and keep the save dialog box on screen.