diff --git a/PROMS/DataLoader/OutsideTransition.cs b/PROMS/DataLoader/OutsideTransition.cs index 69c7d0a5..fc853648 100644 --- a/PROMS/DataLoader/OutsideTransition.cs +++ b/PROMS/DataLoader/OutsideTransition.cs @@ -96,6 +96,14 @@ namespace DataLoader string title = GetTitle(setid, procid);// Get procedure title from XTPROCID return string.Format("{0}, {1} in folder {2}",proc,title,path); } + public string GetTransitionText(string key) + { + string setid = key.Substring(0, 8); + 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 + return string.Format("{0}, {1}", proc, title); + } //private string ProcessOutSideTrans(OleDbConnection cn, string thekey, string pth) //{ // string xtransstring = null;