Added how SubSection_Edit property value is determined
Added code to delete ro usages and transitions that are converted to text. Added code to handle "dashes" and "unicode dashes" Added code to support converting to text transitions to external destinations with internal style transition Added wait cursor for log running processes so application shows it is busy and added code to to fix searches that should return results but are not returning results when doiing transitions searches. Added code to make Refresh Referenced Objects and Refresh Transitions button under Review tab of StepTabRibbon not visible
This commit is contained in:
@@ -151,6 +151,7 @@ namespace Volian.Controls.Library
|
||||
if (e.NewTab == tabTranSearch)
|
||||
{
|
||||
//setup transition format versions
|
||||
this.Cursor = Cursors.WaitCursor;
|
||||
if (myFormatVersionList == null)
|
||||
{
|
||||
myFormatVersionList = FormatVersionList.GetFormatVersions();
|
||||
@@ -167,6 +168,7 @@ namespace Volian.Controls.Library
|
||||
cbxTranVersion.SelectedIndexChanged += new EventHandler(cbxTranVersion_SelectedIndexChanged);
|
||||
cbxTranFormat.SelectedIndexChanged += new EventHandler(cbxTranFormat_SelectedIndexChanged);
|
||||
}
|
||||
this.Cursor = Cursors.Default;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -238,6 +240,7 @@ namespace Volian.Controls.Library
|
||||
|
||||
void cbxTranVersion_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.Cursor = Cursors.WaitCursor;
|
||||
string versionList = string.Empty;
|
||||
string sep = string.Empty;
|
||||
FormatVersion sfv = cbxTranVersion.SelectedItem as FormatVersion;
|
||||
@@ -267,6 +270,7 @@ namespace Volian.Controls.Library
|
||||
uncheckNodes.Remove(uncheckNodes[0]);
|
||||
}
|
||||
lstCheckedDocVersions.Clear();
|
||||
this.Cursor = Cursors.Default;
|
||||
}
|
||||
|
||||
private DevComponents.AdvTree.Node NewAdvTreeNode(string nodetext, bool selectable, bool chxbxvisable)
|
||||
@@ -1240,7 +1244,7 @@ namespace Volian.Controls.Library
|
||||
sep = ",";
|
||||
}
|
||||
}
|
||||
SearchResults = ItemInfoList.GetListFromTransitionSearch(docVersionList, cbxTranFormat.SelectedIndex - 1, cbxTranCategory.SelectedItem.ToString());
|
||||
SearchResults = ItemInfoList.GetListFromTransitionSearch(docVersionList, cbxTranFormat.SelectedIndex - 1, cbxTranCategory.SelectedItem.ToString() == "All" ? "" : cbxTranCategory.SelectedItem.ToString());
|
||||
cmbResultsStyleIndex = 3; // display step text in results
|
||||
}
|
||||
AddMessageForEmptyAnnotations();
|
||||
|
@@ -622,6 +622,8 @@ namespace Volian.Controls.Library
|
||||
_RibbonControl.Items[0].RaiseClick(); // initially default to HOME tab
|
||||
rbnBorderlistBox.Resize+=new EventHandler(rbnBorderlistBox_Resize);
|
||||
rbnBorderlistBox.SetupFontAndSize(6); // 6 Point Font
|
||||
// added per Harry to hide refresh buttons
|
||||
btnRefObjRefresh.Visible = btnTranRefresh.Visible = false;
|
||||
}
|
||||
|
||||
void _RibbonControl_SizeChanged(object sender, EventArgs e)
|
||||
|
Reference in New Issue
Block a user