diff --git a/PROMS/VEPROMS User Interface/frmSectionProperties.cs b/PROMS/VEPROMS User Interface/frmSectionProperties.cs
index c7b9e484..9dd4f3e6 100644
--- a/PROMS/VEPROMS User Interface/frmSectionProperties.cs
+++ b/PROMS/VEPROMS User Interface/frmSectionProperties.cs
@@ -11,225 +11,225 @@ using DevComponents.DotNetBar;
namespace VEPROMS
{
- public partial class frmSectionProperties : DevComponents.DotNetBar.Office2007Form
- {
- private string _DefaultFormatName = null;
- private bool _Initializing;
- private SectionConfig _SectionConfig;
+ public partial class frmSectionProperties : DevComponents.DotNetBar.Office2007Form
+ {
+ private string _DefaultFormatName = null;
+ private bool _Initializing;
+ private SectionConfig _SectionConfig;
- public frmSectionProperties(SectionConfig sectionConfig)
- {
- _SectionConfig = sectionConfig;
- InitializeComponent();
- btnGeneral.PerformClick(); // always start with General tab or button
- if (sectionConfig.Number.Length > 0)
- this.Text = string.Format("{0} {1} Properties", sectionConfig.Number, sectionConfig.Title);
- else
- this.Text = string.Format("{0} Properties", sectionConfig.Title);
- }
+ public frmSectionProperties(SectionConfig sectionConfig)
+ {
+ _SectionConfig = sectionConfig;
+ InitializeComponent();
+ btnGeneral.PerformClick(); // always start with General tab or button
+ if (sectionConfig.Number.Length > 0)
+ this.Text = string.Format("{0} {1} Properties", sectionConfig.Number, sectionConfig.Title);
+ else
+ this.Text = string.Format("{0} Properties", sectionConfig.Title);
+ }
- private void btnFlderPropOK_Click(object sender, EventArgs e)
- {
- sectionConfigBindingSource.EndEdit();
- // Save Default settings for User
- //
- // Save whether we should display the default values on this property page
- Settings.Default.ShowDefaultSectionProp = ppCbShwDefSettings.Checked;
- Settings.Default.Save();
- DialogResult = DialogResult.OK;
- this.Close();
- }
+ private void btnFlderPropOK_Click(object sender, EventArgs e)
+ {
+ sectionConfigBindingSource.EndEdit();
+ // Save Default settings for User
+ //
+ // Save whether we should display the default values on this property page
+ Settings.Default.ShowDefaultSectionProp = ppCbShwDefSettings.Checked;
+ Settings.Default.Save();
+ DialogResult = DialogResult.OK;
+ this.Close();
+ }
- private void btnFldrPropCancel_Click(object sender, EventArgs e)
- {
- sectionConfigBindingSource.CancelEdit();
- this.Close();
- }
+ private void btnFldrPropCancel_Click(object sender, EventArgs e)
+ {
+ sectionConfigBindingSource.CancelEdit();
+ this.Close();
+ }
- ///
- /// Use the ParentLookup to grab the default values
- /// - set the watermark property (where applicable) of the control with that value
- /// - set the default setting labels with that value
- /// ** the default setting labels appear when the Show Default Values checkbox is checked by the user.
- ///
- private void FindDefaultValues()
- {
- _SectionConfig.ParentLookup = true;
- // Get the default format name
- _DefaultFormatName = _SectionConfig.DefaultFormatSelection;
- if (_DefaultFormatName != null && !(_DefaultFormatName.Equals("")))
- {
- ppLblFormatDefault.Text = string.Format("({0})", _DefaultFormatName);
- ppCmbxFormat.WatermarkText = string.Format("{0}", _DefaultFormatName);
- }
- _SectionConfig.ParentLookup = false;
- }
+ ///
+ /// Use the ParentLookup to grab the default values
+ /// - set the watermark property (where applicable) of the control with that value
+ /// - set the default setting labels with that value
+ /// ** the default setting labels appear when the Show Default Values checkbox is checked by the user.
+ ///
+ private void FindDefaultValues()
+ {
+ _SectionConfig.ParentLookup = true;
+ // Get the default format name
+ _DefaultFormatName = _SectionConfig.DefaultFormatSelection;
+ if (_DefaultFormatName != null && !(_DefaultFormatName.Equals("")))
+ {
+ ppLblFormatDefault.Text = string.Format("({0})", _DefaultFormatName);
+ ppCmbxFormat.WatermarkText = string.Format("{0}", _DefaultFormatName);
+ }
+ _SectionConfig.ParentLookup = false;
+ }
- private void frmSectionProperties_Load(object sender, EventArgs e)
- {
- _Initializing = true;
- sectionConfigBindingSource.DataSource = _SectionConfig;
+ private void frmSectionProperties_Load(object sender, EventArgs e)
+ {
+ _Initializing = true;
+ sectionConfigBindingSource.DataSource = _SectionConfig;
- formatInfoListBindingSource.DataSource = FormatInfoList.Get();
+ formatInfoListBindingSource.DataSource = FormatInfoList.Get();
- // Get the saved settings for this user
- //
- // Get setting telling us whether to display the default values on this property page
- ppCbShwDefSettings.Checked = (Settings.Default["ShowDefaultSectionProp"] != null) ? Settings.Default.ShowDefaultSectionProp : false;
+ // Get the saved settings for this user
+ //
+ // Get setting telling us whether to display the default values on this property page
+ ppCbShwDefSettings.Checked = (Settings.Default["ShowDefaultSectionProp"] != null) ? Settings.Default.ShowDefaultSectionProp : false;
- // Get the User's property page style "PropPageStyle" (this is a system wide user setting)
- // 1 - Button Dialog (default)
- // 2 - Tab Dialog
- if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Tab)
- {
- tcSectionProp.TabsVisible = true;
- panSectBtns.Visible = false;
- this.Width -= panSectBtns.Width;
- }
+ // Get the User's property page style "PropPageStyle" (this is a system wide user setting)
+ // 1 - Button Dialog (default)
+ // 2 - Tab Dialog
+ if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Tab)
+ {
+ tcSectionProp.TabsVisible = true;
+ panSectBtns.Visible = false;
+ this.Width -= panSectBtns.Width;
+ }
- // Get the default values for the property page information
- FindDefaultValues();
+ // Get the default values for the property page information
+ FindDefaultValues();
- ppCmbxSectPagination.DataSource = EnumDetail.Details();
- ppCmbxSectPagination.DisplayMember = "Description";
- ppCmbxSectPagination.ValueMember = "EValue";
+ ppCmbxSectPagination.DataSource = EnumDetail.Details();
+ ppCmbxSectPagination.DisplayMember = "Description";
+ ppCmbxSectPagination.ValueMember = "EValue";
- ppCmbxNumColumns.DataSource = EnumDetail.Details();
- ppCmbxNumColumns.DisplayMember = "Description";
- ppCmbxNumColumns.ValueMember = "EValue";
+ ppCmbxNumColumns.DataSource = EnumDetail.Details();
+ ppCmbxNumColumns.DisplayMember = "Description";
+ ppCmbxNumColumns.ValueMember = "EValue";
- _Initializing = false;
- }
+ _Initializing = false;
+ }
- #region General tab
+ #region General tab
- ///
- /// This is the General button used on the button interface design
- ///
- /// object
- /// EventArgs
- private void btnGeneral_Click(object sender, EventArgs e)
- {
- ProcessButtonClick(tiGeneral, btnGeneral);
- }
+ ///
+ /// This is the General button used on the button interface design
+ ///
+ /// object
+ /// EventArgs
+ private void btnGeneral_Click(object sender, EventArgs e)
+ {
+ ProcessButtonClick(tiGeneral, btnGeneral);
+ }
- #endregion
+ #endregion
- #region Format tab
+ #region Format tab
- ///
- /// This is the Format button used on the button interface design
- ///
- /// object
- /// EventArgs
- private void btnFormat_Click(object sender, EventArgs e)
- {
- ProcessButtonClick(tiFormat, btnFormat);
- }
+ ///
+ /// This is the Format button used on the button interface design
+ ///
+ /// object
+ /// EventArgs
+ private void btnFormat_Click(object sender, EventArgs e)
+ {
+ ProcessButtonClick(tiFormat, btnFormat);
+ }
- ///
- /// Selection in Format combo box changed.
- ///
- /// object
- /// EventArgs
- private void ppCmbxFormat_SelectedValueChanged(object sender, EventArgs e)
- {
- if ((ppCmbxFormat.SelectedIndex != -1) && _DefaultFormatName.Equals(ppCmbxFormat.SelectedValue))
- {
- ppBtnDefaultFmt.Focus();
- ppBtnDefaultFmt.PerformClick();
- }
- ppBtnDefaultFmt.Visible = (ppCmbxFormat.SelectedValue != null);
- ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible;
- }
+ ///
+ /// Selection in Format combo box changed.
+ ///
+ /// object
+ /// EventArgs
+ private void ppCmbxFormat_SelectedValueChanged(object sender, EventArgs e)
+ {
+ if ((ppCmbxFormat.SelectedIndex != -1) && _DefaultFormatName != null && _DefaultFormatName.Equals(ppCmbxFormat.SelectedValue))
+ {
+ ppBtnDefaultFmt.Focus();
+ ppBtnDefaultFmt.PerformClick();
+ }
+ ppBtnDefaultFmt.Visible = (ppCmbxFormat.SelectedValue != null);
+ ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible;
+ }
- private void ppBtnDefaultFmt_Click(object sender, EventArgs e)
- {
- ppCmbxFormat.SelectedIndex = -1; //reset to the default Format setting
- }
+ private void ppBtnDefaultFmt_Click(object sender, EventArgs e)
+ {
+ ppCmbxFormat.SelectedIndex = -1; //reset to the default Format setting
+ }
- #endregion
+ #endregion
- #region Library Document tab
+ #region Library Document tab
- ///
- /// This is the Library Document button used on the button interface design
- ///
- /// object
- /// EventArgs
- private void btnLibDocs_Click(object sender, EventArgs e)
- {
- ProcessButtonClick(tiLibDoc, btnLibDocs);
- }
+ ///
+ /// This is the Library Document button used on the button interface design
+ ///
+ /// object
+ /// EventArgs
+ private void btnLibDocs_Click(object sender, EventArgs e)
+ {
+ ProcessButtonClick(tiLibDoc, btnLibDocs);
+ }
- #endregion
+ #endregion
- #region View Settings tab
+ #region View Settings tab
- ///
- /// This is the View Settings button used on the button interface design
- ///
- /// object
- /// EventArgs
- private void btnViewStngs_Click(object sender, EventArgs e)
- {
- ProcessButtonClick(tiViewStnns, btnViewStngs);
- }
+ ///
+ /// This is the View Settings button used on the button interface design
+ ///
+ /// object
+ /// EventArgs
+ private void btnViewStngs_Click(object sender, EventArgs e)
+ {
+ ProcessButtonClick(tiViewStnns, btnViewStngs);
+ }
- #endregion
+ #endregion
- #region Generic functions used on this property page
+ #region Generic functions used on this property page
- ///
- /// Determines what labels (showing default values) are visable on the property pages
- ///
- private void defaultSettingsVisiblity()
- {
- ppLblDefSettingsInfo.Visible = ppCbShwDefSettings.Checked;
- ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible;
- }
+ ///
+ /// Determines what labels (showing default values) are visable on the property pages
+ ///
+ private void defaultSettingsVisiblity()
+ {
+ ppLblDefSettingsInfo.Visible = ppCbShwDefSettings.Checked;
+ ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible;
+ }
- ///
- /// For the Button Interface property page style, when a button is selected (pressed),
- /// it will remain in the checked state even when a different button is selected. Thus
- /// we must clear the checked state of the buttons when a button is selected, then set
- /// the newly selected button's state to checked.
- ///
- private void ClearAllCheckedButtons()
- {
- btnGeneral.Checked = false;
- btnFormat.Checked = false;
- btnLibDocs.Checked = false;
- btnViewStngs.Checked = false;
- }
+ ///
+ /// For the Button Interface property page style, when a button is selected (pressed),
+ /// it will remain in the checked state even when a different button is selected. Thus
+ /// we must clear the checked state of the buttons when a button is selected, then set
+ /// the newly selected button's state to checked.
+ ///
+ private void ClearAllCheckedButtons()
+ {
+ btnGeneral.Checked = false;
+ btnFormat.Checked = false;
+ btnLibDocs.Checked = false;
+ btnViewStngs.Checked = false;
+ }
- ///
- /// Select the corresponding tab and set the button's state to checked
- ///
- /// Property Page Tab
- /// Corresponding Property Page Button
- private void ProcessButtonClick(TabItem tab, ButtonX button)
- {
- ClearAllCheckedButtons();
- tcSectionProp.SelectedTab = tab;
- button.Checked = true;
- }
+ ///
+ /// Select the corresponding tab and set the button's state to checked
+ ///
+ /// Property Page Tab
+ /// Corresponding Property Page Button
+ private void ProcessButtonClick(TabItem tab, ButtonX button)
+ {
+ ClearAllCheckedButtons();
+ tcSectionProp.SelectedTab = tab;
+ button.Checked = true;
+ }
- ///
- /// This is a generic Enter Event function for use with all of the property page tabs.
- /// Found that the visiblity value of buttons is not recorded until the property page in which it resides is diplayed.
- /// Thus we need to call defaultSettingVisiblity() to check and set visiblity states.
- ///
- /// type object
- /// type EventArgs
- private void tabpage_Enter(object sender, EventArgs e)
- {
- // Show or hide the labels containing the default values
- if (!_Initializing)
- defaultSettingsVisiblity();
- }
+ ///
+ /// This is a generic Enter Event function for use with all of the property page tabs.
+ /// Found that the visiblity value of buttons is not recorded until the property page in which it resides is diplayed.
+ /// Thus we need to call defaultSettingVisiblity() to check and set visiblity states.
+ ///
+ /// type object
+ /// type EventArgs
+ private void tabpage_Enter(object sender, EventArgs e)
+ {
+ // Show or hide the labels containing the default values
+ if (!_Initializing)
+ defaultSettingsVisiblity();
+ }
- #endregion
- }
+ #endregion
+ }
}
\ No newline at end of file
diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
index 4bf32ff3..c05f431d 100644
--- a/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
+++ b/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
@@ -31,54 +31,6 @@ namespace VEPROMS
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmVEPROMS));
this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
- this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
- this.rbnPrint = new DevComponents.DotNetBar.RibbonBar();
- this.itemContainer10 = new DevComponents.DotNetBar.ItemContainer();
- this.btnRepaginate = new DevComponents.DotNetBar.ButtonItem();
- this.btnPrnPreview = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem27 = new DevComponents.DotNetBar.LabelItem();
- this.btnPrint2 = new DevComponents.DotNetBar.ButtonItem();
- this.rbnTree = new DevComponents.DotNetBar.RibbonBar();
- this.btnExit2 = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem12 = new DevComponents.DotNetBar.LabelItem();
- this.btnSave2 = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem31 = new DevComponents.DotNetBar.LabelItem();
- this.itemContainer9 = new DevComponents.DotNetBar.ItemContainer();
- this.btnNew2 = new DevComponents.DotNetBar.ButtonItem();
- this.btnDelete2 = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem32 = new DevComponents.DotNetBar.LabelItem();
- this.btnProperties = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
- this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
- this.rbnHlpGeneral = new DevComponents.DotNetBar.RibbonBar();
- this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem7 = new DevComponents.DotNetBar.LabelItem();
- this.btnVlnWeb = new DevComponents.DotNetBar.ButtonItem();
- this.rbnHlpUsage = new DevComponents.DotNetBar.RibbonBar();
- this.btnUserManual = new DevComponents.DotNetBar.ButtonItem();
- this.ribbonPanel3 = new DevComponents.DotNetBar.RibbonPanel();
- this.rbnUtilities = new DevComponents.DotNetBar.RibbonBar();
- this.btnGlbSrch = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
- this.btnSumChgs = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem17 = new DevComponents.DotNetBar.LabelItem();
- this.btnChngHist = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem26 = new DevComponents.DotNetBar.LabelItem();
- this.btnTransUsage = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem30 = new DevComponents.DotNetBar.LabelItem();
- this.btnROUsages = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem33 = new DevComponents.DotNetBar.LabelItem();
- this.btnSimStps = new DevComponents.DotNetBar.ButtonItem();
- this.rbnApproval = new DevComponents.DotNetBar.RibbonBar();
- this.btnAprvAll = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem6 = new DevComponents.DotNetBar.LabelItem();
- this.btnAprvSel = new DevComponents.DotNetBar.ButtonItem();
- this.rbnMultiUser = new DevComponents.DotNetBar.RibbonBar();
- this.btnUnlock = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem28 = new DevComponents.DotNetBar.LabelItem();
- this.btnLock = new DevComponents.DotNetBar.ButtonItem();
- this.labelItem5 = new DevComponents.DotNetBar.LabelItem();
- this.btnListUsers = new DevComponents.DotNetBar.ButtonItem();
this.ribbonPanel2 = new DevComponents.DotNetBar.RibbonPanel();
this.rbnTextFncts = new DevComponents.DotNetBar.RibbonBar();
this.btnSplChk = new DevComponents.DotNetBar.ButtonItem();
@@ -168,6 +120,54 @@ namespace VEPROMS
this.btnClpBrdCut = new DevComponents.DotNetBar.ButtonItem();
this.labelItem19 = new DevComponents.DotNetBar.LabelItem();
this.btnClpBrdPaste = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel1 = new DevComponents.DotNetBar.RibbonPanel();
+ this.rbnPrint = new DevComponents.DotNetBar.RibbonBar();
+ this.itemContainer10 = new DevComponents.DotNetBar.ItemContainer();
+ this.btnRepaginate = new DevComponents.DotNetBar.ButtonItem();
+ this.btnPrnPreview = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem27 = new DevComponents.DotNetBar.LabelItem();
+ this.btnPrint2 = new DevComponents.DotNetBar.ButtonItem();
+ this.rbnTree = new DevComponents.DotNetBar.RibbonBar();
+ this.btnExit2 = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem12 = new DevComponents.DotNetBar.LabelItem();
+ this.btnSave2 = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem31 = new DevComponents.DotNetBar.LabelItem();
+ this.itemContainer9 = new DevComponents.DotNetBar.ItemContainer();
+ this.btnNew2 = new DevComponents.DotNetBar.ButtonItem();
+ this.btnDelete2 = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem32 = new DevComponents.DotNetBar.LabelItem();
+ this.btnProperties = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
+ this.ribbonPanel4 = new DevComponents.DotNetBar.RibbonPanel();
+ this.rbnHlpGeneral = new DevComponents.DotNetBar.RibbonBar();
+ this.btnAbout = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem7 = new DevComponents.DotNetBar.LabelItem();
+ this.btnVlnWeb = new DevComponents.DotNetBar.ButtonItem();
+ this.rbnHlpUsage = new DevComponents.DotNetBar.RibbonBar();
+ this.btnUserManual = new DevComponents.DotNetBar.ButtonItem();
+ this.ribbonPanel3 = new DevComponents.DotNetBar.RibbonPanel();
+ this.rbnUtilities = new DevComponents.DotNetBar.RibbonBar();
+ this.btnGlbSrch = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem3 = new DevComponents.DotNetBar.LabelItem();
+ this.btnSumChgs = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem17 = new DevComponents.DotNetBar.LabelItem();
+ this.btnChngHist = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem26 = new DevComponents.DotNetBar.LabelItem();
+ this.btnTransUsage = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem30 = new DevComponents.DotNetBar.LabelItem();
+ this.btnROUsages = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem33 = new DevComponents.DotNetBar.LabelItem();
+ this.btnSimStps = new DevComponents.DotNetBar.ButtonItem();
+ this.rbnApproval = new DevComponents.DotNetBar.RibbonBar();
+ this.btnAprvAll = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem6 = new DevComponents.DotNetBar.LabelItem();
+ this.btnAprvSel = new DevComponents.DotNetBar.ButtonItem();
+ this.rbnMultiUser = new DevComponents.DotNetBar.RibbonBar();
+ this.btnUnlock = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem28 = new DevComponents.DotNetBar.LabelItem();
+ this.btnLock = new DevComponents.DotNetBar.ButtonItem();
+ this.labelItem5 = new DevComponents.DotNetBar.LabelItem();
+ this.btnListUsers = new DevComponents.DotNetBar.ButtonItem();
this.rtabHome = new DevComponents.DotNetBar.RibbonTabItem();
this.rtabEdit = new DevComponents.DotNetBar.RibbonTabItem();
this.rtabTools = new DevComponents.DotNetBar.RibbonTabItem();
@@ -229,9 +229,6 @@ namespace VEPROMS
this.tv = new Volian.Controls.Library.vlnTreeView();
this.infoPanel = new DevComponents.DotNetBar.ExpandablePanel();
this.infoTabs = new DevComponents.DotNetBar.TabControl();
- this.infotabControlPanelRO = new DevComponents.DotNetBar.TabControlPanel();
- this.displayRO = new Volian.Controls.Library.DisplayRO();
- this.infotabRO = new DevComponents.DotNetBar.TabItem(this.components);
this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
@@ -246,16 +243,21 @@ namespace VEPROMS
this.txbChgMsg2 = new DevComponents.DotNetBar.Controls.TextBoxX();
this.checkBoxX1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
this.infotabTags = new DevComponents.DotNetBar.TabItem(this.components);
- this.infotabControlPanelTransitions = new DevComponents.DotNetBar.TabControlPanel();
- this.displayTransition = new Volian.Controls.Library.DisplayTransition();
- this.infotabTransition = new DevComponents.DotNetBar.TabItem(this.components);
this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
this.navpaneResults = new DevComponents.DotNetBar.NavigationPane();
this.navpanSrchRslts = new DevComponents.DotNetBar.NavigationPanePanel();
+ this.lbResults = new System.Windows.Forms.ListBox();
+ this.cbAnnoType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
this.btnSrchRslt = new DevComponents.DotNetBar.ButtonItem();
this.navigationPanePanel2 = new DevComponents.DotNetBar.NavigationPanePanel();
this.btnSimStpsRslt = new DevComponents.DotNetBar.ButtonItem();
this.infotabResults = new DevComponents.DotNetBar.TabItem(this.components);
+ this.infotabControlPanelRO = new DevComponents.DotNetBar.TabControlPanel();
+ this.displayRO = new Volian.Controls.Library.DisplayRO();
+ this.infotabRO = new DevComponents.DotNetBar.TabItem(this.components);
+ this.infotabControlPanelTransitions = new DevComponents.DotNetBar.TabControlPanel();
+ this.displayTransition = new Volian.Controls.Library.DisplayTransition();
+ this.infotabTransition = new DevComponents.DotNetBar.TabItem(this.components);
this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
this.btnClrBookMrks = new DevComponents.DotNetBar.ButtonX();
@@ -268,11 +270,12 @@ namespace VEPROMS
this.expandableSplitter3 = new DevComponents.DotNetBar.ExpandableSplitter();
this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
this.tc = new Volian.Controls.Library.DisplayTabControl();
+ this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.ribbonControl1.SuspendLayout();
+ this.ribbonPanel2.SuspendLayout();
this.ribbonPanel1.SuspendLayout();
this.ribbonPanel4.SuspendLayout();
this.ribbonPanel3.SuspendLayout();
- this.ribbonPanel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bottomBar)).BeginInit();
this.epComments.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.c1CommentGrid)).BeginInit();
@@ -281,16 +284,17 @@ namespace VEPROMS
this.infoPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.infoTabs)).BeginInit();
this.infoTabs.SuspendLayout();
- this.infotabControlPanelRO.SuspendLayout();
this.tabControlPanel1.SuspendLayout();
this.panelEx1.SuspendLayout();
this.groupPanel4.SuspendLayout();
this.groupPanel3.SuspendLayout();
this.groupPanel2.SuspendLayout();
this.groupPanel1.SuspendLayout();
- this.infotabControlPanelTransitions.SuspendLayout();
this.tabControlPanel3.SuspendLayout();
this.navpaneResults.SuspendLayout();
+ this.navpanSrchRslts.SuspendLayout();
+ this.infotabControlPanelRO.SuspendLayout();
+ this.infotabControlPanelTransitions.SuspendLayout();
this.tabControlPanel2.SuspendLayout();
this.panelEx4.SuspendLayout();
this.SuspendLayout();
@@ -322,6 +326,863 @@ namespace VEPROMS
this.ribbonControl1.TabIndex = 0;
this.ribbonControl1.Text = "ribbonControl1";
//
+ // ribbonPanel2
+ //
+ this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
+ this.ribbonPanel2.Controls.Add(this.rbnTextFncts);
+ this.ribbonPanel2.Controls.Add(this.rbnInsert);
+ this.ribbonPanel2.Controls.Add(this.rbnFont);
+ this.ribbonPanel2.Controls.Add(this.rbnClipboard);
+ this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ribbonPanel2.Location = new System.Drawing.Point(0, 55);
+ this.ribbonPanel2.Name = "ribbonPanel2";
+ this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
+ this.ribbonPanel2.Size = new System.Drawing.Size(1028, 89);
+ this.ribbonPanel2.TabIndex = 2;
+ //
+ // rbnTextFncts
+ //
+ this.rbnTextFncts.AutoOverflowEnabled = true;
+ this.rbnTextFncts.Dock = System.Windows.Forms.DockStyle.Left;
+ this.rbnTextFncts.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnSplChk,
+ this.labelItem18,
+ this.btnChgTyp,
+ this.labelItem23,
+ this.btnFindRplDlg,
+ this.labelItem24,
+ this.btnCpyStp});
+ this.rbnTextFncts.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
+ this.rbnTextFncts.Location = new System.Drawing.Point(713, 0);
+ this.rbnTextFncts.Name = "rbnTextFncts";
+ this.rbnTextFncts.Size = new System.Drawing.Size(244, 86);
+ this.rbnTextFncts.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
+ this.rbnTextFncts.TabIndex = 13;
+ this.rbnTextFncts.Text = "Text Functions";
+ //
+ // btnSplChk
+ //
+ this.btnSplChk.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnSplChk.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnSplChk.Image = ((System.Drawing.Image)(resources.GetObject("btnSplChk.Image")));
+ this.btnSplChk.ImagePaddingHorizontal = 8;
+ this.btnSplChk.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnSplChk.Name = "btnSplChk";
+ this.superTooltip1.SetSuperTooltip(this.btnSplChk, new DevComponents.DotNetBar.SuperTooltipInfo("Check", "", "Check the Spelling", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnSplChk.Text = "Spell Check";
+ //
+ // labelItem18
+ //
+ this.labelItem18.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem18.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem18.Name = "labelItem18";
+ //
+ // btnChgTyp
+ //
+ this.btnChgTyp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnChgTyp.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnChgTyp.Image = ((System.Drawing.Image)(resources.GetObject("btnChgTyp.Image")));
+ this.btnChgTyp.ImagePaddingHorizontal = 8;
+ this.btnChgTyp.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnChgTyp.Name = "btnChgTyp";
+ this.btnChgTyp.RibbonWordWrap = false;
+ this.btnChgTyp.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnChgTyp, new DevComponents.DotNetBar.SuperTooltipInfo("Style", "", "This will allow you to change the High Level or substep type.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnChgTyp.Text = "Change\r\nStep Type";
+ //
+ // labelItem23
+ //
+ this.labelItem23.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem23.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem23.Name = "labelItem23";
+ //
+ // btnFindRplDlg
+ //
+ this.btnFindRplDlg.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnFindRplDlg.Image = ((System.Drawing.Image)(resources.GetObject("btnFindRplDlg.Image")));
+ this.btnFindRplDlg.ImagePaddingHorizontal = 8;
+ this.btnFindRplDlg.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnFindRplDlg.Name = "btnFindRplDlg";
+ this.btnFindRplDlg.RibbonWordWrap = false;
+ this.btnFindRplDlg.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnFindRplDlg, new DevComponents.DotNetBar.SuperTooltipInfo("Find Utility", "", "The Find button display a dialog window allowing you to look for text and optiona" +
+ "lly replace it.", ((System.Drawing.Image)(resources.GetObject("btnFindRplDlg.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(358, 134)));
+ this.btnFindRplDlg.Text = "Find /\r\nReplace";
+ this.btnFindRplDlg.Click += new System.EventHandler(this.btnFindRplDlg_Click_1);
+ //
+ // labelItem24
+ //
+ this.labelItem24.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem24.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem24.Name = "labelItem24";
+ //
+ // btnCpyStp
+ //
+ this.btnCpyStp.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnCpyStp.Image = ((System.Drawing.Image)(resources.GetObject("btnCpyStp.Image")));
+ this.btnCpyStp.ImagePaddingHorizontal = 8;
+ this.btnCpyStp.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnCpyStp.Name = "btnCpyStp";
+ this.btnCpyStp.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnCpyStp, new DevComponents.DotNetBar.SuperTooltipInfo("Copy Step", "", "Allows you to copy an entire or part of a step, including Transition and RO links" +
+ ".", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnCpyStp.Text = "Copy\r\nStep";
+ //
+ // rbnInsert
+ //
+ this.rbnInsert.AutoOverflowEnabled = true;
+ this.rbnInsert.Dock = System.Windows.Forms.DockStyle.Left;
+ this.rbnInsert.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.galleryContainer3,
+ this.labelItem4,
+ this.itemContainer13,
+ this.labelItem25,
+ this.btnInsStpParts,
+ this.labelItem21,
+ this.itemContainer12,
+ this.labelItem22,
+ this.itemContainer11});
+ this.rbnInsert.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
+ this.rbnInsert.Location = new System.Drawing.Point(226, 0);
+ this.rbnInsert.Name = "rbnInsert";
+ this.rbnInsert.Size = new System.Drawing.Size(487, 86);
+ this.rbnInsert.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
+ this.rbnInsert.TabIndex = 12;
+ this.rbnInsert.Text = "Insert";
+ //
+ // galleryContainer3
+ //
+ this.galleryContainer3.GalleryGroups.AddRange(new DevComponents.DotNetBar.GalleryGroup[] {
+ this.galleryGroup1,
+ this.galleryGroup2,
+ this.galleryGroup3});
+ this.galleryContainer3.MinimumSize = new System.Drawing.Size(58, 58);
+ this.galleryContainer3.Name = "galleryContainer3";
+ this.galleryContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.buttonItem55,
+ this.buttonItem56,
+ this.buttonItem26,
+ this.buttonItem83,
+ this.buttonItem86,
+ this.buttonItem82,
+ this.buttonItem67,
+ this.buttonItem78,
+ this.buttonItem75,
+ this.buttonItem81,
+ this.buttonItem85,
+ this.buttonItem69,
+ this.buttonItem72,
+ this.buttonItem66,
+ this.buttonItem65,
+ this.buttonItem62,
+ this.buttonItem64,
+ this.buttonItem73,
+ this.buttonItem71,
+ this.buttonItem80,
+ this.buttonItem57,
+ this.buttonItem61,
+ this.buttonItem79,
+ this.buttonItem76,
+ this.buttonItem77,
+ this.buttonItem58,
+ this.buttonItem59,
+ this.buttonItem70,
+ this.buttonItem74,
+ this.buttonItem87,
+ this.buttonItem63,
+ this.buttonItem60,
+ this.buttonItem68,
+ this.buttonItem84});
+ this.superTooltip1.SetSuperTooltip(this.galleryContainer3, new DevComponents.DotNetBar.SuperTooltipInfo("Symbol", "", "Selecting a symbol character from this list will insert the character at your cur" +
+ "rent cursor location.\r\n\r\nThe button below the scroll down button will display a " +
+ "gallery of special characters.", null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(194, 159)));
+ //
+ // galleryGroup1
+ //
+ this.galleryGroup1.Name = "galleryGroup1";
+ this.galleryGroup1.Text = "Common";
+ //
+ // galleryGroup2
+ //
+ this.galleryGroup2.DisplayOrder = 1;
+ this.galleryGroup2.Name = "galleryGroup2";
+ this.galleryGroup2.Text = "Math";
+ //
+ // galleryGroup3
+ //
+ this.galleryGroup3.DisplayOrder = 2;
+ this.galleryGroup3.Name = "galleryGroup3";
+ this.galleryGroup3.Text = "Misc.";
+ //
+ // buttonItem55
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem55, this.galleryGroup1);
+ this.buttonItem55.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem55.Image")));
+ this.buttonItem55.ImagePaddingHorizontal = 8;
+ this.buttonItem55.Name = "buttonItem55";
+ this.buttonItem55.Text = "buttonItem19";
+ this.buttonItem55.Tooltip = "Degree";
+ //
+ // buttonItem56
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem56, this.galleryGroup1);
+ this.buttonItem56.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem56.Image")));
+ this.buttonItem56.ImagePaddingHorizontal = 8;
+ this.buttonItem56.Name = "buttonItem56";
+ this.buttonItem56.Text = "buttonItem19";
+ this.buttonItem56.Tooltip = "Delta";
+ //
+ // buttonItem26
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem26, this.galleryGroup1);
+ this.buttonItem26.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem26.Image")));
+ this.buttonItem26.ImagePaddingHorizontal = 8;
+ this.buttonItem26.Name = "buttonItem26";
+ this.buttonItem26.Text = "buttonItem26";
+ this.buttonItem26.Tooltip = "Bullet";
+ //
+ // buttonItem83
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem83, this.galleryGroup1);
+ this.buttonItem83.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem83.Image")));
+ this.buttonItem83.ImagePaddingHorizontal = 8;
+ this.buttonItem83.Name = "buttonItem83";
+ this.buttonItem83.Tooltip = "PI";
+ //
+ // buttonItem86
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem86, this.galleryGroup1);
+ this.buttonItem86.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem86.Image")));
+ this.buttonItem86.ImagePaddingHorizontal = 8;
+ this.buttonItem86.Name = "buttonItem86";
+ this.buttonItem86.Tooltip = "Square Root";
+ //
+ // buttonItem82
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem82, this.galleryGroup2);
+ this.buttonItem82.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem82.Image")));
+ this.buttonItem82.ImagePaddingHorizontal = 8;
+ this.buttonItem82.Name = "buttonItem82";
+ this.buttonItem82.Tooltip = "Sigma";
+ //
+ // buttonItem67
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem67, this.galleryGroup2);
+ this.buttonItem67.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem67.Image")));
+ this.buttonItem67.ImagePaddingHorizontal = 8;
+ this.buttonItem67.Name = "buttonItem67";
+ this.buttonItem67.Tooltip = "Gamma";
+ //
+ // buttonItem78
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem78, this.galleryGroup2);
+ this.buttonItem78.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem78.Image")));
+ this.buttonItem78.ImagePaddingHorizontal = 8;
+ this.buttonItem78.Name = "buttonItem78";
+ this.buttonItem78.Tooltip = "Tau";
+ //
+ // buttonItem75
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem75, this.galleryGroup2);
+ this.buttonItem75.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem75.Image")));
+ this.buttonItem75.ImagePaddingHorizontal = 8;
+ this.buttonItem75.Name = "buttonItem75";
+ this.buttonItem75.Tooltip = "Micro";
+ //
+ // buttonItem81
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem81, this.galleryGroup2);
+ this.buttonItem81.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem81.Image")));
+ this.buttonItem81.ImagePaddingHorizontal = 8;
+ this.buttonItem81.Name = "buttonItem81";
+ this.buttonItem81.Tooltip = "Rho";
+ //
+ // buttonItem85
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem85, this.galleryGroup2);
+ this.buttonItem85.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem85.Image")));
+ this.buttonItem85.ImagePaddingHorizontal = 8;
+ this.buttonItem85.Name = "buttonItem85";
+ this.buttonItem85.Tooltip = "Theta";
+ //
+ // buttonItem69
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem69, this.galleryGroup2);
+ this.buttonItem69.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem69.Image")));
+ this.buttonItem69.ImagePaddingHorizontal = 8;
+ this.buttonItem69.Name = "buttonItem69";
+ this.buttonItem69.Tooltip = "Lower Case Sigma";
+ //
+ // buttonItem72
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem72, this.galleryGroup2);
+ this.buttonItem72.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem72.Image")));
+ this.buttonItem72.ImagePaddingHorizontal = 8;
+ this.buttonItem72.Name = "buttonItem72";
+ this.buttonItem72.Tooltip = "Lower Case Delta";
+ //
+ // buttonItem66
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem66, this.galleryGroup2);
+ this.buttonItem66.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem66.Image")));
+ this.buttonItem66.ImagePaddingHorizontal = 8;
+ this.buttonItem66.Name = "buttonItem66";
+ this.buttonItem66.Tooltip = "Epsilon";
+ //
+ // buttonItem65
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem65, this.galleryGroup2);
+ this.buttonItem65.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem65.Image")));
+ this.buttonItem65.ImagePaddingHorizontal = 8;
+ this.buttonItem65.Name = "buttonItem65";
+ this.buttonItem65.Tooltip = "Grave";
+ //
+ // buttonItem62
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem62, this.galleryGroup2);
+ this.buttonItem62.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem62.Image")));
+ this.buttonItem62.ImagePaddingHorizontal = 8;
+ this.buttonItem62.Name = "buttonItem62";
+ this.buttonItem62.Tooltip = "Average Disintegration Energy";
+ //
+ // buttonItem64
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem64, this.galleryGroup3);
+ this.buttonItem64.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem64.Image")));
+ this.buttonItem64.ImagePaddingHorizontal = 8;
+ this.buttonItem64.Name = "buttonItem64";
+ this.buttonItem64.Tooltip = "ACCUM Character";
+ //
+ // buttonItem73
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem73, this.galleryGroup2);
+ this.buttonItem73.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem73.Image")));
+ this.buttonItem73.ImagePaddingHorizontal = 8;
+ this.buttonItem73.Name = "buttonItem73";
+ this.buttonItem73.Tooltip = "Greater Than or Equal";
+ //
+ // buttonItem71
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem71, this.galleryGroup2);
+ this.buttonItem71.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem71.Image")));
+ this.buttonItem71.ImagePaddingHorizontal = 8;
+ this.buttonItem71.Name = "buttonItem71";
+ this.buttonItem71.Tooltip = "Less Than or Equal";
+ //
+ // buttonItem80
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem80, this.galleryGroup2);
+ this.buttonItem80.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem80.Image")));
+ this.buttonItem80.ImagePaddingHorizontal = 8;
+ this.buttonItem80.Name = "buttonItem80";
+ this.buttonItem80.Tooltip = "Plus Minus";
+ //
+ // buttonItem57
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem57, this.galleryGroup2);
+ this.buttonItem57.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem57.Image")));
+ this.buttonItem57.ImagePaddingHorizontal = 8;
+ this.buttonItem57.Name = "buttonItem57";
+ this.buttonItem57.Text = "buttonItem19";
+ this.buttonItem57.Tooltip = "Division symbol";
+ //
+ // buttonItem61
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem61, this.galleryGroup2);
+ this.buttonItem61.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem61.Image")));
+ this.buttonItem61.ImagePaddingHorizontal = 8;
+ this.buttonItem61.Name = "buttonItem61";
+ this.buttonItem61.Tooltip = "Approximate";
+ //
+ // buttonItem79
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem79, this.galleryGroup2);
+ this.buttonItem79.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem79.Image")));
+ this.buttonItem79.ImagePaddingHorizontal = 8;
+ this.buttonItem79.Name = "buttonItem79";
+ this.buttonItem79.Tooltip = "Similar or Equal";
+ //
+ // buttonItem76
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem76, this.galleryGroup3);
+ this.buttonItem76.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem76.Image")));
+ this.buttonItem76.ImagePaddingHorizontal = 8;
+ this.buttonItem76.Name = "buttonItem76";
+ this.buttonItem76.Tooltip = "One Half";
+ //
+ // buttonItem77
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem77, this.galleryGroup3);
+ this.buttonItem77.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem77.Image")));
+ this.buttonItem77.ImagePaddingHorizontal = 8;
+ this.buttonItem77.Name = "buttonItem77";
+ this.buttonItem77.Tooltip = "One Quarter";
+ //
+ // buttonItem58
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem58, this.galleryGroup3);
+ this.buttonItem58.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem58.Image")));
+ this.buttonItem58.ImagePaddingHorizontal = 8;
+ this.buttonItem58.Name = "buttonItem58";
+ this.buttonItem58.Text = "buttonItem19";
+ this.buttonItem58.Tooltip = "Distinguished Zero";
+ //
+ // buttonItem59
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem59, this.galleryGroup3);
+ this.buttonItem59.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem59.Image")));
+ this.buttonItem59.ImagePaddingHorizontal = 8;
+ this.buttonItem59.Name = "buttonItem59";
+ this.buttonItem59.Text = "buttonItem19";
+ this.buttonItem59.Tooltip = "Diamond";
+ //
+ // buttonItem70
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem70, this.galleryGroup3);
+ this.buttonItem70.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem70.Image")));
+ this.buttonItem70.ImagePaddingHorizontal = 8;
+ this.buttonItem70.Name = "buttonItem70";
+ this.buttonItem70.Tooltip = "Inverted Triangle";
+ //
+ // buttonItem74
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem74, this.galleryGroup3);
+ this.buttonItem74.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem74.Image")));
+ this.buttonItem74.ImagePaddingHorizontal = 8;
+ this.buttonItem74.Name = "buttonItem74";
+ this.buttonItem74.Tooltip = "Dot in Oval";
+ //
+ // buttonItem87
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem87, this.galleryGroup3);
+ this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
+ this.buttonItem87.ImagePaddingHorizontal = 8;
+ this.buttonItem87.Name = "buttonItem87";
+ this.buttonItem87.Tooltip = "Up Arrrow";
+ //
+ // buttonItem63
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem63, this.galleryGroup3);
+ this.buttonItem63.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem63.Image")));
+ this.buttonItem63.ImagePaddingHorizontal = 8;
+ this.buttonItem63.Name = "buttonItem63";
+ this.buttonItem63.Tooltip = "Down Arrow";
+ //
+ // buttonItem60
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem60, this.galleryGroup3);
+ this.buttonItem60.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem60.Image")));
+ this.buttonItem60.ImagePaddingHorizontal = 8;
+ this.buttonItem60.Name = "buttonItem60";
+ this.buttonItem60.Tooltip = "Left Arrow";
+ //
+ // buttonItem68
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem68, this.galleryGroup3);
+ this.buttonItem68.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem68.Image")));
+ this.buttonItem68.ImagePaddingHorizontal = 8;
+ this.buttonItem68.Name = "buttonItem68";
+ this.buttonItem68.Tooltip = "Right Arrow";
+ //
+ // buttonItem84
+ //
+ this.galleryContainer3.SetGalleryGroup(this.buttonItem84, this.galleryGroup3);
+ this.buttonItem84.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem84.Image")));
+ this.buttonItem84.ImagePaddingHorizontal = 8;
+ this.buttonItem84.Name = "buttonItem84";
+ this.buttonItem84.Tooltip = "Vertical Line";
+ //
+ // labelItem4
+ //
+ this.labelItem4.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem4.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem4.Name = "labelItem4";
+ //
+ // itemContainer13
+ //
+ this.itemContainer13.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
+ this.itemContainer13.MinimumSize = new System.Drawing.Size(0, 0);
+ this.itemContainer13.Name = "itemContainer13";
+ this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnInsPgBrk,
+ this.btnInsHrdSpc});
+ //
+ // btnInsPgBrk
+ //
+ this.btnInsPgBrk.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsPgBrk.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsPgBrk.Image = ((System.Drawing.Image)(resources.GetObject("btnInsPgBrk.Image")));
+ this.btnInsPgBrk.ImagePaddingHorizontal = 8;
+ this.btnInsPgBrk.Name = "btnInsPgBrk";
+ this.btnInsPgBrk.SubItemsExpandWidth = 14;
+ this.btnInsPgBrk.Text = " Page Break";
+ //
+ // btnInsHrdSpc
+ //
+ this.btnInsHrdSpc.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsHrdSpc.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsHrdSpc.Image = ((System.Drawing.Image)(resources.GetObject("btnInsHrdSpc.Image")));
+ this.btnInsHrdSpc.ImagePaddingHorizontal = 8;
+ this.btnInsHrdSpc.Name = "btnInsHrdSpc";
+ this.btnInsHrdSpc.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnInsHrdSpc, new DevComponents.DotNetBar.SuperTooltipInfo("Hard Space", "", "Inserts a Hard Space.\r\n\r\nA Hard Space will print as a normal space but will tie t" +
+ "he word before and after it so that they will not be broken between two lines.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnInsHrdSpc.Text = " Hard Space";
+ //
+ // labelItem25
+ //
+ this.labelItem25.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem25.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem25.Name = "labelItem25";
+ //
+ // btnInsStpParts
+ //
+ this.btnInsStpParts.AutoExpandOnClick = true;
+ this.btnInsStpParts.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsStpParts.Image = ((System.Drawing.Image)(resources.GetObject("btnInsStpParts.Image")));
+ this.btnInsStpParts.ImagePaddingHorizontal = 8;
+ this.btnInsStpParts.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsStpParts.Name = "btnInsStpParts";
+ this.btnInsStpParts.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.StepPartsGallery});
+ this.btnInsStpParts.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnInsStpParts, new DevComponents.DotNetBar.SuperTooltipInfo("Step Parts", "", "", ((System.Drawing.Image)(resources.GetObject("btnInsStpParts.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnInsStpParts.Text = "Step\r\nParts";
+ //
+ // StepPartsGallery
+ //
+ this.StepPartsGallery.MinimumSize = new System.Drawing.Size(240, 100);
+ this.StepPartsGallery.Name = "StepPartsGallery";
+ this.StepPartsGallery.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnInsHLS,
+ this.btnInsCaut,
+ this.btnInsNote,
+ this.btnInsWarn,
+ this.btnInsSubStp,
+ this.btnInsRNO,
+ this.btnInsTable,
+ this.btnInsFig});
+ this.StepPartsGallery.Text = "galleryContainer2";
+ //
+ // btnInsHLS
+ //
+ this.btnInsHLS.Image = ((System.Drawing.Image)(resources.GetObject("btnInsHLS.Image")));
+ this.btnInsHLS.ImagePaddingHorizontal = 8;
+ this.btnInsHLS.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsHLS.Name = "btnInsHLS";
+ this.btnInsHLS.Text = "Highlevel\r\nStep";
+ //
+ // btnInsCaut
+ //
+ this.btnInsCaut.Image = ((System.Drawing.Image)(resources.GetObject("btnInsCaut.Image")));
+ this.btnInsCaut.ImagePaddingHorizontal = 8;
+ this.btnInsCaut.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsCaut.Name = "btnInsCaut";
+ this.btnInsCaut.SplitButton = true;
+ this.btnInsCaut.Text = "Caution";
+ //
+ // btnInsNote
+ //
+ this.btnInsNote.Image = ((System.Drawing.Image)(resources.GetObject("btnInsNote.Image")));
+ this.btnInsNote.ImagePaddingHorizontal = 8;
+ this.btnInsNote.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsNote.Name = "btnInsNote";
+ this.btnInsNote.SubItemsExpandWidth = 14;
+ this.btnInsNote.Text = "Note";
+ //
+ // btnInsWarn
+ //
+ this.btnInsWarn.Image = ((System.Drawing.Image)(resources.GetObject("btnInsWarn.Image")));
+ this.btnInsWarn.ImagePaddingHorizontal = 8;
+ this.btnInsWarn.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsWarn.Name = "btnInsWarn";
+ this.btnInsWarn.SubItemsExpandWidth = 14;
+ this.btnInsWarn.Text = "Warning";
+ //
+ // btnInsSubStp
+ //
+ this.btnInsSubStp.Image = ((System.Drawing.Image)(resources.GetObject("btnInsSubStp.Image")));
+ this.btnInsSubStp.ImagePaddingHorizontal = 8;
+ this.btnInsSubStp.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsSubStp.Name = "btnInsSubStp";
+ this.btnInsSubStp.Text = "Substep";
+ //
+ // btnInsRNO
+ //
+ this.btnInsRNO.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsRNO.Image = ((System.Drawing.Image)(resources.GetObject("btnInsRNO.Image")));
+ this.btnInsRNO.ImagePaddingHorizontal = 8;
+ this.btnInsRNO.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsRNO.Name = "btnInsRNO";
+ this.btnInsRNO.SubItemsExpandWidth = 14;
+ this.btnInsRNO.Text = "RNO";
+ //
+ // btnInsTable
+ //
+ this.btnInsTable.Image = ((System.Drawing.Image)(resources.GetObject("btnInsTable.Image")));
+ this.btnInsTable.ImagePaddingHorizontal = 8;
+ this.btnInsTable.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsTable.Name = "btnInsTable";
+ this.btnInsTable.Text = "Table";
+ this.btnInsTable.Click += new System.EventHandler(this.btnInsTable_Click);
+ //
+ // btnInsFig
+ //
+ this.btnInsFig.Image = ((System.Drawing.Image)(resources.GetObject("btnInsFig.Image")));
+ this.btnInsFig.ImagePaddingHorizontal = 8;
+ this.btnInsFig.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnInsFig.Name = "btnInsFig";
+ this.btnInsFig.Text = "Figure";
+ //
+ // labelItem21
+ //
+ this.labelItem21.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem21.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem21.Name = "labelItem21";
+ //
+ // itemContainer12
+ //
+ this.itemContainer12.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
+ this.itemContainer12.MinimumSize = new System.Drawing.Size(0, 0);
+ this.itemContainer12.Name = "itemContainer12";
+ this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnInsBefore,
+ this.btnInsAfter});
+ //
+ // btnInsBefore
+ //
+ this.btnInsBefore.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsBefore.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsBefore.Image = ((System.Drawing.Image)(resources.GetObject("btnInsBefore.Image")));
+ this.btnInsBefore.ImagePaddingHorizontal = 8;
+ this.btnInsBefore.Name = "btnInsBefore";
+ this.btnInsBefore.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnInsBefore, new DevComponents.DotNetBar.SuperTooltipInfo("Insert Before", "", "This will insert a step part of the same type BEFORE your current selection.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnInsBefore.Text = "Before";
+ //
+ // btnInsAfter
+ //
+ this.btnInsAfter.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsAfter.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsAfter.Image = ((System.Drawing.Image)(resources.GetObject("btnInsAfter.Image")));
+ this.btnInsAfter.ImagePaddingHorizontal = 8;
+ this.btnInsAfter.Name = "btnInsAfter";
+ this.btnInsAfter.SubItemsExpandWidth = 14;
+ this.superTooltip1.SetSuperTooltip(this.btnInsAfter, new DevComponents.DotNetBar.SuperTooltipInfo("Insert After", "", "This will insert a step part of the same type AFTER your current selection.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnInsAfter.Text = "After";
+ //
+ // labelItem22
+ //
+ this.labelItem22.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem22.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem22.Name = "labelItem22";
+ //
+ // itemContainer11
+ //
+ this.itemContainer11.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
+ this.itemContainer11.MinimumSize = new System.Drawing.Size(0, 0);
+ this.itemContainer11.Name = "itemContainer11";
+ this.itemContainer11.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnInsTrans,
+ this.btnInsRO});
+ //
+ // btnInsTrans
+ //
+ this.btnInsTrans.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsTrans.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsTrans.Image = ((System.Drawing.Image)(resources.GetObject("btnInsTrans.Image")));
+ this.btnInsTrans.ImagePaddingHorizontal = 8;
+ this.btnInsTrans.Name = "btnInsTrans";
+ this.btnInsTrans.RibbonWordWrap = false;
+ this.superTooltip1.SetSuperTooltip(this.btnInsTrans, new DevComponents.DotNetBar.SuperTooltipInfo("Insert", "", "Insert a New Transition\r\n\r\nA Transition is a live reference to different step, se" +
+ "ction, and/or procedure.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(160, 130)));
+ this.btnInsTrans.Text = "Transition";
+ this.btnInsTrans.Tooltip = "Insert New or Modify Existing Transition";
+ this.btnInsTrans.Click += new System.EventHandler(this.btnInsTrans_Click);
+ //
+ // btnInsRO
+ //
+ this.btnInsRO.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnInsRO.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnInsRO.Image = ((System.Drawing.Image)(resources.GetObject("btnInsRO.Image")));
+ this.btnInsRO.ImagePaddingHorizontal = 8;
+ this.btnInsRO.Name = "btnInsRO";
+ this.btnInsRO.RibbonWordWrap = false;
+ this.superTooltip1.SetSuperTooltip(this.btnInsRO, new DevComponents.DotNetBar.SuperTooltipInfo("Insert Referenced Object", "", "Insert a New Referenced Object.\r\n\r\nA Referenced Object is a live reference to a v" +
+ "alue in the Referenced Object Database.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnInsRO.Text = "Referenced\r\nObject";
+ //
+ // rbnFont
+ //
+ this.rbnFont.AutoOverflowEnabled = true;
+ this.rbnFont.Dock = System.Windows.Forms.DockStyle.Left;
+ this.rbnFont.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.itemContainer6});
+ this.rbnFont.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
+ this.rbnFont.Location = new System.Drawing.Point(120, 0);
+ this.rbnFont.Name = "rbnFont";
+ this.rbnFont.Size = new System.Drawing.Size(106, 86);
+ this.rbnFont.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
+ this.rbnFont.TabIndex = 9;
+ this.rbnFont.Text = "Font";
+ //
+ // itemContainer6
+ //
+ this.itemContainer6.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
+ this.itemContainer6.MinimumSize = new System.Drawing.Size(0, 0);
+ this.itemContainer6.Name = "itemContainer6";
+ this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.itemContainer7,
+ this.btnChgCase});
+ //
+ // itemContainer7
+ //
+ this.itemContainer7.MinimumSize = new System.Drawing.Size(0, 0);
+ this.itemContainer7.Name = "itemContainer7";
+ this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnBold,
+ this.labelItem15,
+ this.btnItalics,
+ this.labelItem16,
+ this.btnUline});
+ //
+ // btnBold
+ //
+ this.btnBold.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnBold.FontBold = true;
+ this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
+ this.btnBold.ImagePaddingHorizontal = 8;
+ this.btnBold.Name = "btnBold";
+ this.superTooltip1.SetSuperTooltip(this.btnBold, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "This will turn the bold attribute ON/OFF", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnBold.Text = "B";
+ this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
+ //
+ // labelItem15
+ //
+ this.labelItem15.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem15.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem15.Name = "labelItem15";
+ //
+ // btnItalics
+ //
+ this.btnItalics.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnItalics.FontBold = true;
+ this.btnItalics.FontItalic = true;
+ this.btnItalics.Image = ((System.Drawing.Image)(resources.GetObject("btnItalics.Image")));
+ this.btnItalics.ImagePaddingHorizontal = 8;
+ this.btnItalics.Name = "btnItalics";
+ this.superTooltip1.SetSuperTooltip(this.btnItalics, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "This will turn the Italics attribute ON/OFF", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnItalics.Text = "I";
+ this.btnItalics.Click += new System.EventHandler(this.btnItalics_Click);
+ //
+ // labelItem16
+ //
+ this.labelItem16.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem16.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem16.Name = "labelItem16";
+ //
+ // btnUline
+ //
+ this.btnUline.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnUline.FontBold = true;
+ this.btnUline.FontUnderline = true;
+ this.btnUline.Image = ((System.Drawing.Image)(resources.GetObject("btnUline.Image")));
+ this.btnUline.ImagePaddingHorizontal = 8;
+ this.btnUline.Name = "btnUline";
+ this.superTooltip1.SetSuperTooltip(this.btnUline, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "This will turn the underline attribute ON/OFF", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnUline.Click += new System.EventHandler(this.btnUline_Click);
+ //
+ // btnChgCase
+ //
+ this.btnChgCase.AutoExpandOnClick = true;
+ this.btnChgCase.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnChgCase.ImagePaddingHorizontal = 8;
+ this.btnChgCase.Name = "btnChgCase";
+ this.btnChgCase.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnUpCase,
+ this.btnLowCase,
+ this.btnTitleCase});
+ this.superTooltip1.SetSuperTooltip(this.btnChgCase, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "Change the letter case for the selected text:\r\n \r\n- UPPER CASE\r\n- lower case\r\n- T" +
+ "itle Case\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnChgCase.Text = "Change Case";
+ //
+ // btnUpCase
+ //
+ this.btnUpCase.ImagePaddingHorizontal = 8;
+ this.btnUpCase.Name = "btnUpCase";
+ this.btnUpCase.Text = "UPPER CASE";
+ //
+ // btnLowCase
+ //
+ this.btnLowCase.ImagePaddingHorizontal = 8;
+ this.btnLowCase.Name = "btnLowCase";
+ this.btnLowCase.Text = "lower case";
+ //
+ // btnTitleCase
+ //
+ this.btnTitleCase.ImagePaddingHorizontal = 8;
+ this.btnTitleCase.Name = "btnTitleCase";
+ this.btnTitleCase.Text = "Title Case";
+ //
+ // rbnClipboard
+ //
+ this.rbnClipboard.AutoOverflowEnabled = true;
+ this.rbnClipboard.Dock = System.Windows.Forms.DockStyle.Left;
+ this.rbnClipboard.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.itemContainer8,
+ this.labelItem19,
+ this.btnClpBrdPaste});
+ this.rbnClipboard.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
+ this.rbnClipboard.Location = new System.Drawing.Point(3, 0);
+ this.rbnClipboard.Name = "rbnClipboard";
+ this.rbnClipboard.Size = new System.Drawing.Size(117, 86);
+ this.rbnClipboard.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
+ this.rbnClipboard.TabIndex = 3;
+ this.rbnClipboard.Text = "Clipboard";
+ //
+ // itemContainer8
+ //
+ this.itemContainer8.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
+ this.itemContainer8.MinimumSize = new System.Drawing.Size(0, 0);
+ this.itemContainer8.Name = "itemContainer8";
+ this.itemContainer8.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
+ this.btnClpBrdCopy,
+ this.btnClpBrdCut});
+ //
+ // btnClpBrdCopy
+ //
+ this.btnClpBrdCopy.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnClpBrdCopy.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnClpBrdCopy.Image = ((System.Drawing.Image)(resources.GetObject("btnClpBrdCopy.Image")));
+ this.btnClpBrdCopy.ImagePaddingHorizontal = 8;
+ this.btnClpBrdCopy.Name = "btnClpBrdCopy";
+ this.btnClpBrdCopy.Text = "Copy";
+ //
+ // btnClpBrdCut
+ //
+ this.btnClpBrdCut.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnClpBrdCut.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnClpBrdCut.Image = ((System.Drawing.Image)(resources.GetObject("btnClpBrdCut.Image")));
+ this.btnClpBrdCut.ImagePaddingHorizontal = 8;
+ this.btnClpBrdCut.Name = "btnClpBrdCut";
+ this.btnClpBrdCut.Text = "Cut";
+ //
+ // labelItem19
+ //
+ this.labelItem19.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
+ this.labelItem19.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
+ this.labelItem19.Name = "labelItem19";
+ //
+ // btnClpBrdPaste
+ //
+ this.btnClpBrdPaste.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
+ this.btnClpBrdPaste.Cursor = System.Windows.Forms.Cursors.Hand;
+ this.btnClpBrdPaste.Image = ((System.Drawing.Image)(resources.GetObject("btnClpBrdPaste.Image")));
+ this.btnClpBrdPaste.ImagePaddingHorizontal = 8;
+ this.btnClpBrdPaste.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
+ this.btnClpBrdPaste.Name = "btnClpBrdPaste";
+ this.btnClpBrdPaste.Text = "Paste";
+ //
// ribbonPanel1
//
this.ribbonPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
@@ -745,8 +1606,8 @@ namespace VEPROMS
this.btnAprvSel.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
this.btnAprvSel.Name = "btnAprvSel";
this.superTooltip1.SetSuperTooltip(this.btnAprvSel, new DevComponents.DotNetBar.SuperTooltipInfo("Approve", "", "This will allow you to select procedures to approve. Note that due to inter-rela" +
- "tionships and shared references, additional procedures may also need approved al" +
- "ong with the selected procedures.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ "tionships and shared references, additional procedures may also need approved al" +
+ "ong with the selected procedures.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.btnAprvSel.Text = "Selected\r\nProcedures";
//
// rbnMultiUser
@@ -793,7 +1654,7 @@ namespace VEPROMS
this.btnLock.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
this.btnLock.Name = "btnLock";
this.superTooltip1.SetSuperTooltip(this.btnLock, new DevComponents.DotNetBar.SuperTooltipInfo("Multi User", "", "Set a lock at this level (of the procedures tree).\r\n\r\nA lock will prevent other u" +
- "sers from entering at this level.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ "sers from entering at this level.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.btnLock.Text = "Lock";
//
// labelItem5
@@ -811,866 +1672,9 @@ namespace VEPROMS
this.btnListUsers.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
this.btnListUsers.Name = "btnListUsers";
this.superTooltip1.SetSuperTooltip(this.btnListUsers, new DevComponents.DotNetBar.SuperTooltipInfo("Multi User", "", "This will display a list of the users currently working in this area of your proc" +
- "edures.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ "edures.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.btnListUsers.Text = "List Users";
//
- // ribbonPanel2
- //
- this.ribbonPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
- this.ribbonPanel2.Controls.Add(this.rbnTextFncts);
- this.ribbonPanel2.Controls.Add(this.rbnInsert);
- this.ribbonPanel2.Controls.Add(this.rbnFont);
- this.ribbonPanel2.Controls.Add(this.rbnClipboard);
- this.ribbonPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ribbonPanel2.Location = new System.Drawing.Point(0, 55);
- this.ribbonPanel2.Name = "ribbonPanel2";
- this.ribbonPanel2.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
- this.ribbonPanel2.Size = new System.Drawing.Size(1028, 89);
- this.ribbonPanel2.TabIndex = 2;
- //
- // rbnTextFncts
- //
- this.rbnTextFncts.AutoOverflowEnabled = true;
- this.rbnTextFncts.Dock = System.Windows.Forms.DockStyle.Left;
- this.rbnTextFncts.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnSplChk,
- this.labelItem18,
- this.btnChgTyp,
- this.labelItem23,
- this.btnFindRplDlg,
- this.labelItem24,
- this.btnCpyStp});
- this.rbnTextFncts.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
- this.rbnTextFncts.Location = new System.Drawing.Point(713, 0);
- this.rbnTextFncts.Name = "rbnTextFncts";
- this.rbnTextFncts.Size = new System.Drawing.Size(244, 86);
- this.rbnTextFncts.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
- this.rbnTextFncts.TabIndex = 13;
- this.rbnTextFncts.Text = "Text Functions";
- //
- // btnSplChk
- //
- this.btnSplChk.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnSplChk.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnSplChk.Image = ((System.Drawing.Image)(resources.GetObject("btnSplChk.Image")));
- this.btnSplChk.ImagePaddingHorizontal = 8;
- this.btnSplChk.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnSplChk.Name = "btnSplChk";
- this.superTooltip1.SetSuperTooltip(this.btnSplChk, new DevComponents.DotNetBar.SuperTooltipInfo("Check", "", "Check the Spelling", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnSplChk.Text = "Spell Check";
- //
- // labelItem18
- //
- this.labelItem18.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem18.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem18.Name = "labelItem18";
- //
- // btnChgTyp
- //
- this.btnChgTyp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnChgTyp.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnChgTyp.Image = ((System.Drawing.Image)(resources.GetObject("btnChgTyp.Image")));
- this.btnChgTyp.ImagePaddingHorizontal = 8;
- this.btnChgTyp.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnChgTyp.Name = "btnChgTyp";
- this.btnChgTyp.RibbonWordWrap = false;
- this.btnChgTyp.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnChgTyp, new DevComponents.DotNetBar.SuperTooltipInfo("Style", "", "This will allow you to change the High Level or substep type.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnChgTyp.Text = "Change\r\nStep Type";
- //
- // labelItem23
- //
- this.labelItem23.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem23.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem23.Name = "labelItem23";
- //
- // btnFindRplDlg
- //
- this.btnFindRplDlg.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnFindRplDlg.Image = ((System.Drawing.Image)(resources.GetObject("btnFindRplDlg.Image")));
- this.btnFindRplDlg.ImagePaddingHorizontal = 8;
- this.btnFindRplDlg.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnFindRplDlg.Name = "btnFindRplDlg";
- this.btnFindRplDlg.RibbonWordWrap = false;
- this.btnFindRplDlg.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnFindRplDlg, new DevComponents.DotNetBar.SuperTooltipInfo("Find Utility", "", "The Find button display a dialog window allowing you to look for text and optiona" +
- "lly replace it.", ((System.Drawing.Image)(resources.GetObject("btnFindRplDlg.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(358, 134)));
- this.btnFindRplDlg.Text = "Find /\r\nReplace";
- this.btnFindRplDlg.Click += new System.EventHandler(this.btnFindRplDlg_Click_1);
- //
- // labelItem24
- //
- this.labelItem24.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem24.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem24.Name = "labelItem24";
- //
- // btnCpyStp
- //
- this.btnCpyStp.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnCpyStp.Image = ((System.Drawing.Image)(resources.GetObject("btnCpyStp.Image")));
- this.btnCpyStp.ImagePaddingHorizontal = 8;
- this.btnCpyStp.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnCpyStp.Name = "btnCpyStp";
- this.btnCpyStp.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnCpyStp, new DevComponents.DotNetBar.SuperTooltipInfo("Copy Step", "", "Allows you to copy an entire or part of a step, including Transition and RO links" +
- ".", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnCpyStp.Text = "Copy\r\nStep";
- //
- // rbnInsert
- //
- this.rbnInsert.AutoOverflowEnabled = true;
- this.rbnInsert.Dock = System.Windows.Forms.DockStyle.Left;
- this.rbnInsert.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.galleryContainer3,
- this.labelItem4,
- this.itemContainer13,
- this.labelItem25,
- this.btnInsStpParts,
- this.labelItem21,
- this.itemContainer12,
- this.labelItem22,
- this.itemContainer11});
- this.rbnInsert.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
- this.rbnInsert.Location = new System.Drawing.Point(226, 0);
- this.rbnInsert.Name = "rbnInsert";
- this.rbnInsert.Size = new System.Drawing.Size(487, 86);
- this.rbnInsert.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
- this.rbnInsert.TabIndex = 12;
- this.rbnInsert.Text = "Insert";
- //
- // galleryContainer3
- //
- this.galleryContainer3.GalleryGroups.AddRange(new DevComponents.DotNetBar.GalleryGroup[] {
- this.galleryGroup1,
- this.galleryGroup2,
- this.galleryGroup3});
- this.galleryContainer3.MinimumSize = new System.Drawing.Size(58, 58);
- this.galleryContainer3.Name = "galleryContainer3";
- this.galleryContainer3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.buttonItem55,
- this.buttonItem56,
- this.buttonItem26,
- this.buttonItem83,
- this.buttonItem86,
- this.buttonItem82,
- this.buttonItem67,
- this.buttonItem78,
- this.buttonItem75,
- this.buttonItem81,
- this.buttonItem85,
- this.buttonItem69,
- this.buttonItem72,
- this.buttonItem66,
- this.buttonItem65,
- this.buttonItem62,
- this.buttonItem64,
- this.buttonItem73,
- this.buttonItem71,
- this.buttonItem80,
- this.buttonItem57,
- this.buttonItem61,
- this.buttonItem79,
- this.buttonItem76,
- this.buttonItem77,
- this.buttonItem58,
- this.buttonItem59,
- this.buttonItem70,
- this.buttonItem74,
- this.buttonItem87,
- this.buttonItem63,
- this.buttonItem60,
- this.buttonItem68,
- this.buttonItem84});
- this.superTooltip1.SetSuperTooltip(this.galleryContainer3, new DevComponents.DotNetBar.SuperTooltipInfo("Symbol", "", "Selecting a symbol character from this list will insert the character at your cur" +
- "rent cursor location.\r\n\r\nThe button below the scroll down button will display a " +
- "gallery of special characters.", null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(194, 159)));
- //
- // galleryGroup1
- //
- this.galleryGroup1.Name = "galleryGroup1";
- this.galleryGroup1.Text = "Common";
- //
- // galleryGroup2
- //
- this.galleryGroup2.DisplayOrder = 1;
- this.galleryGroup2.Name = "galleryGroup2";
- this.galleryGroup2.Text = "Math";
- //
- // galleryGroup3
- //
- this.galleryGroup3.DisplayOrder = 2;
- this.galleryGroup3.Name = "galleryGroup3";
- this.galleryGroup3.Text = "Misc.";
- //
- // buttonItem55
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem55, this.galleryGroup1);
- this.buttonItem55.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem55.Image")));
- this.buttonItem55.ImagePaddingHorizontal = 8;
- this.buttonItem55.Name = "buttonItem55";
- this.buttonItem55.Text = "buttonItem19";
- this.buttonItem55.Tooltip = "Degree";
- //
- // buttonItem56
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem56, this.galleryGroup1);
- this.buttonItem56.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem56.Image")));
- this.buttonItem56.ImagePaddingHorizontal = 8;
- this.buttonItem56.Name = "buttonItem56";
- this.buttonItem56.Text = "buttonItem19";
- this.buttonItem56.Tooltip = "Delta";
- //
- // buttonItem26
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem26, this.galleryGroup1);
- this.buttonItem26.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem26.Image")));
- this.buttonItem26.ImagePaddingHorizontal = 8;
- this.buttonItem26.Name = "buttonItem26";
- this.buttonItem26.Text = "buttonItem26";
- this.buttonItem26.Tooltip = "Bullet";
- //
- // buttonItem83
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem83, this.galleryGroup1);
- this.buttonItem83.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem83.Image")));
- this.buttonItem83.ImagePaddingHorizontal = 8;
- this.buttonItem83.Name = "buttonItem83";
- this.buttonItem83.Tooltip = "PI";
- //
- // buttonItem86
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem86, this.galleryGroup1);
- this.buttonItem86.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem86.Image")));
- this.buttonItem86.ImagePaddingHorizontal = 8;
- this.buttonItem86.Name = "buttonItem86";
- this.buttonItem86.Tooltip = "Square Root";
- //
- // buttonItem82
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem82, this.galleryGroup2);
- this.buttonItem82.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem82.Image")));
- this.buttonItem82.ImagePaddingHorizontal = 8;
- this.buttonItem82.Name = "buttonItem82";
- this.buttonItem82.Tooltip = "Sigma";
- //
- // buttonItem67
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem67, this.galleryGroup2);
- this.buttonItem67.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem67.Image")));
- this.buttonItem67.ImagePaddingHorizontal = 8;
- this.buttonItem67.Name = "buttonItem67";
- this.buttonItem67.Tooltip = "Gamma";
- //
- // buttonItem78
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem78, this.galleryGroup2);
- this.buttonItem78.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem78.Image")));
- this.buttonItem78.ImagePaddingHorizontal = 8;
- this.buttonItem78.Name = "buttonItem78";
- this.buttonItem78.Tooltip = "Tau";
- //
- // buttonItem75
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem75, this.galleryGroup2);
- this.buttonItem75.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem75.Image")));
- this.buttonItem75.ImagePaddingHorizontal = 8;
- this.buttonItem75.Name = "buttonItem75";
- this.buttonItem75.Tooltip = "Micro";
- //
- // buttonItem81
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem81, this.galleryGroup2);
- this.buttonItem81.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem81.Image")));
- this.buttonItem81.ImagePaddingHorizontal = 8;
- this.buttonItem81.Name = "buttonItem81";
- this.buttonItem81.Tooltip = "Rho";
- //
- // buttonItem85
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem85, this.galleryGroup2);
- this.buttonItem85.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem85.Image")));
- this.buttonItem85.ImagePaddingHorizontal = 8;
- this.buttonItem85.Name = "buttonItem85";
- this.buttonItem85.Tooltip = "Theta";
- //
- // buttonItem69
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem69, this.galleryGroup2);
- this.buttonItem69.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem69.Image")));
- this.buttonItem69.ImagePaddingHorizontal = 8;
- this.buttonItem69.Name = "buttonItem69";
- this.buttonItem69.Tooltip = "Lower Case Sigma";
- //
- // buttonItem72
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem72, this.galleryGroup2);
- this.buttonItem72.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem72.Image")));
- this.buttonItem72.ImagePaddingHorizontal = 8;
- this.buttonItem72.Name = "buttonItem72";
- this.buttonItem72.Tooltip = "Lower Case Delta";
- //
- // buttonItem66
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem66, this.galleryGroup2);
- this.buttonItem66.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem66.Image")));
- this.buttonItem66.ImagePaddingHorizontal = 8;
- this.buttonItem66.Name = "buttonItem66";
- this.buttonItem66.Tooltip = "Epsilon";
- //
- // buttonItem65
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem65, this.galleryGroup2);
- this.buttonItem65.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem65.Image")));
- this.buttonItem65.ImagePaddingHorizontal = 8;
- this.buttonItem65.Name = "buttonItem65";
- this.buttonItem65.Tooltip = "Grave";
- //
- // buttonItem62
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem62, this.galleryGroup2);
- this.buttonItem62.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem62.Image")));
- this.buttonItem62.ImagePaddingHorizontal = 8;
- this.buttonItem62.Name = "buttonItem62";
- this.buttonItem62.Tooltip = "Average Disintegration Energy";
- //
- // buttonItem64
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem64, this.galleryGroup3);
- this.buttonItem64.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem64.Image")));
- this.buttonItem64.ImagePaddingHorizontal = 8;
- this.buttonItem64.Name = "buttonItem64";
- this.buttonItem64.Tooltip = "ACCUM Character";
- //
- // buttonItem73
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem73, this.galleryGroup2);
- this.buttonItem73.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem73.Image")));
- this.buttonItem73.ImagePaddingHorizontal = 8;
- this.buttonItem73.Name = "buttonItem73";
- this.buttonItem73.Tooltip = "Greater Than or Equal";
- //
- // buttonItem71
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem71, this.galleryGroup2);
- this.buttonItem71.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem71.Image")));
- this.buttonItem71.ImagePaddingHorizontal = 8;
- this.buttonItem71.Name = "buttonItem71";
- this.buttonItem71.Tooltip = "Less Than or Equal";
- //
- // buttonItem80
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem80, this.galleryGroup2);
- this.buttonItem80.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem80.Image")));
- this.buttonItem80.ImagePaddingHorizontal = 8;
- this.buttonItem80.Name = "buttonItem80";
- this.buttonItem80.Tooltip = "Plus Minus";
- //
- // buttonItem57
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem57, this.galleryGroup2);
- this.buttonItem57.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem57.Image")));
- this.buttonItem57.ImagePaddingHorizontal = 8;
- this.buttonItem57.Name = "buttonItem57";
- this.buttonItem57.Text = "buttonItem19";
- this.buttonItem57.Tooltip = "Division symbol";
- //
- // buttonItem61
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem61, this.galleryGroup2);
- this.buttonItem61.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem61.Image")));
- this.buttonItem61.ImagePaddingHorizontal = 8;
- this.buttonItem61.Name = "buttonItem61";
- this.buttonItem61.Tooltip = "Approximate";
- //
- // buttonItem79
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem79, this.galleryGroup2);
- this.buttonItem79.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem79.Image")));
- this.buttonItem79.ImagePaddingHorizontal = 8;
- this.buttonItem79.Name = "buttonItem79";
- this.buttonItem79.Tooltip = "Similar or Equal";
- //
- // buttonItem76
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem76, this.galleryGroup3);
- this.buttonItem76.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem76.Image")));
- this.buttonItem76.ImagePaddingHorizontal = 8;
- this.buttonItem76.Name = "buttonItem76";
- this.buttonItem76.Tooltip = "One Half";
- //
- // buttonItem77
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem77, this.galleryGroup3);
- this.buttonItem77.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem77.Image")));
- this.buttonItem77.ImagePaddingHorizontal = 8;
- this.buttonItem77.Name = "buttonItem77";
- this.buttonItem77.Tooltip = "One Quarter";
- //
- // buttonItem58
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem58, this.galleryGroup3);
- this.buttonItem58.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem58.Image")));
- this.buttonItem58.ImagePaddingHorizontal = 8;
- this.buttonItem58.Name = "buttonItem58";
- this.buttonItem58.Text = "buttonItem19";
- this.buttonItem58.Tooltip = "Distinguished Zero";
- //
- // buttonItem59
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem59, this.galleryGroup3);
- this.buttonItem59.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem59.Image")));
- this.buttonItem59.ImagePaddingHorizontal = 8;
- this.buttonItem59.Name = "buttonItem59";
- this.buttonItem59.Text = "buttonItem19";
- this.buttonItem59.Tooltip = "Diamond";
- //
- // buttonItem70
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem70, this.galleryGroup3);
- this.buttonItem70.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem70.Image")));
- this.buttonItem70.ImagePaddingHorizontal = 8;
- this.buttonItem70.Name = "buttonItem70";
- this.buttonItem70.Tooltip = "Inverted Triangle";
- //
- // buttonItem74
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem74, this.galleryGroup3);
- this.buttonItem74.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem74.Image")));
- this.buttonItem74.ImagePaddingHorizontal = 8;
- this.buttonItem74.Name = "buttonItem74";
- this.buttonItem74.Tooltip = "Dot in Oval";
- //
- // buttonItem87
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem87, this.galleryGroup3);
- this.buttonItem87.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem87.Image")));
- this.buttonItem87.ImagePaddingHorizontal = 8;
- this.buttonItem87.Name = "buttonItem87";
- this.buttonItem87.Tooltip = "Up Arrrow";
- //
- // buttonItem63
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem63, this.galleryGroup3);
- this.buttonItem63.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem63.Image")));
- this.buttonItem63.ImagePaddingHorizontal = 8;
- this.buttonItem63.Name = "buttonItem63";
- this.buttonItem63.Tooltip = "Down Arrow";
- //
- // buttonItem60
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem60, this.galleryGroup3);
- this.buttonItem60.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem60.Image")));
- this.buttonItem60.ImagePaddingHorizontal = 8;
- this.buttonItem60.Name = "buttonItem60";
- this.buttonItem60.Tooltip = "Left Arrow";
- //
- // buttonItem68
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem68, this.galleryGroup3);
- this.buttonItem68.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem68.Image")));
- this.buttonItem68.ImagePaddingHorizontal = 8;
- this.buttonItem68.Name = "buttonItem68";
- this.buttonItem68.Tooltip = "Right Arrow";
- //
- // buttonItem84
- //
- this.galleryContainer3.SetGalleryGroup(this.buttonItem84, this.galleryGroup3);
- this.buttonItem84.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem84.Image")));
- this.buttonItem84.ImagePaddingHorizontal = 8;
- this.buttonItem84.Name = "buttonItem84";
- this.buttonItem84.Tooltip = "Vertical Line";
- //
- // labelItem4
- //
- this.labelItem4.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem4.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem4.Name = "labelItem4";
- //
- // itemContainer13
- //
- this.itemContainer13.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
- this.itemContainer13.MinimumSize = new System.Drawing.Size(0, 0);
- this.itemContainer13.Name = "itemContainer13";
- this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnInsPgBrk,
- this.btnInsHrdSpc});
- //
- // btnInsPgBrk
- //
- this.btnInsPgBrk.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsPgBrk.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsPgBrk.Image = ((System.Drawing.Image)(resources.GetObject("btnInsPgBrk.Image")));
- this.btnInsPgBrk.ImagePaddingHorizontal = 8;
- this.btnInsPgBrk.Name = "btnInsPgBrk";
- this.btnInsPgBrk.SubItemsExpandWidth = 14;
- this.btnInsPgBrk.Text = " Page Break";
- //
- // btnInsHrdSpc
- //
- this.btnInsHrdSpc.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsHrdSpc.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsHrdSpc.Image = ((System.Drawing.Image)(resources.GetObject("btnInsHrdSpc.Image")));
- this.btnInsHrdSpc.ImagePaddingHorizontal = 8;
- this.btnInsHrdSpc.Name = "btnInsHrdSpc";
- this.btnInsHrdSpc.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnInsHrdSpc, new DevComponents.DotNetBar.SuperTooltipInfo("Hard Space", "", "Inserts a Hard Space.\r\n\r\nA Hard Space will print as a normal space but will tie t" +
- "he word before and after it so that they will not be broken between two lines.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnInsHrdSpc.Text = " Hard Space";
- //
- // labelItem25
- //
- this.labelItem25.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem25.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem25.Name = "labelItem25";
- //
- // btnInsStpParts
- //
- this.btnInsStpParts.AutoExpandOnClick = true;
- this.btnInsStpParts.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsStpParts.Image = ((System.Drawing.Image)(resources.GetObject("btnInsStpParts.Image")));
- this.btnInsStpParts.ImagePaddingHorizontal = 8;
- this.btnInsStpParts.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsStpParts.Name = "btnInsStpParts";
- this.btnInsStpParts.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.StepPartsGallery});
- this.btnInsStpParts.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnInsStpParts, new DevComponents.DotNetBar.SuperTooltipInfo("Step Parts", "", "", ((System.Drawing.Image)(resources.GetObject("btnInsStpParts.SuperTooltip"))), null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnInsStpParts.Text = "Step\r\nParts";
- //
- // StepPartsGallery
- //
- this.StepPartsGallery.MinimumSize = new System.Drawing.Size(240, 100);
- this.StepPartsGallery.Name = "StepPartsGallery";
- this.StepPartsGallery.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnInsHLS,
- this.btnInsCaut,
- this.btnInsNote,
- this.btnInsWarn,
- this.btnInsSubStp,
- this.btnInsRNO,
- this.btnInsTable,
- this.btnInsFig});
- this.StepPartsGallery.Text = "galleryContainer2";
- //
- // btnInsHLS
- //
- this.btnInsHLS.Image = ((System.Drawing.Image)(resources.GetObject("btnInsHLS.Image")));
- this.btnInsHLS.ImagePaddingHorizontal = 8;
- this.btnInsHLS.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsHLS.Name = "btnInsHLS";
- this.btnInsHLS.Text = "Highlevel\r\nStep";
- //
- // btnInsCaut
- //
- this.btnInsCaut.Image = ((System.Drawing.Image)(resources.GetObject("btnInsCaut.Image")));
- this.btnInsCaut.ImagePaddingHorizontal = 8;
- this.btnInsCaut.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsCaut.Name = "btnInsCaut";
- this.btnInsCaut.SplitButton = true;
- this.btnInsCaut.Text = "Caution";
- //
- // btnInsNote
- //
- this.btnInsNote.Image = ((System.Drawing.Image)(resources.GetObject("btnInsNote.Image")));
- this.btnInsNote.ImagePaddingHorizontal = 8;
- this.btnInsNote.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsNote.Name = "btnInsNote";
- this.btnInsNote.SubItemsExpandWidth = 14;
- this.btnInsNote.Text = "Note";
- //
- // btnInsWarn
- //
- this.btnInsWarn.Image = ((System.Drawing.Image)(resources.GetObject("btnInsWarn.Image")));
- this.btnInsWarn.ImagePaddingHorizontal = 8;
- this.btnInsWarn.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsWarn.Name = "btnInsWarn";
- this.btnInsWarn.SubItemsExpandWidth = 14;
- this.btnInsWarn.Text = "Warning";
- //
- // btnInsSubStp
- //
- this.btnInsSubStp.Image = ((System.Drawing.Image)(resources.GetObject("btnInsSubStp.Image")));
- this.btnInsSubStp.ImagePaddingHorizontal = 8;
- this.btnInsSubStp.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsSubStp.Name = "btnInsSubStp";
- this.btnInsSubStp.Text = "Substep";
- //
- // btnInsRNO
- //
- this.btnInsRNO.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsRNO.Image = ((System.Drawing.Image)(resources.GetObject("btnInsRNO.Image")));
- this.btnInsRNO.ImagePaddingHorizontal = 8;
- this.btnInsRNO.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsRNO.Name = "btnInsRNO";
- this.btnInsRNO.SubItemsExpandWidth = 14;
- this.btnInsRNO.Text = "RNO";
- //
- // btnInsTable
- //
- this.btnInsTable.Image = ((System.Drawing.Image)(resources.GetObject("btnInsTable.Image")));
- this.btnInsTable.ImagePaddingHorizontal = 8;
- this.btnInsTable.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsTable.Name = "btnInsTable";
- this.btnInsTable.Text = "Table";
- this.btnInsTable.Click += new System.EventHandler(this.btnInsTable_Click);
- //
- // btnInsFig
- //
- this.btnInsFig.Image = ((System.Drawing.Image)(resources.GetObject("btnInsFig.Image")));
- this.btnInsFig.ImagePaddingHorizontal = 8;
- this.btnInsFig.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnInsFig.Name = "btnInsFig";
- this.btnInsFig.Text = "Figure";
- //
- // labelItem21
- //
- this.labelItem21.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem21.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem21.Name = "labelItem21";
- //
- // itemContainer12
- //
- this.itemContainer12.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
- this.itemContainer12.MinimumSize = new System.Drawing.Size(0, 0);
- this.itemContainer12.Name = "itemContainer12";
- this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnInsBefore,
- this.btnInsAfter});
- //
- // btnInsBefore
- //
- this.btnInsBefore.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsBefore.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsBefore.Image = ((System.Drawing.Image)(resources.GetObject("btnInsBefore.Image")));
- this.btnInsBefore.ImagePaddingHorizontal = 8;
- this.btnInsBefore.Name = "btnInsBefore";
- this.btnInsBefore.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnInsBefore, new DevComponents.DotNetBar.SuperTooltipInfo("Insert Before", "", "This will insert a step part of the same type BEFORE your current selection.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnInsBefore.Text = "Before";
- //
- // btnInsAfter
- //
- this.btnInsAfter.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsAfter.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsAfter.Image = ((System.Drawing.Image)(resources.GetObject("btnInsAfter.Image")));
- this.btnInsAfter.ImagePaddingHorizontal = 8;
- this.btnInsAfter.Name = "btnInsAfter";
- this.btnInsAfter.SubItemsExpandWidth = 14;
- this.superTooltip1.SetSuperTooltip(this.btnInsAfter, new DevComponents.DotNetBar.SuperTooltipInfo("Insert After", "", "This will insert a step part of the same type AFTER your current selection.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnInsAfter.Text = "After";
- //
- // labelItem22
- //
- this.labelItem22.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem22.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem22.Name = "labelItem22";
- //
- // itemContainer11
- //
- this.itemContainer11.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
- this.itemContainer11.MinimumSize = new System.Drawing.Size(0, 0);
- this.itemContainer11.Name = "itemContainer11";
- this.itemContainer11.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnInsTrans,
- this.btnInsRO});
- //
- // btnInsTrans
- //
- this.btnInsTrans.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsTrans.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsTrans.Image = ((System.Drawing.Image)(resources.GetObject("btnInsTrans.Image")));
- this.btnInsTrans.ImagePaddingHorizontal = 8;
- this.btnInsTrans.Name = "btnInsTrans";
- this.btnInsTrans.RibbonWordWrap = false;
- this.superTooltip1.SetSuperTooltip(this.btnInsTrans, new DevComponents.DotNetBar.SuperTooltipInfo("Insert", "", "Insert a New Transition\r\n\r\nA Transition is a live reference to different step, se" +
- "ction, and/or procedure.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(160, 130)));
- this.btnInsTrans.Text = "Transition";
- this.btnInsTrans.Tooltip = "Insert New or Modify Existing Transition";
- this.btnInsTrans.Click += new System.EventHandler(this.btnInsTrans_Click);
- //
- // btnInsRO
- //
- this.btnInsRO.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnInsRO.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnInsRO.Image = ((System.Drawing.Image)(resources.GetObject("btnInsRO.Image")));
- this.btnInsRO.ImagePaddingHorizontal = 8;
- this.btnInsRO.Name = "btnInsRO";
- this.btnInsRO.RibbonWordWrap = false;
- this.superTooltip1.SetSuperTooltip(this.btnInsRO, new DevComponents.DotNetBar.SuperTooltipInfo("Insert Referenced Object", "", "Insert a New Referenced Object.\r\n\r\nA Referenced Object is a live reference to a v" +
- "alue in the Referenced Object Database.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnInsRO.Text = "Referenced\r\nObject";
- //
- // rbnFont
- //
- this.rbnFont.AutoOverflowEnabled = true;
- this.rbnFont.Dock = System.Windows.Forms.DockStyle.Left;
- this.rbnFont.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.itemContainer6});
- this.rbnFont.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
- this.rbnFont.Location = new System.Drawing.Point(120, 0);
- this.rbnFont.Name = "rbnFont";
- this.rbnFont.Size = new System.Drawing.Size(106, 86);
- this.rbnFont.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
- this.rbnFont.TabIndex = 9;
- this.rbnFont.Text = "Font";
- //
- // itemContainer6
- //
- this.itemContainer6.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
- this.itemContainer6.MinimumSize = new System.Drawing.Size(0, 0);
- this.itemContainer6.Name = "itemContainer6";
- this.itemContainer6.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.itemContainer7,
- this.btnChgCase});
- //
- // itemContainer7
- //
- this.itemContainer7.MinimumSize = new System.Drawing.Size(0, 0);
- this.itemContainer7.Name = "itemContainer7";
- this.itemContainer7.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnBold,
- this.labelItem15,
- this.btnItalics,
- this.labelItem16,
- this.btnUline});
- //
- // btnBold
- //
- this.btnBold.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnBold.FontBold = true;
- this.btnBold.Image = ((System.Drawing.Image)(resources.GetObject("btnBold.Image")));
- this.btnBold.ImagePaddingHorizontal = 8;
- this.btnBold.Name = "btnBold";
- this.superTooltip1.SetSuperTooltip(this.btnBold, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "This will turn the bold attribute ON/OFF", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnBold.Text = "B";
- this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
- //
- // labelItem15
- //
- this.labelItem15.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem15.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem15.Name = "labelItem15";
- //
- // btnItalics
- //
- this.btnItalics.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnItalics.FontBold = true;
- this.btnItalics.FontItalic = true;
- this.btnItalics.Image = ((System.Drawing.Image)(resources.GetObject("btnItalics.Image")));
- this.btnItalics.ImagePaddingHorizontal = 8;
- this.btnItalics.Name = "btnItalics";
- this.superTooltip1.SetSuperTooltip(this.btnItalics, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "This will turn the Italics attribute ON/OFF", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnItalics.Text = "I";
- this.btnItalics.Click += new System.EventHandler(this.btnItalics_Click);
- //
- // labelItem16
- //
- this.labelItem16.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem16.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem16.Name = "labelItem16";
- //
- // btnUline
- //
- this.btnUline.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnUline.FontBold = true;
- this.btnUline.FontUnderline = true;
- this.btnUline.Image = ((System.Drawing.Image)(resources.GetObject("btnUline.Image")));
- this.btnUline.ImagePaddingHorizontal = 8;
- this.btnUline.Name = "btnUline";
- this.superTooltip1.SetSuperTooltip(this.btnUline, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "This will turn the underline attribute ON/OFF", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnUline.Click += new System.EventHandler(this.btnUline_Click);
- //
- // btnChgCase
- //
- this.btnChgCase.AutoExpandOnClick = true;
- this.btnChgCase.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnChgCase.ImagePaddingHorizontal = 8;
- this.btnChgCase.Name = "btnChgCase";
- this.btnChgCase.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnUpCase,
- this.btnLowCase,
- this.btnTitleCase});
- this.superTooltip1.SetSuperTooltip(this.btnChgCase, new DevComponents.DotNetBar.SuperTooltipInfo("Font", "", "Change the letter case for the selected text:\r\n \r\n- UPPER CASE\r\n- lower case\r\n- T" +
- "itle Case\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnChgCase.Text = "Change Case";
- //
- // btnUpCase
- //
- this.btnUpCase.ImagePaddingHorizontal = 8;
- this.btnUpCase.Name = "btnUpCase";
- this.btnUpCase.Text = "UPPER CASE";
- //
- // btnLowCase
- //
- this.btnLowCase.ImagePaddingHorizontal = 8;
- this.btnLowCase.Name = "btnLowCase";
- this.btnLowCase.Text = "lower case";
- //
- // btnTitleCase
- //
- this.btnTitleCase.ImagePaddingHorizontal = 8;
- this.btnTitleCase.Name = "btnTitleCase";
- this.btnTitleCase.Text = "Title Case";
- //
- // rbnClipboard
- //
- this.rbnClipboard.AutoOverflowEnabled = true;
- this.rbnClipboard.Dock = System.Windows.Forms.DockStyle.Left;
- this.rbnClipboard.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.itemContainer8,
- this.labelItem19,
- this.btnClpBrdPaste});
- this.rbnClipboard.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
- this.rbnClipboard.Location = new System.Drawing.Point(3, 0);
- this.rbnClipboard.Name = "rbnClipboard";
- this.rbnClipboard.Size = new System.Drawing.Size(117, 86);
- this.rbnClipboard.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
- this.rbnClipboard.TabIndex = 3;
- this.rbnClipboard.Text = "Clipboard";
- //
- // itemContainer8
- //
- this.itemContainer8.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
- this.itemContainer8.MinimumSize = new System.Drawing.Size(0, 0);
- this.itemContainer8.Name = "itemContainer8";
- this.itemContainer8.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
- this.btnClpBrdCopy,
- this.btnClpBrdCut});
- //
- // btnClpBrdCopy
- //
- this.btnClpBrdCopy.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnClpBrdCopy.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClpBrdCopy.Image = ((System.Drawing.Image)(resources.GetObject("btnClpBrdCopy.Image")));
- this.btnClpBrdCopy.ImagePaddingHorizontal = 8;
- this.btnClpBrdCopy.Name = "btnClpBrdCopy";
- this.btnClpBrdCopy.Text = "Copy";
- //
- // btnClpBrdCut
- //
- this.btnClpBrdCut.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnClpBrdCut.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClpBrdCut.Image = ((System.Drawing.Image)(resources.GetObject("btnClpBrdCut.Image")));
- this.btnClpBrdCut.ImagePaddingHorizontal = 8;
- this.btnClpBrdCut.Name = "btnClpBrdCut";
- this.btnClpBrdCut.Text = "Cut";
- //
- // labelItem19
- //
- this.labelItem19.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
- this.labelItem19.BorderType = DevComponents.DotNetBar.eBorderType.Sunken;
- this.labelItem19.Name = "labelItem19";
- //
- // btnClpBrdPaste
- //
- this.btnClpBrdPaste.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
- this.btnClpBrdPaste.Cursor = System.Windows.Forms.Cursors.Hand;
- this.btnClpBrdPaste.Image = ((System.Drawing.Image)(resources.GetObject("btnClpBrdPaste.Image")));
- this.btnClpBrdPaste.ImagePaddingHorizontal = 8;
- this.btnClpBrdPaste.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
- this.btnClpBrdPaste.Name = "btnClpBrdPaste";
- this.btnClpBrdPaste.Text = "Paste";
- //
// rtabHome
//
this.rtabHome.ImagePaddingHorizontal = 8;
@@ -1997,7 +2001,7 @@ namespace VEPROMS
this.btnSetLock,
this.btnReleaseLck});
this.superTooltip1.SetSuperTooltip(this.btnLckUlck, new DevComponents.DotNetBar.SuperTooltipInfo("Procedure Lock", "", "This will allow you to set or remove a lock on the current procedure. The button" +
- " tells you the current lock status.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ " tells you the current lock status.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.btnLckUlck.Text = "Unlocked";
//
// btnSetLock
@@ -2099,13 +2103,14 @@ namespace VEPROMS
this.btnMarkPrevPos.AutoExpandOnClick = true;
this.btnMarkPrevPos.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
this.btnMarkPrevPos.ForeColor = System.Drawing.Color.Black;
+ this.btnMarkPrevPos.GlobalName = "SetBookMark";
this.btnMarkPrevPos.Image = ((System.Drawing.Image)(resources.GetObject("btnMarkPrevPos.Image")));
this.btnMarkPrevPos.ImagePaddingHorizontal = 8;
this.btnMarkPrevPos.Name = "btnMarkPrevPos";
this.btnMarkPrevPos.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
this.superTooltip1.SetSuperTooltip(this.btnMarkPrevPos, new DevComponents.DotNetBar.SuperTooltipInfo("Simple Bookmark", "", "Mark your current positon and/or jump to the previously marked position. Note th" +
- "at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
- this.btnMarkPrevPos.Text = "Mark Positon";
+ "at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ this.btnMarkPrevPos.Text = "BookMark";
this.btnMarkPrevPos.Click += new System.EventHandler(this.btnMarkPrevPos_Click);
//
// labelItem2
@@ -2125,7 +2130,7 @@ namespace VEPROMS
this.btnPrevPos.Name = "btnPrevPos";
this.btnPrevPos.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
this.superTooltip1.SetSuperTooltip(this.btnPrevPos, new DevComponents.DotNetBar.SuperTooltipInfo("Simple Bookmark", "", "Mark your current positon and/or jump to the previously marked position. Note th" +
- "at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ "at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.btnPrevPos.Text = "Previous Positon";
this.btnPrevPos.Click += new System.EventHandler(this.btnPrevPos_Click);
//
@@ -2142,7 +2147,7 @@ namespace VEPROMS
this.btnGetRoVals.ImagePaddingHorizontal = 8;
this.btnGetRoVals.Name = "btnGetRoVals";
this.superTooltip1.SetSuperTooltip(this.btnGetRoVals, new DevComponents.DotNetBar.SuperTooltipInfo("Update Referenced Object Values", "", "This will update the RO Values in this procedure set.\r\n\r\nThis button will become " +
- "active when new Referenced Object Values are available.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
+ "active when new Referenced Object Values are available.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.btnGetRoVals.Text = "Update RO Values";
//
// epComments
@@ -2225,7 +2230,7 @@ namespace VEPROMS
this.c1CommentGrid.Location = new System.Drawing.Point(440, 34);
this.c1CommentGrid.Name = "c1CommentGrid";
this.c1CommentGrid.Rows.Count = 1;
- this.c1CommentGrid.Rows.DefaultSize = 17;
+ this.c1CommentGrid.Rows.DefaultSize = 20;
this.c1CommentGrid.Size = new System.Drawing.Size(681, 110);
this.c1CommentGrid.StyleInfo = resources.GetString("c1CommentGrid.StyleInfo");
this.c1CommentGrid.TabIndex = 2;
@@ -2238,7 +2243,7 @@ namespace VEPROMS
// rtxbComment
//
this.rtxbComment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)));
+ | System.Windows.Forms.AnchorStyles.Left)));
this.rtxbComment.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
this.rtxbComment.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rtxbComment.Location = new System.Drawing.Point(0, 26);
@@ -2321,11 +2326,11 @@ namespace VEPROMS
//
this.infoTabs.BackColor = System.Drawing.Color.Transparent;
this.infoTabs.CanReorderTabs = true;
+ this.infoTabs.Controls.Add(this.tabControlPanel2);
this.infoTabs.Controls.Add(this.tabControlPanel1);
+ this.infoTabs.Controls.Add(this.tabControlPanel3);
this.infoTabs.Controls.Add(this.infotabControlPanelRO);
this.infoTabs.Controls.Add(this.infotabControlPanelTransitions);
- this.infoTabs.Controls.Add(this.tabControlPanel3);
- this.infoTabs.Controls.Add(this.tabControlPanel2);
this.infoTabs.Dock = System.Windows.Forms.DockStyle.Fill;
this.infoTabs.Location = new System.Drawing.Point(0, 26);
this.infoTabs.Name = "infoTabs";
@@ -2342,43 +2347,6 @@ namespace VEPROMS
this.infoTabs.Tabs.Add(this.infotabTransition);
this.infoTabs.Text = "tabControl1";
//
- // infotabControlPanelRO
- //
- this.infotabControlPanelRO.Controls.Add(this.displayRO);
- this.infotabControlPanelRO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.infotabControlPanelRO.Location = new System.Drawing.Point(0, 0);
- this.infotabControlPanelRO.Name = "infotabControlPanelRO";
- this.infotabControlPanelRO.Padding = new System.Windows.Forms.Padding(1);
- this.infotabControlPanelRO.Size = new System.Drawing.Size(204, 548);
- this.infotabControlPanelRO.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
- this.infotabControlPanelRO.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
- this.infotabControlPanelRO.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
- this.infotabControlPanelRO.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
- this.infotabControlPanelRO.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
- | DevComponents.DotNetBar.eBorderSide.Bottom)));
- this.infotabControlPanelRO.Style.GradientAngle = 180;
- this.infotabControlPanelRO.TabIndex = 4;
- this.infotabControlPanelRO.TabItem = this.infotabRO;
- //
- // displayRO
- //
- this.displayRO.CurItem = null;
- this.displayRO.Dock = System.Windows.Forms.DockStyle.Fill;
- this.displayRO.Location = new System.Drawing.Point(1, 1);
- this.displayRO.CurROLink = null;
- this.displayRO.MyROFST = null;
- this.displayRO.MyRTB = null;
- this.displayRO.Name = "displayRO";
- this.displayRO.Size = new System.Drawing.Size(202, 546);
- this.displayRO.TabIndex = 0;
- //
- // infotabRO
- //
- this.infotabRO.AttachedControl = this.infotabControlPanelRO;
- this.infotabRO.Name = "infotabRO";
- this.infotabRO.Text = "RO";
- this.infotabRO.Click += new System.EventHandler(this.infotabRO_Click);
- //
// tabControlPanel1
//
this.tabControlPanel1.Controls.Add(this.panelEx1);
@@ -2392,7 +2360,7 @@ namespace VEPROMS
this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
- | DevComponents.DotNetBar.eBorderSide.Bottom)));
+ | DevComponents.DotNetBar.eBorderSide.Bottom)));
this.tabControlPanel1.Style.GradientAngle = 180;
this.tabControlPanel1.TabIndex = 1;
this.tabControlPanel1.TabItem = this.infotabTags;
@@ -2454,10 +2422,10 @@ namespace VEPROMS
this.comboBoxEx1.DisplayMember = "Text";
this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.comboBoxEx1.FormattingEnabled = true;
- this.comboBoxEx1.ItemHeight = 13;
+ this.comboBoxEx1.ItemHeight = 17;
this.comboBoxEx1.Location = new System.Drawing.Point(4, 20);
this.comboBoxEx1.Name = "comboBoxEx1";
- this.comboBoxEx1.Size = new System.Drawing.Size(189, 19);
+ this.comboBoxEx1.Size = new System.Drawing.Size(189, 23);
this.comboBoxEx1.TabIndex = 0;
this.comboBoxEx1.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.comboBoxEx1.WatermarkText = "select signoff / checkoff";
@@ -2546,7 +2514,7 @@ namespace VEPROMS
"Unit 4"});
this.checkedListBox1.Location = new System.Drawing.Point(3, 3);
this.checkedListBox1.Name = "checkedListBox1";
- this.checkedListBox1.Size = new System.Drawing.Size(202, 109);
+ this.checkedListBox1.Size = new System.Drawing.Size(202, 94);
this.checkedListBox1.TabIndex = 1;
//
// groupPanel1
@@ -2636,44 +2604,6 @@ namespace VEPROMS
this.infotabTags.Name = "infotabTags";
this.infotabTags.Text = "Tags";
//
- // infotabControlPanelTransitions
- //
- this.infotabControlPanelTransitions.Controls.Add(this.displayTransition);
- this.infotabControlPanelTransitions.Dock = System.Windows.Forms.DockStyle.Fill;
- this.infotabControlPanelTransitions.Location = new System.Drawing.Point(0, 0);
- this.infotabControlPanelTransitions.Name = "infotabControlPanelTransitions";
- this.infotabControlPanelTransitions.Padding = new System.Windows.Forms.Padding(1);
- this.infotabControlPanelTransitions.Size = new System.Drawing.Size(204, 548);
- this.infotabControlPanelTransitions.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
- this.infotabControlPanelTransitions.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
- this.infotabControlPanelTransitions.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
- this.infotabControlPanelTransitions.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
- this.infotabControlPanelTransitions.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
- | DevComponents.DotNetBar.eBorderSide.Bottom)));
- this.infotabControlPanelTransitions.Style.GradientAngle = 180;
- this.infotabControlPanelTransitions.TabIndex = 5;
- this.infotabControlPanelTransitions.TabItem = this.infotabTransition;
- this.infotabControlPanelTransitions.Click += new System.EventHandler(this.infotabTransition_Click);
- //
- // displayTransition
- //
- this.displayTransition.AutoSize = true;
- this.displayTransition.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.displayTransition.CurTrans = null;
- this.displayTransition.Dock = System.Windows.Forms.DockStyle.Fill;
- this.displayTransition.Location = new System.Drawing.Point(1, 1);
- this.displayTransition.MyRTB = null;
- this.displayTransition.Name = "displayTransition";
- this.displayTransition.Size = new System.Drawing.Size(202, 546);
- this.displayTransition.TabIndex = 0;
- //
- // infotabTransition
- //
- this.infotabTransition.AttachedControl = this.infotabControlPanelTransitions;
- this.infotabTransition.Name = "infotabTransition";
- this.infotabTransition.Text = "Transition";
- this.infotabTransition.Click += new System.EventHandler(this.infotabTransition_Click);
- //
// tabControlPanel3
//
this.tabControlPanel3.Controls.Add(this.navpaneResults);
@@ -2687,7 +2617,7 @@ namespace VEPROMS
this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
- | DevComponents.DotNetBar.eBorderSide.Bottom)));
+ | DevComponents.DotNetBar.eBorderSide.Bottom)));
this.tabControlPanel3.Style.GradientAngle = 180;
this.tabControlPanel3.TabIndex = 3;
this.tabControlPanel3.TabItem = this.infotabResults;
@@ -2704,6 +2634,7 @@ namespace VEPROMS
this.btnSimStpsRslt});
this.navpaneResults.Location = new System.Drawing.Point(1, 1);
this.navpaneResults.Name = "navpaneResults";
+ this.navpaneResults.NavigationBarHeight = 33;
this.navpaneResults.Padding = new System.Windows.Forms.Padding(1);
this.navpaneResults.Size = new System.Drawing.Size(202, 546);
this.navpaneResults.TabIndex = 0;
@@ -2728,11 +2659,13 @@ namespace VEPROMS
//
// navpanSrchRslts
//
+ this.navpanSrchRslts.Controls.Add(this.lbResults);
+ this.navpanSrchRslts.Controls.Add(this.cbAnnoType);
this.navpanSrchRslts.Dock = System.Windows.Forms.DockStyle.Fill;
this.navpanSrchRslts.Location = new System.Drawing.Point(1, 25);
this.navpanSrchRslts.Name = "navpanSrchRslts";
this.navpanSrchRslts.ParentItem = this.btnSrchRslt;
- this.navpanSrchRslts.Size = new System.Drawing.Size(200, 488);
+ this.navpanSrchRslts.Size = new System.Drawing.Size(200, 487);
this.navpanSrchRslts.Style.Alignment = System.Drawing.StringAlignment.Center;
this.navpanSrchRslts.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
this.navpanSrchRslts.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
@@ -2741,6 +2674,30 @@ namespace VEPROMS
this.navpanSrchRslts.Style.GradientAngle = 90;
this.navpanSrchRslts.TabIndex = 2;
//
+ // lbResults
+ //
+ this.lbResults.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.lbResults.FormattingEnabled = true;
+ this.lbResults.ItemHeight = 16;
+ this.lbResults.Location = new System.Drawing.Point(0, 23);
+ this.lbResults.Name = "lbResults";
+ this.lbResults.Size = new System.Drawing.Size(200, 452);
+ this.lbResults.TabIndex = 1;
+ this.lbResults.SelectedValueChanged += new System.EventHandler(this.lbResults_SelectedValueChanged);
+ //
+ // cbAnnoType
+ //
+ this.cbAnnoType.DisplayMember = "Text";
+ this.cbAnnoType.Dock = System.Windows.Forms.DockStyle.Top;
+ this.cbAnnoType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
+ this.cbAnnoType.FormattingEnabled = true;
+ this.cbAnnoType.ItemHeight = 17;
+ this.cbAnnoType.Location = new System.Drawing.Point(0, 0);
+ this.cbAnnoType.Name = "cbAnnoType";
+ this.cbAnnoType.Size = new System.Drawing.Size(200, 23);
+ this.cbAnnoType.TabIndex = 0;
+ this.cbAnnoType.SelectedValueChanged += new System.EventHandler(this.cbAnnoType_SelectedValueChanged);
+ //
// btnSrchRslt
//
this.btnSrchRslt.Checked = true;
@@ -2758,7 +2715,7 @@ namespace VEPROMS
this.navigationPanePanel2.Location = new System.Drawing.Point(1, 1);
this.navigationPanePanel2.Name = "navigationPanePanel2";
this.navigationPanePanel2.ParentItem = this.btnSimStpsRslt;
- this.navigationPanePanel2.Size = new System.Drawing.Size(200, 512);
+ this.navigationPanePanel2.Size = new System.Drawing.Size(200, 511);
this.navigationPanePanel2.Style.Alignment = System.Drawing.StringAlignment.Center;
this.navigationPanePanel2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
this.navigationPanePanel2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
@@ -2782,6 +2739,84 @@ namespace VEPROMS
this.infotabResults.Name = "infotabResults";
this.infotabResults.Text = "Results";
//
+ // infotabControlPanelRO
+ //
+ this.infotabControlPanelRO.Controls.Add(this.displayRO);
+ this.infotabControlPanelRO.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.infotabControlPanelRO.Location = new System.Drawing.Point(0, 0);
+ this.infotabControlPanelRO.Name = "infotabControlPanelRO";
+ this.infotabControlPanelRO.Padding = new System.Windows.Forms.Padding(1);
+ this.infotabControlPanelRO.Size = new System.Drawing.Size(204, 548);
+ this.infotabControlPanelRO.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
+ this.infotabControlPanelRO.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
+ this.infotabControlPanelRO.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
+ this.infotabControlPanelRO.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
+ this.infotabControlPanelRO.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
+ | DevComponents.DotNetBar.eBorderSide.Bottom)));
+ this.infotabControlPanelRO.Style.GradientAngle = 180;
+ this.infotabControlPanelRO.TabIndex = 4;
+ this.infotabControlPanelRO.TabItem = this.infotabRO;
+ //
+ // displayRO
+ //
+ this.displayRO.CurItem = null;
+ this.displayRO.CurROLink = null;
+ this.displayRO.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.displayRO.Location = new System.Drawing.Point(1, 1);
+ this.displayRO.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
+ this.displayRO.MyROFST = null;
+ this.displayRO.MyRTB = null;
+ this.displayRO.Name = "displayRO";
+ this.displayRO.Size = new System.Drawing.Size(202, 546);
+ this.displayRO.TabIndex = 0;
+ //
+ // infotabRO
+ //
+ this.infotabRO.AttachedControl = this.infotabControlPanelRO;
+ this.infotabRO.Name = "infotabRO";
+ this.infotabRO.Text = "RO";
+ this.infotabRO.Click += new System.EventHandler(this.infotabRO_Click);
+ //
+ // infotabControlPanelTransitions
+ //
+ this.infotabControlPanelTransitions.Controls.Add(this.displayTransition);
+ this.infotabControlPanelTransitions.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.infotabControlPanelTransitions.Location = new System.Drawing.Point(0, 0);
+ this.infotabControlPanelTransitions.Name = "infotabControlPanelTransitions";
+ this.infotabControlPanelTransitions.Padding = new System.Windows.Forms.Padding(1);
+ this.infotabControlPanelTransitions.Size = new System.Drawing.Size(204, 548);
+ this.infotabControlPanelTransitions.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
+ this.infotabControlPanelTransitions.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
+ this.infotabControlPanelTransitions.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
+ this.infotabControlPanelTransitions.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
+ this.infotabControlPanelTransitions.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
+ | DevComponents.DotNetBar.eBorderSide.Bottom)));
+ this.infotabControlPanelTransitions.Style.GradientAngle = 180;
+ this.infotabControlPanelTransitions.TabIndex = 5;
+ this.infotabControlPanelTransitions.TabItem = this.infotabTransition;
+ this.infotabControlPanelTransitions.Click += new System.EventHandler(this.infotabTransition_Click);
+ //
+ // displayTransition
+ //
+ this.displayTransition.AutoSize = true;
+ this.displayTransition.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
+ this.displayTransition.CurTrans = null;
+ this.displayTransition.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.displayTransition.Location = new System.Drawing.Point(1, 1);
+ this.displayTransition.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.displayTransition.MyRTB = null;
+ this.displayTransition.Name = "displayTransition";
+ this.displayTransition.RangeColor = System.Drawing.Color.Aquamarine;
+ this.displayTransition.Size = new System.Drawing.Size(202, 546);
+ this.displayTransition.TabIndex = 0;
+ //
+ // infotabTransition
+ //
+ this.infotabTransition.AttachedControl = this.infotabControlPanelTransitions;
+ this.infotabTransition.Name = "infotabTransition";
+ this.infotabTransition.Text = "Transition";
+ this.infotabTransition.Click += new System.EventHandler(this.infotabTransition_Click);
+ //
// tabControlPanel2
//
this.tabControlPanel2.Controls.Add(this.panelEx4);
@@ -2795,7 +2830,7 @@ namespace VEPROMS
this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
- | DevComponents.DotNetBar.eBorderSide.Bottom)));
+ | DevComponents.DotNetBar.eBorderSide.Bottom)));
this.tabControlPanel2.Style.GradientAngle = 180;
this.tabControlPanel2.TabIndex = 2;
this.tabControlPanel2.TabItem = this.infotabBookMarks;
@@ -2827,7 +2862,7 @@ namespace VEPROMS
this.btnClrBookMrks.Dock = System.Windows.Forms.DockStyle.Top;
this.btnClrBookMrks.Location = new System.Drawing.Point(0, 58);
this.btnClrBookMrks.Name = "btnClrBookMrks";
- this.btnClrBookMrks.Size = new System.Drawing.Size(185, 29);
+ this.btnClrBookMrks.Size = new System.Drawing.Size(181, 29);
this.btnClrBookMrks.TabIndex = 3;
this.btnClrBookMrks.Text = "Clear ALL Bookmarks";
this.btnClrBookMrks.ThemeAware = true;
@@ -2838,11 +2873,12 @@ namespace VEPROMS
this.lbxBookMarks.Dock = System.Windows.Forms.DockStyle.Bottom;
this.lbxBookMarks.FormattingEnabled = true;
this.lbxBookMarks.HorizontalScrollbar = true;
+ this.lbxBookMarks.ItemHeight = 16;
this.lbxBookMarks.Location = new System.Drawing.Point(0, 87);
this.lbxBookMarks.Name = "lbxBookMarks";
- this.lbxBookMarks.Size = new System.Drawing.Size(185, 602);
+ this.lbxBookMarks.Size = new System.Drawing.Size(181, 596);
this.lbxBookMarks.TabIndex = 2;
- this.lbxBookMarks.DoubleClick += new System.EventHandler(this.lbxBookMarks_DoubleClick);
+ this.lbxBookMarks.Click += new System.EventHandler(this.lbxBookMarks_Click);
//
// btnRmvCurBookMrk
//
@@ -2850,7 +2886,7 @@ namespace VEPROMS
this.btnRmvCurBookMrk.Dock = System.Windows.Forms.DockStyle.Top;
this.btnRmvCurBookMrk.Location = new System.Drawing.Point(0, 29);
this.btnRmvCurBookMrk.Name = "btnRmvCurBookMrk";
- this.btnRmvCurBookMrk.Size = new System.Drawing.Size(185, 29);
+ this.btnRmvCurBookMrk.Size = new System.Drawing.Size(181, 29);
this.btnRmvCurBookMrk.TabIndex = 1;
this.btnRmvCurBookMrk.Text = "Remove Bookmark";
this.btnRmvCurBookMrk.ThemeAware = true;
@@ -2862,7 +2898,7 @@ namespace VEPROMS
this.btnSetBookMrk.Dock = System.Windows.Forms.DockStyle.Top;
this.btnSetBookMrk.Location = new System.Drawing.Point(0, 0);
this.btnSetBookMrk.Name = "btnSetBookMrk";
- this.btnSetBookMrk.Size = new System.Drawing.Size(185, 29);
+ this.btnSetBookMrk.Size = new System.Drawing.Size(181, 29);
this.btnSetBookMrk.TabIndex = 0;
this.btnSetBookMrk.Text = "Set Bookmark";
this.btnSetBookMrk.ThemeAware = true;
@@ -2977,17 +3013,18 @@ namespace VEPROMS
//
this.tc.Dock = System.Windows.Forms.DockStyle.Fill;
this.tc.Location = new System.Drawing.Point(37, 147);
+ this.tc.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.tc.Name = "tc";
this.tc.SelectedTab = null;
this.tc.Size = new System.Drawing.Size(762, 571);
this.tc.TabIndex = 8;
this.tc.LinkModifyTran += new Volian.Controls.Library.DisplayPanelLinkEvent(this.tc_LinkModifyTran);
- this.tc.LinkModifyRO += new Volian.Controls.Library.DisplayPanelLinkEvent(this.tc_LinkModifyRO);
this.tc.ItemSelectedChanged += new Volian.Controls.Library.DisplayPanelEvent(this.tc_ItemSelectedChanged);
+ this.tc.LinkModifyRO += new Volian.Controls.Library.DisplayPanelLinkEvent(this.tc_LinkModifyRO);
//
// frmVEPROMS
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(1036, 780);
@@ -3003,14 +3040,14 @@ namespace VEPROMS
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "frmVEPROMS";
this.Text = "VE-PROMS";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmVEPROMS_FormClosing);
this.Load += new System.EventHandler(this.frmVEPROMS_Load);
+ this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmVEPROMS_FormClosing);
this.ribbonControl1.ResumeLayout(false);
this.ribbonControl1.PerformLayout();
+ this.ribbonPanel2.ResumeLayout(false);
this.ribbonPanel1.ResumeLayout(false);
this.ribbonPanel4.ResumeLayout(false);
this.ribbonPanel3.ResumeLayout(false);
- this.ribbonPanel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.bottomBar)).EndInit();
this.epComments.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.c1CommentGrid)).EndInit();
@@ -3019,17 +3056,18 @@ namespace VEPROMS
this.infoPanel.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.infoTabs)).EndInit();
this.infoTabs.ResumeLayout(false);
- this.infotabControlPanelRO.ResumeLayout(false);
this.tabControlPanel1.ResumeLayout(false);
this.panelEx1.ResumeLayout(false);
this.groupPanel4.ResumeLayout(false);
this.groupPanel3.ResumeLayout(false);
this.groupPanel2.ResumeLayout(false);
this.groupPanel1.ResumeLayout(false);
- this.infotabControlPanelTransitions.ResumeLayout(false);
- this.infotabControlPanelTransitions.PerformLayout();
this.tabControlPanel3.ResumeLayout(false);
this.navpaneResults.ResumeLayout(false);
+ this.navpanSrchRslts.ResumeLayout(false);
+ this.infotabControlPanelRO.ResumeLayout(false);
+ this.infotabControlPanelTransitions.ResumeLayout(false);
+ this.infotabControlPanelTransitions.PerformLayout();
this.tabControlPanel2.ResumeLayout(false);
this.panelEx4.ResumeLayout(false);
this.ResumeLayout(false);
@@ -3277,6 +3315,9 @@ namespace VEPROMS
private Volian.Controls.Library.DisplayTabControl tc;
private Volian.Controls.Library.DisplayTransition displayTransition;
private Volian.Controls.Library.DisplayRO displayRO;
+ private DevComponents.DotNetBar.Controls.ComboBoxEx cbAnnoType;
+ private System.Windows.Forms.ListBox lbResults;
+ private System.Windows.Forms.ToolTip toolTip1;
}
}
diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs
index f7072b33..3f5a4376 100644
--- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs
+++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs
@@ -58,12 +58,6 @@ namespace VEPROMS
tv.NodeProperties += new Volian.Controls.Library.vlnTreeViewEvent(tv_NodeProperties);
_CommentTitleBckColor = epComments.TitleStyle.BackColor1.Color;
epComments.Expanded = false;
- // TODO: load previously set bookmarks
- btnPrevPos.Enabled = false;
- btnClrBookMrks.Enabled = false;
- btnRmvCurBookMrk.Enabled = false;
- lbxBookMarks.Enabled = false;
- _PrevBookMark = null;
infoPanel.Expanded = false;
}
@@ -90,10 +84,37 @@ namespace VEPROMS
if (Settings.Default["Size"] != null) this.Size = Settings.Default.Size;
ShutDownRibbons();
_MyMRIList = MostRecentItemList.GetMRILst((System.Collections.Specialized.StringCollection)(Properties.Settings.Default["MRIList"]));
+ _MyBookMarks = MostRecentItemList.GetMRILst((System.Collections.Specialized.StringCollection)(Properties.Settings.Default["BookMarks"]));
+
SetupMRU();
+ SetupBookMarks();
+ SetupAnnotations();
}
+
+ private void SetupAnnotations()
+ {
+ cbAnnoType.DataSource = AnnotationTypeInfoList.Get();
+ cbAnnoType.DisplayMember = "Name";
+ lbResults.MouseMove += new MouseEventHandler(lbResults_MouseMove);
+ }
+
#region MRU
private MostRecentItemList _MyMRIList;
+ private MostRecentItemList _MyBookMarks;
+ private void SetupBookMarks()
+ {
+ // TODO: load previously set bookmarks
+ lbxBookMarks.SelectedValueChanged += new EventHandler(lbxBookMarks_SelectedValueChanged);
+ RefreshBookMarkData();
+ btnPrevPos.Enabled = false;
+ //lbxBookMarks.Enabled = false;
+ _PrevBookMark = null;
+ }
+
+ void lbxBookMarks_SelectedValueChanged(object sender, EventArgs e)
+ {
+ btnRmvCurBookMrk.Enabled = (lbxBookMarks.SelectedIndex >= 0);
+ }
private void SetupMRU()
{
icRecentDocs.SubItems.Clear();
@@ -139,6 +160,7 @@ namespace VEPROMS
private void SaveMRU()
{
Properties.Settings.Default.MRIList = _MyMRIList.ToSettings();
+ Properties.Settings.Default.BookMarks = _MyBookMarks.ToSettings();
Properties.Settings.Default.Save();
}
#endregion
@@ -738,12 +760,12 @@ namespace VEPROMS
///
private void btnPrevPos_Click(object sender, EventArgs e)
{
- if (_PrevBookMark != null)
- {
- VETreeNode jumpToHere = _PrevBookMark; // save current previous
- btnSetBookMrk_Click(sender, e); // save current as the new previous
- tv.SelectedNode = jumpToHere; // jump to the saved previous
- }
+ //if (_PrevBookMark != null)
+ //{
+ // VETreeNode jumpToHere = _PrevBookMark; // save current previous
+ // btnSetBookMrk_Click(sender, e); // save current as the new previous
+ // tv.SelectedNode = jumpToHere; // jump to the saved previous
+ //}
}
///
@@ -753,12 +775,22 @@ namespace VEPROMS
///
private void btnClrBookMrks_Click(object sender, EventArgs e)
{
- lbxBookMarks.Items.Clear();
- lbxBookMarks.Enabled = false;
- btnPrevPos.Enabled = false;
- btnClrBookMrks.Enabled = false;
- btnRmvCurBookMrk.Enabled = false;
- _PrevBookMark = null;
+ _MyBookMarks.Clear();
+ RefreshBookMarkData();
+ //lbxBookMarks.Items.Clear();
+ //lbxBookMarks.Enabled = false;
+ //btnPrevPos.Enabled = false;
+ //btnClrBookMrks.Enabled = false;
+ //btnRmvCurBookMrk.Enabled = false;
+ //_PrevBookMark = null;
+ }
+
+ private void RefreshBookMarkData()
+ {
+ lbxBookMarks.DataSource = null;
+ lbxBookMarks.DataSource = _MyBookMarks;
+ lbxBookMarks.DisplayMember = "MenuTitle";
+ btnClrBookMrks.Enabled = (lbxBookMarks.Items.Count > 0);
}
///
@@ -768,26 +800,28 @@ namespace VEPROMS
///
private void btnRmvCurBookMrk_Click(object sender, EventArgs e)
{
- lbxBookMarks.Items.RemoveAt(lbxBookMarks.SelectedIndex);
- if (lbxBookMarks.Items.Count == 0)
- {
- lbxBookMarks.Enabled = false;
- btnPrevPos.Enabled = false;
- btnClrBookMrks.Enabled = false;
- btnRmvCurBookMrk.Enabled = false;
- _PrevBookMark = null;
- }
+ _MyBookMarks.RemoveAt(lbxBookMarks.SelectedIndex);
+ RefreshBookMarkData();
+ // lbxBookMarks.Items.RemoveAt(lbxBookMarks.SelectedIndex);
+ // if (lbxBookMarks.Items.Count == 0)
+ // {
+ // //lbxBookMarks.Enabled = false;
+ // btnPrevPos.Enabled = false;
+ // btnClrBookMrks.Enabled = (lbxBookMarks.Items.Count > 0);
+ // //btnRmvCurBookMrk.Enabled = (lbxBookMarks.SelectedIndex >= 0);
+ // _PrevBookMark = null;
+ // }
}
///
/// Adds the given tree node to the list of bookmarks
///
///
- private void AddToBookMarkList(VETreeNode bkmrk)
- {
- if (!(lbxBookMarks.Items.Contains(bkmrk)))
- lbxBookMarks.Items.Add(bkmrk);
- }
+ //private void AddToBookMarkList(VETreeNode bkmrk)
+ //{
+ // if (!(lbxBookMarks.Items.Contains(bkmrk)))
+ // lbxBookMarks.Items.Add(bkmrk);
+ //}
///
/// Set Bookmark button on the Information pannel
@@ -796,26 +830,18 @@ namespace VEPROMS
///
private void btnSetBookMrk_Click(object sender, EventArgs e)
{
- VETreeNode tn = (VETreeNode)(tv.SelectedNode);
- AddToBookMarkList(tn);
- _PrevBookMark = tn;
- lbxBookMarks.Enabled = true;
- btnPrevPos.Enabled = true;
- btnClrBookMrks.Enabled = true;
- btnRmvCurBookMrk.Enabled = true;
+ DisplayTabPanel dtp = ((DisplayTabItem)tc.SelectedTab).MyTabPanel;
+ _MyBookMarks.Add(dtp.SelectedItem.MyItem);
+ RefreshBookMarkData();
+ //VETreeNode tn = (VETreeNode)(tv.SelectedNode);
+ //AddToBookMarkList(tn);
+ //_PrevBookMark = tn;
+ //lbxBookMarks.Enabled = true;
+ //btnPrevPos.Enabled = true;
+ //btnClrBookMrks.Enabled = true;
+ //btnRmvCurBookMrk.Enabled = true;
}
- ///
- /// Bookmarks List item double click event
- /// Jump to slected bookmark
- ///
- ///
- ///
- private void lbxBookMarks_DoubleClick(object sender, EventArgs e)
- {
- if (lbxBookMarks.SelectedItem != null)
- tv.SelectedNode = (VETreeNode)lbxBookMarks.SelectedItem;
- }
#endregion
#region DisplayPanel
@@ -1161,5 +1187,45 @@ namespace VEPROMS
displayRO.MyRTB = dtp.MyPanel.DisplayItemSelected.MyDisplayRTB;
displayRO.CurROLink = args.RoUsageid; // this is wrong - use for now.
}
+
+ private bool _LoadingList = false;
+ private void cbAnnoType_SelectedValueChanged(object sender, EventArgs e)
+ {
+ AnnotationTypeInfo ati = cbAnnoType.SelectedValue as AnnotationTypeInfo;
+ _LoadingList = true;
+ lbResults.DataSource = ati.AnnotationTypeAnnotations;
+ lbResults.DisplayMember = "SearchText";
+ lbResults.SelectedIndex = -1;
+ LastResultsMouseOverIndex = -1;
+ _LoadingList = false;
+ }
+
+ private int LastResultsMouseOverIndex=-1;
+ void lbResults_MouseMove(object sender, MouseEventArgs e)
+ {
+ int ResultsMouseOverIndex = lbResults.IndexFromPoint(e.Location);
+ if (ResultsMouseOverIndex != -1 && ResultsMouseOverIndex != LastResultsMouseOverIndex)
+ {
+ AnnotationInfo ai = lbResults.Items[ResultsMouseOverIndex] as AnnotationInfo;
+
+ toolTip1.SetToolTip(lbResults, ai.MyItem.Path);
+ LastResultsMouseOverIndex = ResultsMouseOverIndex;
+ }
+ }
+
+ private void lbResults_SelectedValueChanged(object sender, EventArgs e)
+ {
+ if (!_LoadingList)
+ {
+ AnnotationInfo ai = lbResults.SelectedValue as AnnotationInfo;
+ tc.OpenItem(ai.MyItem);
+ }
+ }
+
+ private void lbxBookMarks_Click(object sender, EventArgs e)
+ {
+ MostRecentItem itm = lbxBookMarks.SelectedValue as MostRecentItem;
+ tc.OpenItem(itm.MyItem);
+ }
}
}
diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.resx b/PROMS/VEPROMS User Interface/frmVEPROMS.resx
index 0290d331..f124ffb3 100644
--- a/PROMS/VEPROMS User Interface/frmVEPROMS.resx
+++ b/PROMS/VEPROMS User Interface/frmVEPROMS.resx
@@ -128,6 +128,9 @@
cHBwcHd3d3ezPnd3B3AHdwB3d3ezPnd3d3d3d3d3d3ezPnd3d3d3d3d3d3ezPnd3d3d3d3d3d3ezPg==
+
+ 17, 17
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -759,9 +762,6 @@
bFkILv1JUUyMWgDrxVLnzhXMLQAAAABJRU5ErkJggg==
-
- 17, 17
-
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -1056,9 +1056,6 @@
Bj7Ytu3MNM0z2vf7fTpku91iyG+I+Vlp8+f1t3/G/0p4HPgGBbHOq7wkrakAAAAASUVORK5CYII=
-
- 17, 17
-
iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -3640,7 +3637,7 @@
156, 17
- 5,0,0,0,0,85,Columns:0{Width:127;Name:"MyAnnotationType";Caption:"Type";Style:"TextAlign:GeneralCenter;";} 1{Width:39;Name:"DTS";Caption:"Date";Style:"Format:"d";DataType:System.DateTime;TextAlign:LeftCenter;";} 2{Width:55;Name:"UserID";Caption:"User";Style:"DataType:System.String;TextAlign:LeftCenter;";} 3{Name:"BrokenRules";Caption:"BrokenRules";Visible:False;AllowEditing:False;Style:"TextAlign:GeneralCenter;";} 4{Width:82;Name:"SearchText";Caption:"Description";Style:"DataType:System.String;TextAlign:LeftCenter;";}
+ 5,0,0,0,0,100,Columns:0{Width:127;Name:"MyAnnotationType";Caption:"Type";Style:"TextAlign:GeneralCenter;";} 1{Width:39;Name:"DTS";Caption:"Date";Style:"Format:""d"";DataType:System.DateTime;TextAlign:LeftCenter;";} 2{Width:55;Name:"UserID";Caption:"User";Style:"DataType:System.String;TextAlign:LeftCenter;";} 3{Name:"BrokenRules";Caption:"BrokenRules";Visible:False;AllowEditing:False;Style:"TextAlign:GeneralCenter;";} 4{Width:82;Name:"SearchText";Caption:"Description";Style:"DataType:System.String;TextAlign:LeftCenter;";}
Normal{Font:Microsoft Sans Serif, 8pt;} Alternate{} Fixed{BackColor:Control;ForeColor:ControlText;Border:Flat,1,ControlDark,Both;BackgroundImageLayout:Hide;} Highlight{BackColor:Highlight;ForeColor:HighlightText;} Focus{} Editor{} Search{BackColor:Highlight;ForeColor:HighlightText;} Frozen{BackColor:Beige;} NewRow{} EmptyArea{BackColor:AppWorkspace;Border:Flat,1,ControlDarkDark,Both;} SelectedColumnHeader{} SelectedRowHeader{} GrandTotal{BackColor:Black;ForeColor:White;} Subtotal0{BackColor:ControlDarkDark;ForeColor:White;} Subtotal1{BackColor:ControlDarkDark;ForeColor:White;} Subtotal2{BackColor:ControlDarkDark;ForeColor:White;} Subtotal3{BackColor:ControlDarkDark;ForeColor:White;} Subtotal4{BackColor:ControlDarkDark;ForeColor:White;} Subtotal5{BackColor:ControlDarkDark;ForeColor:White;}
@@ -3675,6 +3672,9 @@
F5viAAAAAElFTkSuQmCC
+
+ 402, 17
+
41
diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs
index 8034a848..3163b072 100644
--- a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs
+++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs
@@ -603,7 +603,7 @@ namespace VEPROMS
/// label containing the default
private void ProcessCmbxSelectedValueChange(ComboBoxEx cmbx, string defstr, ButtonX button, Label deflabel)
{
- if ((cmbx.SelectedIndex != -1) && defstr.Equals(cmbx.SelectedValue))
+ if ((cmbx.SelectedIndex != -1) && defstr != null && defstr.Equals(cmbx.SelectedValue))
{
button.Focus();
button.PerformClick();