This commit is contained in:
Kathy Ruffing 2010-11-23 14:55:41 +00:00
parent cf24b5885c
commit d806029f56

View File

@ -793,6 +793,11 @@ namespace Volian.Controls.Library
ROFSTLookup.rochild roch = (ROFSTLookup.rochild)obj;
_SelectedRoidBeforeRoEditor = roch.roid;
string args = "\"" + _MyROFST.MyRODb.FolderPath + "\" " + roch.roid.ToLower();
if (!Directory.Exists(_MyROFST.MyRODb.FolderPath))
{
MessageBox.Show(string.Format("RO Database directory does not exist: {0}", _MyROFST.MyRODb.FolderPath));
return;
}
System.Diagnostics.Process.Start(roapp, args);
}
}