B2026 053 find unlinked values of selected #795

Merged
mschill merged 28 commits from B2026-053-Find-Unlinked-Values-of-Selected into Development 2026-07-30 15:29:20 -04:00
Showing only changes of commit f93b16fc52 - Show all commits
12
@@ -2210,6 +2210,10 @@ namespace Volian.Controls.Library
ss = ' ' + SearchString; //B2026-053 add a space prefix to make the search exact. If search is 5% this makes it excult 25% 55% etc.; ss = ' ' + SearchString; //B2026-053 add a space prefix to make the search exact. If search is 5% this makes it excult 25% 55% etc.;
mschill marked this conversation as resolved Outdated
Outdated
Review

With working on technical debt - should avoid concatenating strings & use string interpolation instead.

With working on technical debt - should avoid concatenating strings & use string interpolation instead.
} }
} }
else
{
mschill marked this conversation as resolved Outdated
Outdated
Review

With working on technical debt - should avoid concatenating strings & use string interpolation instead.

With working on technical debt - should avoid concatenating strings & use string interpolation instead.
ss = ' ' + SearchString + ' '; // Exact match add spaces before and after search string.
}
} }
else else
{ {
3