C2017-018 Output column headings for inconcistent Page Number transitions, Open Pass 2 Page Number PDF File if the user chooses to create a Pass 2 PDF.

C2017-018 Output column headings for inconcistent Page Number transitions.
This commit is contained in:
Rich
2017-06-23 19:19:42 +00:00
parent a882e4f33d
commit 4686415f98
2 changed files with 16 additions and 4 deletions

View File

@@ -487,7 +487,8 @@ namespace Volian.Print.Library
else if (MyItemInfo.PageNumberUsed != 0 && MyItemInfo.PageNumberUsed != pagenumTran)
{
if (PromsPrinter.TransPageNumProblems == null) PromsPrinter.TransPageNumProblems = new List<string>();
string pnErr = string.Format("{0} {1} {2} {3}", MyItemInfo.ItemID, MyItemInfo.ShortPath, MyItemInfo.PageNumberUsed, pagenumTran);
// C2017-018 Insert tabs between columns
string pnErr = string.Format("{0}\t{1}\t{2}\t{3}", MyItemInfo.ItemID, MyItemInfo.ShortPath, MyItemInfo.PageNumberUsed, pagenumTran);
PromsPrinter.TransPageNumProblems.Add(pnErr);
}
MyItemInfo.PageNumberNextPass = pagenumTran;