From 1dc95d38afecc570f51a97f078af31110a9383bc Mon Sep 17 00:00:00 2001 From: Jake Date: Thu, 8 Sep 2022 19:52:31 +0000 Subject: [PATCH] =?UTF-8?q?B2022-107:=20Updated=20call=20to=20ROFSTLookup.?= =?UTF-8?q?FormatRoidKey=20to=20pass=20=E2=80=9Cfalse=E2=80=9D=20instead?= =?UTF-8?q?=20of=20=E2=80=9Ctrue=E2=80=9D=20for=20the=20parameter=20?= =?UTF-8?q?=E2=80=9Ccheck16Digits=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PROMS/Volian.Controls.Library/DisplaySearch.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Controls.Library/DisplaySearch.cs b/PROMS/Volian.Controls.Library/DisplaySearch.cs index 9bc34eb3..848555a3 100644 --- a/PROMS/Volian.Controls.Library/DisplaySearch.cs +++ b/PROMS/Volian.Controls.Library/DisplaySearch.cs @@ -1853,7 +1853,8 @@ namespace Volian.Controls.Library if (chld == null || chld.Length <= 0) // get a single ROID { ROFSTLookup.rochild ro = (ROFSTLookup.rochild)cmboTreeROs.SelectedNode.Tag; - rtnstr += ROFSTLookup.FormatRoidKey(ro.roid, true); + // B2022-107: Display Progress Bar Messages/Statuses when a new ROFST binary file is loaded into the database + rtnstr += ROFSTLookup.FormatRoidKey(ro.roid, false); } else { // spin through the child list and get the ROIDs. @@ -2003,6 +2004,7 @@ namespace Volian.Controls.Library //ReportTitle = "Proms - Referenced Object Search"; ReportTitle = string.Format("Search For Referenced Object:\n{0}", cmboTreeROs.Text); //TypesSelected = "Searched Step Types: " + ((typstr != null) ? typstr : "All Step Types"); + if (cbxFndUnLnkROVals.Enabled && cbxFndUnLnkROVals.Checked) { SearchResults = ItemInfoList.GetListFromTextSearch(DVISearchList, TypeSearchList, ROSearchList, cbxBooleanTxtSrch.Checked ? 2 : cbxCaseSensitive.Checked ? 1 : 0, ItemSearchIncludeLinks.Nothing, includeRTFformat, includeSpecialChars, unitPrefix, string.Empty, string.Empty);