This commit is contained in:
Kathy Ruffing 2012-08-08 12:22:14 +00:00
parent 32e9b47dae
commit 68f3e7a0bb

View File

@ -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)