Supporting logic to handle the use of the backslash character
Supporting logic to handle the use of the backslash character, and question marks Supporting logic to handle the use of the backslash character, dashes, and symbols Supporting logic to handle the use of the backslash character and dashes
This commit is contained in:
@@ -98,8 +98,9 @@ namespace Volian.Controls.Library
|
||||
grd.SetSearchCell(SearchString);
|
||||
}
|
||||
// convert the '-' to the unicode non-breaking dash (\u8209? or \u2011 hex)
|
||||
// and the '\' to the unicode backslash sybol (\u9586? or \u2572 hex)
|
||||
if (!SelectedEditItem.MyStepRTB.IsRoTable)
|
||||
SelectedEditItem.MyStepRTB.Find(SearchString.Replace('-','\u2011'));
|
||||
SelectedEditItem.MyStepRTB.Find(SearchString.Replace('-', '\u2011').Replace('\\','\u2572'));
|
||||
}
|
||||
#endregion
|
||||
#region Contructors
|
||||
|
Reference in New Issue
Block a user