B2022-107: Updated call to ROFSTLookup.FormatRoidKey to pass “false” instead of “true” for the parameter “check16Digits”

This commit is contained in:
Jake 2022-09-08 19:52:31 +00:00
parent 2864d8cb27
commit 1dc95d38af

View File

@ -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);