diff --git a/PROMS/Formats/fmtall/CWEall.xml b/PROMS/Formats/fmtall/CWEall.xml index f0b23d55..cbddfaea 100644 Binary files a/PROMS/Formats/fmtall/CWEall.xml and b/PROMS/Formats/fmtall/CWEall.xml differ diff --git a/PROMS/Volian.Print.Library/PromsPrinter.cs b/PROMS/Volian.Print.Library/PromsPrinter.cs index 023378f7..244baf25 100644 --- a/PROMS/Volian.Print.Library/PromsPrinter.cs +++ b/PROMS/Volian.Print.Library/PromsPrinter.cs @@ -181,10 +181,12 @@ namespace Volian.Print.Library { string pnProbl = null; foreach (string pstr in TransPageNumProblems) - pnProbl = pnProbl + "\n" + pstr; + pnProbl = pnProbl + "\r\n" + pstr; + Clipboard.SetText(pnProbl); return MessageBox.Show("Review the page numbers specified on transitions that transition to the following:\n" + pnProbl + "\r\n\r\nDo you want to review the PDF output prior to the page number update?" - + "\r\n\r\nThis shouldd help to determine the cause of the inconsistent page numbers.", + + "\r\n\r\nThis should help to determine the cause of the inconsistent page numbers." + + "\r\n\r\nThis list will be placed in the Clipboard.", "Inconsistent transition page numbers.", MessageBoxButtons.YesNo,MessageBoxIcon.Question); } return DialogResult.No;