From 64b3b06375e508ecf85a516838ed10b85adb8733 Mon Sep 17 00:00:00 2001 From: John Date: Fri, 20 Feb 2015 14:46:02 +0000 Subject: [PATCH] =?UTF-8?q?Added=20logic=20to=20support=20a=20=E2=80=9C%2d?= =?UTF-8?q?=E2=80=9D=20in=20the=20top=20continue=20message=20definition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Print.Library/vlnParagraph.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PROMS/Volian.Print.Library/vlnParagraph.cs b/PROMS/Volian.Print.Library/vlnParagraph.cs index 6beea9d3..bf4df836 100644 --- a/PROMS/Volian.Print.Library/vlnParagraph.cs +++ b/PROMS/Volian.Print.Library/vlnParagraph.cs @@ -1721,6 +1721,8 @@ namespace Volian.Print.Library } if (myMsg.IndexOf(@"%3d") > -1) myMsg = myMsg.Replace(@"%3d", MyItemInfo.MyHLS.Ordinal.ToString()); + if (myMsg.IndexOf(@"%2d") > -1) + myMsg = myMsg.Replace(@"%2d", MyItemInfo.MyHLS.MyTab.CleanTextNoSymbols.Trim(" .".ToCharArray()).PadLeft(2)); if (myMsg.IndexOf(@"%d") > -1) myMsg = myMsg.Replace(@"%d", MyItemInfo.MyHLS.MyTab.CleanTextNoSymbols.Trim(" .".ToCharArray())); if (myMsg.IndexOf(@"%c") > -1)