Added the Continuous Action AND, Continuous Action OR, and Continuous Action PARAGRAPH to the search by type list. They will be placed under their parent type (AND, OR, and Paragraph) (B2015-008)
Fixed the Global Search Report bug where only the headers were on the first page of the report (B2014-098). Fixed bug were printing a search result of “(“ would not print. (B2013-150)
This commit is contained in:
@@ -426,7 +426,7 @@ namespace Volian.Print.Library
|
||||
datatable.AddCell(cell);
|
||||
|
||||
BuildSearchResultsProcSetList();
|
||||
datatable.HeaderRows = 3 + (ProcSetList.Count == 1 ? 1 : 0);
|
||||
datatable.HeaderRows = 4 + (ProcSetList.Count == 1 ? 1 : 0);
|
||||
int splitAt = FindSpitLevel(); // find the split level of the common path - for all procedure sets that use these library documents
|
||||
|
||||
Color subHeaderColor = new Color(0xD0, 0xF0, 0xD0);
|
||||
@@ -543,6 +543,8 @@ namespace Volian.Print.Library
|
||||
_RegexSearchString = _RegexSearchString + "$";
|
||||
_RegexSearchString = _RegexSearchString.Replace("[", @"\[");
|
||||
_RegexSearchString = _RegexSearchString.Replace("]", @"\]");
|
||||
_RegexSearchString = _RegexSearchString.Replace("(", @"\(");
|
||||
_RegexSearchString = _RegexSearchString.Replace(")", @"\)");
|
||||
}
|
||||
return _RegexSearchString;
|
||||
}
|
||||
|
Reference in New Issue
Block a user