Compare commits
4
Commits
9bf7b2ffde
...
780ce657ca
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
780ce657ca | ||
|
|
464be0f803 | ||
|
|
58a6cb9a24 | ||
|
|
99fe567e78 |
@@ -2079,7 +2079,7 @@ namespace Volian.Controls.Library
|
|||||||
if (cbxFndUnLnkROVals.Enabled && cbxFndUnLnkROVals.Checked)
|
if (cbxFndUnLnkROVals.Enabled && cbxFndUnLnkROVals.Checked)
|
||||||
{
|
{
|
||||||
string ROSearchList2 = exactsearch(ROSearchList); // B2026-053 match exact string
|
string ROSearchList2 = exactsearch(ROSearchList); // B2026-053 match exact string
|
||||||
// B2022-031 - added a cbxProcSectSrch to filter out procedure and section titles from global search results.
|
// B2022-031 - added a exactsearch to filter out procedure and section titles from global search results.
|
||||||
SearchResults = ItemInfoList.GetListFromTextSearch(DVISearchList, TypeSearchList, ROSearchList2, cbxBooleanTxtSrch.Checked ? 2 : cbxCaseSensitive.Checked ? 1 : 0, cbxProcSectSrch.Checked ? 1 : 0, ItemSearchIncludeLinks.Nothing, includeRTFformat, includeSpecialChars, unitPrefix, string.Empty, string.Empty);
|
SearchResults = ItemInfoList.GetListFromTextSearch(DVISearchList, TypeSearchList, ROSearchList2, cbxBooleanTxtSrch.Checked ? 2 : cbxCaseSensitive.Checked ? 1 : 0, cbxProcSectSrch.Checked ? 1 : 0, ItemSearchIncludeLinks.Nothing, includeRTFformat, includeSpecialChars, unitPrefix, string.Empty, string.Empty);
|
||||||
cmbResultsStyleIndex = 3; // display step text in results
|
cmbResultsStyleIndex = 3; // display step text in results
|
||||||
}
|
}
|
||||||
@@ -2193,6 +2193,7 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
private string exactsearch(string SearchString) // B2026-053
|
private string exactsearch(string SearchString) // B2026-053
|
||||||
{
|
{
|
||||||
|
//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