B2026 053 find unlinked values of selected #795
@@ -2193,7 +2193,6 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
private string exactsearch(string SearchString) // B2026-053
|
private string exactsearch(string SearchString) // B2026-053
|
||||||
|
jjenko marked this conversation as resolved
Outdated
|
|||||||
{
|
{
|
||||||
//string ss = "";
|
|
||||||
StringBuilder ss = new StringBuilder();
|
StringBuilder ss = new StringBuilder();
|
||||||
int sl = SearchString.Length;
|
int sl = SearchString.Length;
|
||||||
int LstIdxSp = SearchString.LastIndexOf(' ');
|
int LstIdxSp = SearchString.LastIndexOf(' ');
|
||||||
|
|||||||
Reference in New Issue
Block a user
by always adding a space before the search text, it will not find places where the unlinked RO Value is the first thing on the line. Ex. an Equipment List might have only the unlinked RO Value.
I noticed that the last two fields in the call to GetListFromTextSearch() are for a "by word" text search and passes in a Regx expression. Could that be used? - look for "if (cbxByWord.Checked)"