From 5359e05e77bb94e56c1d7a34dc6c90bfc50cd0f4 Mon Sep 17 00:00:00 2001 From: Rich Date: Fri, 5 Jun 2015 16:29:51 +0000 Subject: [PATCH] Page Number for the second pass for transitions to Word Sections were not getting updated properly --- PROMS/Volian.Print.Library/PromsPrinter.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PROMS/Volian.Print.Library/PromsPrinter.cs b/PROMS/Volian.Print.Library/PromsPrinter.cs index 84a3ee56..f320e555 100644 --- a/PROMS/Volian.Print.Library/PromsPrinter.cs +++ b/PROMS/Volian.Print.Library/PromsPrinter.cs @@ -852,6 +852,8 @@ namespace Volian.Print.Library { if (mySection.PageNumber == -1) // If page num transition goes to a section, need the pagenumber of section. mySection.PageNumber = _MyHelper.CurrentPageNumber; + else + mySection.PageNumberNextPass = _MyHelper.CurrentPageNumber; int profileDepth = ProfileTimer.Push(">>>> CreateWordDocPdf"); _MyHelper.MySection = mySection; try