Open Pass 2 Page Number PDF File if the user chooses to create a Pass 2 PDF.

This commit is contained in:
Rich 2017-06-23 19:18:47 +00:00
parent 3e0f5e19bb
commit a882e4f33d

View File

@ -174,6 +174,8 @@ namespace VEPROMS
if (PromsPrinter.ReportTransPageNumProblems() == DialogResult.Yes && MyPromsPrinter.BeforePageNumberPdf != null)
{
System.Diagnostics.Process.Start(MyPromsPrinter.BeforePageNumberPdf);
// C2017-018 - Open Pass 2 output if it exists
if (MyPromsPrinter.BeforePageNumber2Pdf != null) System.Diagnostics.Process.Start(MyPromsPrinter.BeforePageNumber2Pdf);
}
}
DateTime tEnd = DateTime.Now;