Provide the option to display the PDF before the Page Number Transitions were updated to help the process of correcting pagination.
Fix the inheritance lookup for Transtitions
This commit is contained in:
@@ -131,7 +131,13 @@ namespace VEPROMS
|
||||
this.Close();
|
||||
return;
|
||||
}
|
||||
if (!CancelStop) PromsPrinter.ReportTransPageNumProblems();
|
||||
if (!CancelStop)
|
||||
{
|
||||
if (PromsPrinter.ReportTransPageNumProblems() == DialogResult.Yes && MyPromsPrinter.BeforePageNumberPdf != null)
|
||||
{
|
||||
System.Diagnostics.Process.Start(MyPromsPrinter.BeforePageNumberPdf);
|
||||
}
|
||||
}
|
||||
DateTime tEnd = DateTime.Now;
|
||||
MyStatus = _PdfFile + " created.";
|
||||
MyStatus = string.Format("{0} created in {1:0.} milliseconds", _PdfFile, (TimeSpan.FromTicks(tEnd.Ticks - tStart.Ticks).TotalMilliseconds));
|
||||
|
Reference in New Issue
Block a user