My code:
string args = @"/h /n /t """ + f + @""" ";
var adobeprocess = System.Diagnostics.Process.Start(@"AcroRd32.exe", args);
var hasExited = adobeprocess.WaitForExit(wait);
if (!hasExited)
{
adobeprocess.CloseMainWindow();
adobeprocess.Kill();
}
When the pdf is closed a save dialog appears, but I don't want that to appear.