This commit is contained in:
Kathy Ruffing 2011-03-07 13:18:50 +00:00
parent 3b9531f578
commit c04a3a165b

View File

@ -79,6 +79,12 @@ namespace Volian.Controls.Library
}
public void FindSearchString()
{
if (SelectedEditItem.MyItemInfo.IsTable)
{
// if not ro table, just make the mysteprtb active.
GridItem grd = SelectedEditItem as GridItem;
grd.SetSearchCell(SearchString);
}
// convert the '-' to the unicode non-breaking dash (\u8209? or \u2011 hex)
SelectedEditItem.MyStepRTB.Find(SearchString.Replace('-','\u2011'));
}