Placekeeper logic

Added Checkbox to generate the Placekeeper
Generate Placekeeper logic
Disable the “include in placekeeper” checkbox on Placekeeper section types
This commit is contained in:
2014-05-09 19:13:15 +00:00
parent 10607cce7d
commit 9b930ffeda
6 changed files with 54 additions and 41 deletions

View File

@@ -91,7 +91,7 @@ namespace PrintMSWord
pp.StatusChanged += new PromsPrinterStatusEvent(pp_StatusChanged);
_ElapsedTime = new Dictionary<PromsPrinterStatusType, TimeSpan>();
DateTime tStart = DateTime.Now;
string pdfFile = pp.Print(@"C:\TEMP\32Bit");
string pdfFile = pp.Print(@"C:\TEMP\32Bit", false);
DateTime tEnd = DateTime.Now;
_ElapsedTime.Add(PromsPrinterStatusType.Total, DateTime.Now - tStart);
MyTimerStatus = pdfFile + " created.";