From 68f3e7a0bb5f0f874b026c21bd8d48659db2bd66 Mon Sep 17 00:00:00 2001 From: Kathy Date: Wed, 8 Aug 2012 12:22:14 +0000 Subject: [PATCH] --- PROMS/DataLoader/OutsideTransition.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PROMS/DataLoader/OutsideTransition.cs b/PROMS/DataLoader/OutsideTransition.cs index 13c453ef..530d9bba 100644 --- a/PROMS/DataLoader/OutsideTransition.cs +++ b/PROMS/DataLoader/OutsideTransition.cs @@ -135,6 +135,9 @@ namespace DataLoader string procid = key.Substring(8, 8); string proc = GetProc(setid, procid);// Get procedure number from XTPROCID string title = GetTitle(setid, procid);// Get procedure title from XTPROCID + proc = proc.Replace("-", @"\u8209?"); // in proc number, replace dash and spaces with + proc = proc.Replace(" ", @"\u160?"); // nonbreak unicode dash & hardspace. + title = title.Replace("-", @"\u8209?"); // in title, just do the hardspace. return string.Format("{0}, {1}", proc, title); } //private string ProcessOutSideTrans(OleDbConnection cn, string thekey, string pth)