Compare commits
No commits in common. "be72063a3c3132e6cf2a404f06dc7d925247821c" and "95e21a67243fdfc6ebbfdcabed4d7f1b75c032e8" have entirely different histories.
be72063a3c
...
95e21a6724
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1704,9 +1704,8 @@ namespace VEPROMS.CSLA.Library
|
||||
try
|
||||
{
|
||||
AnnotationInfo tmp = DataPortal.Fetch<AnnotationInfo>(new RestoreCriteria(aai));
|
||||
// B2023 - 073: Crash when restoring annotation whose type had been removed (if no record return null)
|
||||
if (tmp.ErrorMessage == "No Record Found") return null;
|
||||
AddToCache(tmp);
|
||||
if (tmp.ErrorMessage == "No Record Found") tmp = null;
|
||||
tmp.MyItem.RefreshItemAnnotations();
|
||||
return tmp;
|
||||
}
|
||||
|
@ -827,16 +827,6 @@ namespace Volian.Controls.Library
|
||||
if (FlexibleMessageBox.Show(this, "Do you want to restore this annotation?", "Confirm Annotation Restore", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question) == DialogResult.Yes)
|
||||
{
|
||||
AnnotationInfo ai = AnnotationInfo.RestoreAnnotation(aai);
|
||||
// B2023-072: Don't crash if annotation type was deleted for the restore annotation
|
||||
if (ai == null)
|
||||
{
|
||||
AnnotationTypeInfo ati = AnnotationTypeInfo.Get(aai.TypeID);
|
||||
if (ati == null)
|
||||
{
|
||||
FlexibleMessageBox.Show(this, "Annotation Type was deleted, cannot restore Annotation Type\r\nCopy text from window in Change Details and paste into new annotation to restore the text.", "Annotation Type Deleted", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
}
|
||||
return;
|
||||
}
|
||||
OnAnnotationRestored(ai, ai.MyItem);
|
||||
RefreshRequired = true;
|
||||
UpdateHistory();
|
||||
|
760
PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs
generated
760
PROMS/Volian.Controls.Library/DisplaySearch.Designer.cs
generated
@ -50,6 +50,20 @@ namespace Volian.Controls.Library
|
||||
this.components = new System.ComponentModel.Container();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DisplaySearch));
|
||||
this.tabSearchTypes = new DevComponents.DotNetBar.TabControl();
|
||||
this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.gpSrchText = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.cbxTextSearchText = new DevComponents.DotNetBar.Controls.ComboBoxEx();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.panel3 = new System.Windows.Forms.Panel();
|
||||
this.cbxByWord = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxBooleanTxtSrch = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxIncROTextSrch = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxCaseSensitive = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxRnoOnly = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.rbtnSrchTxt = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxSrchTypeUsage = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.tabStepTypeSearch = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.cbxRnoOnlyTrans = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.pnlTranCategory = new System.Windows.Forms.Panel();
|
||||
@ -79,20 +93,6 @@ namespace Volian.Controls.Library
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.cbxAnnoTypes = new DevComponents.DotNetBar.Controls.ComboBoxEx();
|
||||
this.tabAnnotationSearch = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.gpSrchText = new DevComponents.DotNetBar.Controls.GroupPanel();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.cbxTextSearchText = new DevComponents.DotNetBar.Controls.ComboBoxEx();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.panel3 = new System.Windows.Forms.Panel();
|
||||
this.cbxByWord = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxBooleanTxtSrch = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxIncROTextSrch = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxCaseSensitive = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxRnoOnly = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.rbtnSrchTxt = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.cbxSrchTypeUsage = new DevComponents.DotNetBar.Controls.CheckBoxX();
|
||||
this.tabStepTypeSearch = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.btnTranCvtSelToTxt = new System.Windows.Forms.Button();
|
||||
this.lblIncTran = new System.Windows.Forms.Label();
|
||||
@ -154,6 +154,10 @@ namespace Volian.Controls.Library
|
||||
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.tabSearchTypes)).BeginInit();
|
||||
this.tabSearchTypes.SuspendLayout();
|
||||
this.tabControlPanel4.SuspendLayout();
|
||||
this.gpSrchText.SuspendLayout();
|
||||
this.panel1.SuspendLayout();
|
||||
this.panel3.SuspendLayout();
|
||||
this.tabControlPanel5.SuspendLayout();
|
||||
this.pnlTranCategory.SuspendLayout();
|
||||
this.pnlTranFormat.SuspendLayout();
|
||||
@ -163,10 +167,6 @@ namespace Volian.Controls.Library
|
||||
this.tabControlPanel3.SuspendLayout();
|
||||
this.gpSrchAnnoText.SuspendLayout();
|
||||
this.panel4.SuspendLayout();
|
||||
this.tabControlPanel4.SuspendLayout();
|
||||
this.gpSrchText.SuspendLayout();
|
||||
this.panel1.SuspendLayout();
|
||||
this.panel3.SuspendLayout();
|
||||
this.tabControlPanel1.SuspendLayout();
|
||||
this.groupBox1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
|
||||
@ -183,7 +183,6 @@ namespace Volian.Controls.Library
|
||||
this.tabSearchTypes.CanReorderTabs = false;
|
||||
this.tabSearchTypes.CloseButtonOnTabsAlwaysDisplayed = false;
|
||||
this.tabSearchTypes.CloseButtonPosition = DevComponents.DotNetBar.eTabCloseButtonPosition.Right;
|
||||
this.tabSearchTypes.Controls.Add(this.tabControlPanel4);
|
||||
this.tabSearchTypes.Controls.Add(this.tabControlPanel5);
|
||||
this.tabSearchTypes.Controls.Add(this.tabControlPanel2);
|
||||
this.tabSearchTypes.Controls.Add(this.tabControlPanel3);
|
||||
@ -191,7 +190,7 @@ namespace Volian.Controls.Library
|
||||
this.tabSearchTypes.Controls.Add(this.contextMenuBar1);
|
||||
this.tabSearchTypes.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.tabSearchTypes.Location = new System.Drawing.Point(0, 0);
|
||||
this.tabSearchTypes.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabSearchTypes.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.tabSearchTypes.Name = "tabSearchTypes";
|
||||
this.tabSearchTypes.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.tabSearchTypes.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold);
|
||||
@ -209,6 +208,264 @@ namespace Volian.Controls.Library
|
||||
this.tabSearchTypes.Text = "tabControl1";
|
||||
this.tabSearchTypes.ThemeAware = true;
|
||||
//
|
||||
// tabControlPanel4
|
||||
//
|
||||
this.tabControlPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.tabControlPanel4.Controls.Add(this.gpSrchText);
|
||||
this.tabControlPanel4.Controls.Add(this.rbtnSrchTxt);
|
||||
this.tabControlPanel4.Controls.Add(this.cbxSrchTypeUsage);
|
||||
this.tabControlPanel4.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControlPanel4.Location = new System.Drawing.Point(0, 34);
|
||||
this.tabControlPanel4.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel4.Name = "tabControlPanel4";
|
||||
this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel4.Size = new System.Drawing.Size(277, 90);
|
||||
this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
|
||||
this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel4.Style.GradientAngle = 90;
|
||||
this.superTooltip1.SetSuperTooltip(this.tabControlPanel4, new DevComponents.DotNetBar.SuperTooltipInfo("Text Search", "", "Enter the text you want to search, or select from the drop down list.\r\n\r\nLeave bl" +
|
||||
"ank to search for the usage of the selected types in \"Filter By Types\".", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(175, 140)));
|
||||
this.tabControlPanel4.TabIndex = 4;
|
||||
this.tabControlPanel4.TabItem = this.tabStepTypeSearch;
|
||||
//
|
||||
// gpSrchText
|
||||
//
|
||||
this.gpSrchText.CanvasColor = System.Drawing.SystemColors.Control;
|
||||
this.gpSrchText.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.gpSrchText.Controls.Add(this.panel1);
|
||||
this.gpSrchText.Controls.Add(this.panel3);
|
||||
this.gpSrchText.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.gpSrchText.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gpSrchText.Location = new System.Drawing.Point(23, 1);
|
||||
this.gpSrchText.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.gpSrchText.Name = "gpSrchText";
|
||||
this.gpSrchText.Size = new System.Drawing.Size(253, 70);
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpSrchText.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
this.gpSrchText.Style.BackColorGradientAngle = 90;
|
||||
this.gpSrchText.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.gpSrchText.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderBottomWidth = 1;
|
||||
this.gpSrchText.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.gpSrchText.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderLeftWidth = 1;
|
||||
this.gpSrchText.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderRightWidth = 1;
|
||||
this.gpSrchText.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderTopWidth = 1;
|
||||
this.gpSrchText.Style.CornerDiameter = 4;
|
||||
this.gpSrchText.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||
this.gpSrchText.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||
this.gpSrchText.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||
this.gpSrchText.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpSrchText.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpSrchText.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.gpSrchText.TabIndex = 5;
|
||||
this.gpSrchText.EnabledChanged += new System.EventHandler(this.gpSrchText_EnabledChanged);
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.panel1.Controls.Add(this.cbxTextSearchText);
|
||||
this.panel1.Controls.Add(this.label1);
|
||||
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.panel1.Location = new System.Drawing.Point(0, -3);
|
||||
this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(247, 23);
|
||||
this.panel1.TabIndex = 5;
|
||||
//
|
||||
// cbxTextSearchText
|
||||
//
|
||||
this.contextMenuBar1.SetContextMenuEx(this.cbxTextSearchText, this.btnCMIFindText);
|
||||
this.cbxTextSearchText.DisplayMember = "Text";
|
||||
this.cbxTextSearchText.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.cbxTextSearchText.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
||||
this.cbxTextSearchText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxTextSearchText.FormattingEnabled = true;
|
||||
this.cbxTextSearchText.ItemHeight = 16;
|
||||
this.cbxTextSearchText.Location = new System.Drawing.Point(30, 0);
|
||||
this.cbxTextSearchText.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxTextSearchText.Name = "cbxTextSearchText";
|
||||
this.cbxTextSearchText.Size = new System.Drawing.Size(217, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxTextSearchText, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Text", "", resources.GetString("cbxTextSearchText.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxTextSearchText.TabIndex = 2;
|
||||
this.cbxTextSearchText.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxTextSearchText.WatermarkText = "Enter Search Text Here";
|
||||
this.cbxTextSearchText.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ProcessEnterKey);
|
||||
this.cbxTextSearchText.Leave += new System.EventHandler(this.cbxTextSearchText_Leave);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label1.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.label1.Location = new System.Drawing.Point(0, 0);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
|
||||
this.label1.Size = new System.Drawing.Size(30, 18);
|
||||
this.superTooltip1.SetSuperTooltip(this.label1, new DevComponents.DotNetBar.SuperTooltipInfo("Search For Text", "", resources.GetString("label1.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.label1.TabIndex = 4;
|
||||
this.label1.Text = "Find:";
|
||||
//
|
||||
// panel3
|
||||
//
|
||||
this.panel3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.panel3.Controls.Add(this.cbxByWord);
|
||||
this.panel3.Controls.Add(this.cbxBooleanTxtSrch);
|
||||
this.panel3.Controls.Add(this.cbxIncROTextSrch);
|
||||
this.panel3.Controls.Add(this.cbxCaseSensitive);
|
||||
this.panel3.Controls.Add(this.cbxRnoOnly);
|
||||
this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.panel3.Location = new System.Drawing.Point(0, 20);
|
||||
this.panel3.Name = "panel3";
|
||||
this.panel3.Size = new System.Drawing.Size(247, 44);
|
||||
this.panel3.TabIndex = 6;
|
||||
//
|
||||
// cbxByWord
|
||||
//
|
||||
this.cbxByWord.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxByWord.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxByWord.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxByWord.Location = new System.Drawing.Point(106, 6);
|
||||
this.cbxByWord.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxByWord.Name = "cbxByWord";
|
||||
this.cbxByWord.Size = new System.Drawing.Size(56, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxByWord, new DevComponents.DotNetBar.SuperTooltipInfo("By Word", "", "When this box is checked, Search will find only matches of the search text as a w" +
|
||||
"ord not as part of a word.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxByWord.TabIndex = 7;
|
||||
this.cbxByWord.Text = "By Word";
|
||||
//
|
||||
// cbxBooleanTxtSrch
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxBooleanTxtSrch.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxBooleanTxtSrch.Location = new System.Drawing.Point(160, 23);
|
||||
this.cbxBooleanTxtSrch.Name = "cbxBooleanTxtSrch";
|
||||
this.cbxBooleanTxtSrch.Size = new System.Drawing.Size(86, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxBooleanTxtSrch, new DevComponents.DotNetBar.SuperTooltipInfo("Boolean Search", "", resources.GetString("cbxBooleanTxtSrch.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxBooleanTxtSrch.TabIndex = 6;
|
||||
this.cbxBooleanTxtSrch.Text = "Boolean Search";
|
||||
this.cbxBooleanTxtSrch.Visible = false;
|
||||
this.cbxBooleanTxtSrch.CheckedChanged += new System.EventHandler(this.cbxBooleanTxtSrch_CheckedChanged);
|
||||
//
|
||||
// cbxIncROTextSrch
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxIncROTextSrch.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxIncROTextSrch.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxIncROTextSrch.Location = new System.Drawing.Point(9, 23);
|
||||
this.cbxIncROTextSrch.Name = "cbxIncROTextSrch";
|
||||
this.cbxIncROTextSrch.Size = new System.Drawing.Size(169, 12);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxIncROTextSrch, new DevComponents.DotNetBar.SuperTooltipInfo("Search RO and Transition Text", "", "When this box is checked, Search will include matches found in RO and Transition " +
|
||||
"text as well as regular text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxIncROTextSrch.TabIndex = 5;
|
||||
this.cbxIncROTextSrch.Text = "Search RO and Transition Text";
|
||||
//
|
||||
// cbxCaseSensitive
|
||||
//
|
||||
this.cbxCaseSensitive.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxCaseSensitive.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxCaseSensitive.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxCaseSensitive.Location = new System.Drawing.Point(9, 6);
|
||||
this.cbxCaseSensitive.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxCaseSensitive.Name = "cbxCaseSensitive";
|
||||
this.cbxCaseSensitive.Size = new System.Drawing.Size(104, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxCaseSensitive, new DevComponents.DotNetBar.SuperTooltipInfo("Case Sensitive", "", "When this box is checked, Search will find only exact matches of the search text " +
|
||||
"you had entered.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxCaseSensitive.TabIndex = 3;
|
||||
this.cbxCaseSensitive.Text = "Case Sensitive";
|
||||
//
|
||||
// cbxRnoOnly
|
||||
//
|
||||
this.cbxRnoOnly.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxRnoOnly.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxRnoOnly.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxRnoOnly.Location = new System.Drawing.Point(172, 6);
|
||||
this.cbxRnoOnly.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxRnoOnly.Name = "cbxRnoOnly";
|
||||
this.cbxRnoOnly.Size = new System.Drawing.Size(71, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxRnoOnly, new DevComponents.DotNetBar.SuperTooltipInfo("RNO Only", "", "When this box is checked, Search will find only the matches that are in RNO steps" +
|
||||
".", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxRnoOnly.TabIndex = 7;
|
||||
this.cbxRnoOnly.Text = "RNO Only";
|
||||
//
|
||||
// rbtnSrchTxt
|
||||
//
|
||||
this.rbtnSrchTxt.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.rbtnSrchTxt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.rbtnSrchTxt.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
|
||||
this.rbtnSrchTxt.Checked = true;
|
||||
this.rbtnSrchTxt.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.rbtnSrchTxt.CheckValue = "Y";
|
||||
this.rbtnSrchTxt.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.rbtnSrchTxt.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.rbtnSrchTxt.Location = new System.Drawing.Point(1, 1);
|
||||
this.rbtnSrchTxt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.rbtnSrchTxt.Name = "rbtnSrchTxt";
|
||||
this.rbtnSrchTxt.Size = new System.Drawing.Size(22, 70);
|
||||
this.rbtnSrchTxt.TabIndex = 6;
|
||||
this.rbtnSrchTxt.CheckedChanged += new System.EventHandler(this.rbtnSrchTxt_CheckedChanged);
|
||||
//
|
||||
// cbxSrchTypeUsage
|
||||
//
|
||||
this.cbxSrchTypeUsage.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxSrchTypeUsage.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxSrchTypeUsage.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
|
||||
this.cbxSrchTypeUsage.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.cbxSrchTypeUsage.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxSrchTypeUsage.Location = new System.Drawing.Point(1, 71);
|
||||
this.cbxSrchTypeUsage.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxSrchTypeUsage.Name = "cbxSrchTypeUsage";
|
||||
this.cbxSrchTypeUsage.Size = new System.Drawing.Size(275, 18);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxSrchTypeUsage, new DevComponents.DotNetBar.SuperTooltipInfo("Find Selected Step Elements", "", "This option will have Search show you where the selected Step Elements are used.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxSrchTypeUsage.TabIndex = 4;
|
||||
this.cbxSrchTypeUsage.Text = " Find Selected Step Elements";
|
||||
this.cbxSrchTypeUsage.CheckedChanged += new System.EventHandler(this.cbxSrchTypeUsage_CheckedChanged);
|
||||
//
|
||||
// tabStepTypeSearch
|
||||
//
|
||||
this.tabStepTypeSearch.AttachedControl = this.tabControlPanel4;
|
||||
this.tabStepTypeSearch.Name = "tabStepTypeSearch";
|
||||
this.superTooltip1.SetSuperTooltip(this.tabStepTypeSearch, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Text", "", "Allows you to search for entered text in selected procedure sets and within selec" +
|
||||
"ted procedure text types.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 110)));
|
||||
this.tabStepTypeSearch.Text = "Text";
|
||||
this.tabStepTypeSearch.Click += new System.EventHandler(this.tabStepTypeSearch_Click);
|
||||
//
|
||||
// tabControlPanel5
|
||||
//
|
||||
this.tabControlPanel5.Controls.Add(this.cbxRnoOnlyTrans);
|
||||
@ -319,16 +576,16 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
// pnlTranVersion
|
||||
//
|
||||
this.pnlTranVersion.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.pnlTranVersion.Controls.Add(this.cbxTranVersion);
|
||||
this.pnlTranVersion.Controls.Add(this.lblTranVersion);
|
||||
this.pnlTranVersion.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pnlTranVersion.Location = new System.Drawing.Point(1, 1);
|
||||
this.pnlTranVersion.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;?
|
||||
this.pnlTranVersion.Controls.Add(this.cbxTranVersion);?
|
||||
this.pnlTranVersion.Controls.Add(this.lblTranVersion);?
|
||||
this.pnlTranVersion.Dock = System.Windows.Forms.DockStyle.Top;?
|
||||
this.pnlTranVersion.Location = new System.Drawing.Point(1, 1);?
|
||||
this.pnlTranVersion.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pnlTranVersion.Name = "pnlTranVersion";
|
||||
this.pnlTranVersion.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.pnlTranVersion.Name = "pnlTranVersion";?
|
||||
this.pnlTranVersion.Padding = new System.Windows.Forms.Padding(1);?
|
||||
this.pnlTranVersion.Size = new System.Drawing.Size(275, 21);
|
||||
this.pnlTranVersion.TabIndex = 0;
|
||||
this.pnlTranVersion.TabIndex = 0;?
|
||||
//
|
||||
// cbxTranVersion
|
||||
//
|
||||
@ -485,7 +742,7 @@ namespace Volian.Controls.Library
|
||||
this.pnlTranVersion.Controls.Add(this.lblTranVersion);
|
||||
this.pnlTranVersion.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.pnlTranVersion.Location = new System.Drawing.Point(1, 1);
|
||||
this.pnlTranVersion.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pnlTranVersion.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pnlTranVersion.Name = "pnlTranVersion";
|
||||
this.pnlTranVersion.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.pnlTranVersion.Size = new System.Drawing.Size(275, 21);
|
||||
@ -495,7 +752,7 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
this.cbxTranVersion.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.cbxTranVersion.Location = new System.Drawing.Point(52, 1);
|
||||
this.cbxTranVersion.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTranVersion.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxTranVersion.Name = "cbxTranVersion";
|
||||
this.cbxTranVersion.Size = new System.Drawing.Size(220, 21);
|
||||
this.cbxTranVersion.TabIndex = 1;
|
||||
@ -520,130 +777,6 @@ namespace Volian.Controls.Library
|
||||
"d procedure set(s).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 110)));
|
||||
this.tabTranSearch.Text = "Transitions";
|
||||
//
|
||||
// tabControlPanel2
|
||||
//
|
||||
this.tabControlPanel2.Controls.Add(this.gpFindROs);
|
||||
this.tabControlPanel2.Controls.Add(this.cmboTreeROs);
|
||||
this.tabControlPanel2.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControlPanel2.Location = new System.Drawing.Point(0, 34);
|
||||
this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel2.Name = "tabControlPanel2";
|
||||
this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel2.Size = new System.Drawing.Size(277, 90);
|
||||
this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
|
||||
this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel2.Style.GradientAngle = 90;
|
||||
this.tabControlPanel2.TabIndex = 2;
|
||||
this.tabControlPanel2.TabItem = this.tabROSearch;
|
||||
//
|
||||
// gpFindROs
|
||||
//
|
||||
this.gpFindROs.CanvasColor = System.Drawing.SystemColors.Control;
|
||||
this.gpFindROs.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.gpFindROs.Controls.Add(this.cbxRnoOnlyRO);
|
||||
this.gpFindROs.Controls.Add(this.lblSrchRoMsg);
|
||||
this.gpFindROs.Controls.Add(this.cbxFndUnLnkROVals);
|
||||
this.gpFindROs.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.gpFindROs.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gpFindROs.Location = new System.Drawing.Point(1, 21);
|
||||
this.gpFindROs.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.gpFindROs.Name = "gpFindROs";
|
||||
this.gpFindROs.Size = new System.Drawing.Size(275, 68);
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpFindROs.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
this.gpFindROs.Style.BackColorGradientAngle = 90;
|
||||
this.gpFindROs.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.gpFindROs.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpFindROs.Style.BorderBottomWidth = 1;
|
||||
this.gpFindROs.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.gpFindROs.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpFindROs.Style.BorderLeftWidth = 1;
|
||||
this.gpFindROs.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpFindROs.Style.BorderRightWidth = 1;
|
||||
this.gpFindROs.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpFindROs.Style.BorderTopWidth = 1;
|
||||
this.gpFindROs.Style.CornerDiameter = 4;
|
||||
this.gpFindROs.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||
this.gpFindROs.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||
this.gpFindROs.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||
this.gpFindROs.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpFindROs.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpFindROs.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.gpFindROs.TabIndex = 3;
|
||||
this.gpFindROs.EnabledChanged += new System.EventHandler(this.gpFindROs_EnabledChanged);
|
||||
//
|
||||
// cbxRnoOnlyRO
|
||||
//
|
||||
this.cbxRnoOnlyRO.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxRnoOnlyRO.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxRnoOnlyRO.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxRnoOnlyRO.Location = new System.Drawing.Point(186, 4);
|
||||
this.cbxRnoOnlyRO.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxRnoOnlyRO.Name = "cbxRnoOnlyRO";
|
||||
this.cbxRnoOnlyRO.Size = new System.Drawing.Size(71, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxRnoOnlyRO, new DevComponents.DotNetBar.SuperTooltipInfo("RNO Only", "", "When this box is checked, Search will find only the matches that are in RNO steps" +
|
||||
".", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxRnoOnlyRO.TabIndex = 8;
|
||||
this.cbxRnoOnlyRO.Text = "RNO Only";
|
||||
//
|
||||
// lblSrchRoMsg
|
||||
//
|
||||
this.lblSrchRoMsg.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.lblSrchRoMsg.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.lblSrchRoMsg.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.lblSrchRoMsg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
|
||||
this.lblSrchRoMsg.Location = new System.Drawing.Point(7, 23);
|
||||
this.lblSrchRoMsg.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.lblSrchRoMsg.Name = "lblSrchRoMsg";
|
||||
this.lblSrchRoMsg.Size = new System.Drawing.Size(262, 40);
|
||||
this.lblSrchRoMsg.TabIndex = 3;
|
||||
this.lblSrchRoMsg.Text = "This folder(s) ROs are incompatible with the currently selected folder(s). This " +
|
||||
"may be due to the RO values needing to be updated.";
|
||||
this.lblSrchRoMsg.Visible = false;
|
||||
this.lblSrchRoMsg.WordWrap = true;
|
||||
//
|
||||
// cbxFndUnLnkROVals
|
||||
//
|
||||
this.cbxFndUnLnkROVals.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxFndUnLnkROVals.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxFndUnLnkROVals.Enabled = false;
|
||||
this.cbxFndUnLnkROVals.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxFndUnLnkROVals.Location = new System.Drawing.Point(0, 3);
|
||||
this.cbxFndUnLnkROVals.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxFndUnLnkROVals.Name = "cbxFndUnLnkROVals";
|
||||
this.cbxFndUnLnkROVals.Size = new System.Drawing.Size(176, 19);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxFndUnLnkROVals, new DevComponents.DotNetBar.SuperTooltipInfo("Find Linked Values", "", "Finding unlinked values does the search for a specific RO.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxFndUnLnkROVals.TabIndex = 2;
|
||||
this.cbxFndUnLnkROVals.Text = "Find Unlinked Values of Selected RO";
|
||||
//
|
||||
// cmboTreeROs
|
||||
//
|
||||
this.cmboTreeROs.BackColor = System.Drawing.SystemColors.Window;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cmboTreeROs.BackgroundStyle.Class = "TextBoxBorder";
|
||||
this.cmboTreeROs.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cmboTreeROs.ButtonDropDown.Visible = true;
|
||||
@ -699,7 +832,7 @@ namespace Volian.Controls.Library
|
||||
this.gpSrchAnnoText.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gpSrchAnnoText.Enabled = false;
|
||||
this.gpSrchAnnoText.Location = new System.Drawing.Point(1, 23);
|
||||
this.gpSrchAnnoText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.gpSrchAnnoText.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.gpSrchAnnoText.Name = "gpSrchAnnoText";
|
||||
this.gpSrchAnnoText.Size = new System.Drawing.Size(275, 66);
|
||||
//
|
||||
@ -743,7 +876,7 @@ namespace Volian.Controls.Library
|
||||
this.panel4.Controls.Add(this.label2);
|
||||
this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.panel4.Location = new System.Drawing.Point(0, 0);
|
||||
this.panel4.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.panel4.Name = "panel4";
|
||||
this.panel4.Size = new System.Drawing.Size(269, 62);
|
||||
this.panel4.TabIndex = 9;
|
||||
@ -789,7 +922,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxCaseSensitiveAnnoText.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxCaseSensitiveAnnoText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxCaseSensitiveAnnoText.Location = new System.Drawing.Point(12, 25);
|
||||
this.cbxCaseSensitiveAnnoText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxCaseSensitiveAnnoText.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxCaseSensitiveAnnoText.Name = "cbxCaseSensitiveAnnoText";
|
||||
this.cbxCaseSensitiveAnnoText.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbxCaseSensitiveAnnoText.Size = new System.Drawing.Size(92, 15);
|
||||
@ -808,7 +941,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxTextSearchAnnotation.FormattingEnabled = true;
|
||||
this.cbxTextSearchAnnotation.ItemHeight = 16;
|
||||
this.cbxTextSearchAnnotation.Location = new System.Drawing.Point(30, 0);
|
||||
this.cbxTextSearchAnnotation.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTextSearchAnnotation.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxTextSearchAnnotation.Name = "cbxTextSearchAnnotation";
|
||||
this.cbxTextSearchAnnotation.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbxTextSearchAnnotation.Size = new System.Drawing.Size(239, 22);
|
||||
@ -844,7 +977,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxAnnoTypes.FormattingEnabled = true;
|
||||
this.cbxAnnoTypes.ItemHeight = 16;
|
||||
this.cbxAnnoTypes.Location = new System.Drawing.Point(1, 1);
|
||||
this.cbxAnnoTypes.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxAnnoTypes.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbxAnnoTypes.Name = "cbxAnnoTypes";
|
||||
this.cbxAnnoTypes.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbxAnnoTypes.Size = new System.Drawing.Size(275, 22);
|
||||
@ -861,275 +994,6 @@ namespace Volian.Controls.Library
|
||||
this.tabAnnotationSearch.Text = "Annotations";
|
||||
this.tabAnnotationSearch.Click += new System.EventHandler(this.tabAnnotationSearch_Click);
|
||||
//
|
||||
// tabControlPanel4
|
||||
//
|
||||
this.tabControlPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.tabControlPanel4.Controls.Add(this.gpSrchText);
|
||||
this.tabControlPanel4.Controls.Add(this.rbtnSrchTxt);
|
||||
this.tabControlPanel4.Controls.Add(this.cbxSrchTypeUsage);
|
||||
this.tabControlPanel4.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControlPanel4.Location = new System.Drawing.Point(0, 34);
|
||||
this.tabControlPanel4.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel4.Name = "tabControlPanel4";
|
||||
this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel4.Size = new System.Drawing.Size(277, 90);
|
||||
this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
|
||||
this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel4.Style.GradientAngle = 90;
|
||||
this.superTooltip1.SetSuperTooltip(this.tabControlPanel4, new DevComponents.DotNetBar.SuperTooltipInfo("Text Search", "", "Enter the text you want to search, or select from the drop down list.\r\n\r\nLeave bl" +
|
||||
"ank to search for the usage of the selected types in \"Filter By Types\".", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(175, 140)));
|
||||
this.tabControlPanel4.TabIndex = 4;
|
||||
this.tabControlPanel4.TabItem = this.tabStepTypeSearch;
|
||||
//
|
||||
// gpSrchText
|
||||
//
|
||||
this.gpSrchText.CanvasColor = System.Drawing.SystemColors.Control;
|
||||
this.gpSrchText.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.gpSrchText.Controls.Add(this.panel1);
|
||||
this.gpSrchText.Controls.Add(this.panel3);
|
||||
this.gpSrchText.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.gpSrchText.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.gpSrchText.Location = new System.Drawing.Point(23, 1);
|
||||
this.gpSrchText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.gpSrchText.Name = "gpSrchText";
|
||||
this.gpSrchText.Size = new System.Drawing.Size(253, 70);
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpSrchText.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
this.gpSrchText.Style.BackColorGradientAngle = 90;
|
||||
this.gpSrchText.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.gpSrchText.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderBottomWidth = 1;
|
||||
this.gpSrchText.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.gpSrchText.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderLeftWidth = 1;
|
||||
this.gpSrchText.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderRightWidth = 1;
|
||||
this.gpSrchText.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
|
||||
this.gpSrchText.Style.BorderTopWidth = 1;
|
||||
this.gpSrchText.Style.CornerDiameter = 4;
|
||||
this.gpSrchText.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
|
||||
this.gpSrchText.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
|
||||
this.gpSrchText.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
|
||||
this.gpSrchText.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpSrchText.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.gpSrchText.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.gpSrchText.TabIndex = 5;
|
||||
this.gpSrchText.EnabledChanged += new System.EventHandler(this.gpSrchText_EnabledChanged);
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.panel1.Controls.Add(this.cbxTextSearchText);
|
||||
this.panel1.Controls.Add(this.label1);
|
||||
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.panel1.Location = new System.Drawing.Point(0, -3);
|
||||
this.panel1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(247, 23);
|
||||
this.panel1.TabIndex = 5;
|
||||
//
|
||||
// cbxTextSearchText
|
||||
//
|
||||
this.contextMenuBar1.SetContextMenuEx(this.cbxTextSearchText, this.btnCMIFindText);
|
||||
this.cbxTextSearchText.DisplayMember = "Text";
|
||||
this.cbxTextSearchText.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.cbxTextSearchText.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
|
||||
this.cbxTextSearchText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxTextSearchText.FormattingEnabled = true;
|
||||
this.cbxTextSearchText.ItemHeight = 16;
|
||||
this.cbxTextSearchText.Location = new System.Drawing.Point(30, 0);
|
||||
this.cbxTextSearchText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTextSearchText.Name = "cbxTextSearchText";
|
||||
this.cbxTextSearchText.Size = new System.Drawing.Size(217, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxTextSearchText, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Text", "", resources.GetString("cbxTextSearchText.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxTextSearchText.TabIndex = 2;
|
||||
this.cbxTextSearchText.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxTextSearchText.WatermarkText = "Enter Search Text Here";
|
||||
this.cbxTextSearchText.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ProcessEnterKey);
|
||||
this.cbxTextSearchText.Leave += new System.EventHandler(this.cbxTextSearchText_Leave);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.label1.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.label1.Location = new System.Drawing.Point(0, 0);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
|
||||
this.label1.Size = new System.Drawing.Size(30, 18);
|
||||
this.superTooltip1.SetSuperTooltip(this.label1, new DevComponents.DotNetBar.SuperTooltipInfo("Search For Text", "", resources.GetString("label1.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.label1.TabIndex = 4;
|
||||
this.label1.Text = "Find:";
|
||||
//
|
||||
// panel3
|
||||
//
|
||||
this.panel3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.panel3.Controls.Add(this.cbxByWord);
|
||||
this.panel3.Controls.Add(this.cbxBooleanTxtSrch);
|
||||
this.panel3.Controls.Add(this.cbxIncROTextSrch);
|
||||
this.panel3.Controls.Add(this.cbxCaseSensitive);
|
||||
this.panel3.Controls.Add(this.cbxRnoOnly);
|
||||
this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.panel3.Location = new System.Drawing.Point(0, 20);
|
||||
this.panel3.Name = "panel3";
|
||||
this.panel3.Size = new System.Drawing.Size(247, 44);
|
||||
this.panel3.TabIndex = 6;
|
||||
//
|
||||
// cbxByWord
|
||||
//
|
||||
this.cbxByWord.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxByWord.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxByWord.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxByWord.Location = new System.Drawing.Point(106, 6);
|
||||
this.cbxByWord.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxByWord.Name = "cbxByWord";
|
||||
this.cbxByWord.Size = new System.Drawing.Size(56, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxByWord, new DevComponents.DotNetBar.SuperTooltipInfo("By Word", "", "When this box is checked, Search will find only matches of the search text as a w" +
|
||||
"ord not as part of a word.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxByWord.TabIndex = 7;
|
||||
this.cbxByWord.Text = "By Word";
|
||||
//
|
||||
// cbxBooleanTxtSrch
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxBooleanTxtSrch.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxBooleanTxtSrch.Location = new System.Drawing.Point(160, 23);
|
||||
this.cbxBooleanTxtSrch.Name = "cbxBooleanTxtSrch";
|
||||
this.cbxBooleanTxtSrch.Size = new System.Drawing.Size(86, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxBooleanTxtSrch, new DevComponents.DotNetBar.SuperTooltipInfo("Boolean Search", "", resources.GetString("cbxBooleanTxtSrch.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxBooleanTxtSrch.TabIndex = 6;
|
||||
this.cbxBooleanTxtSrch.Text = "Boolean Search";
|
||||
this.cbxBooleanTxtSrch.Visible = false;
|
||||
this.cbxBooleanTxtSrch.CheckedChanged += new System.EventHandler(this.cbxBooleanTxtSrch_CheckedChanged);
|
||||
//
|
||||
// cbxIncROTextSrch
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxIncROTextSrch.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxIncROTextSrch.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxIncROTextSrch.Location = new System.Drawing.Point(9, 23);
|
||||
this.cbxIncROTextSrch.Name = "cbxIncROTextSrch";
|
||||
this.cbxIncROTextSrch.Size = new System.Drawing.Size(169, 12);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxIncROTextSrch, new DevComponents.DotNetBar.SuperTooltipInfo("Search RO and Transition Text", "", "When this box is checked, Search will include matches found in RO and Transition " +
|
||||
"text as well as regular text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxIncROTextSrch.TabIndex = 5;
|
||||
this.cbxIncROTextSrch.Text = "Search RO and Transition Text";
|
||||
//
|
||||
// cbxCaseSensitive
|
||||
//
|
||||
this.cbxCaseSensitive.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxCaseSensitive.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxCaseSensitive.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxCaseSensitive.Location = new System.Drawing.Point(9, 6);
|
||||
this.cbxCaseSensitive.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxCaseSensitive.Name = "cbxCaseSensitive";
|
||||
this.cbxCaseSensitive.Size = new System.Drawing.Size(104, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxCaseSensitive, new DevComponents.DotNetBar.SuperTooltipInfo("Case Sensitive", "", "When this box is checked, Search will find only exact matches of the search text " +
|
||||
"you had entered.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxCaseSensitive.TabIndex = 3;
|
||||
this.cbxCaseSensitive.Text = "Case Sensitive";
|
||||
//
|
||||
// cbxRnoOnly
|
||||
//
|
||||
this.cbxRnoOnly.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.cbxRnoOnly.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxRnoOnly.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxRnoOnly.Location = new System.Drawing.Point(172, 6);
|
||||
this.cbxRnoOnly.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxRnoOnly.Name = "cbxRnoOnly";
|
||||
this.cbxRnoOnly.Size = new System.Drawing.Size(71, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxRnoOnly, new DevComponents.DotNetBar.SuperTooltipInfo("RNO Only", "", "When this box is checked, Search will find only the matches that are in RNO steps" +
|
||||
".", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxRnoOnly.TabIndex = 7;
|
||||
this.cbxRnoOnly.Text = "RNO Only";
|
||||
//
|
||||
// rbtnSrchTxt
|
||||
//
|
||||
this.rbtnSrchTxt.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
//
|
||||
//
|
||||
this.rbtnSrchTxt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.rbtnSrchTxt.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
|
||||
this.rbtnSrchTxt.Checked = true;
|
||||
this.rbtnSrchTxt.CheckState = System.Windows.Forms.CheckState.Checked;
|
||||
this.rbtnSrchTxt.CheckValue = "Y";
|
||||
this.rbtnSrchTxt.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.rbtnSrchTxt.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.rbtnSrchTxt.Location = new System.Drawing.Point(1, 1);
|
||||
this.rbtnSrchTxt.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.rbtnSrchTxt.Name = "rbtnSrchTxt";
|
||||
this.rbtnSrchTxt.Size = new System.Drawing.Size(22, 70);
|
||||
this.rbtnSrchTxt.TabIndex = 6;
|
||||
this.rbtnSrchTxt.CheckedChanged += new System.EventHandler(this.rbtnSrchTxt_CheckedChanged);
|
||||
//
|
||||
// cbxSrchTypeUsage
|
||||
//
|
||||
this.cbxSrchTypeUsage.BackColor = System.Drawing.Color.Transparent;
|
||||
//
|
||||
this.btnTranCvtAllToTxt.Enabled = false;
|
||||
this.btnTranCvtAllToTxt.Location = new System.Drawing.Point(6, 63);
|
||||
this.btnTranCvtAllToTxt.Name = "btnTranCvtAllToTxt";
|
||||
this.btnTranCvtAllToTxt.Size = new System.Drawing.Size(109, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnTranCvtAllToTxt, new DevComponents.DotNetBar.SuperTooltipInfo("Convert All Incoming Transitions To Text", "", "Converts all of the transitions in the results list to text unless the user does " +
|
||||
"not have permission to change text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 90)));
|
||||
this.btnTranCvtAllToTxt.TabIndex = 1;
|
||||
this.btnTranCvtAllToTxt.Text = "Convert All To Text";
|
||||
this.btnTranCvtAllToTxt.UseVisualStyleBackColor = true;
|
||||
this.btnTranCvtAllToTxt.Click += new System.EventHandler(this.btnTranCvtAllToTxt_Click);
|
||||
//
|
||||
// lblSrchIncTran
|
||||
//
|
||||
this.cbxSrchTypeUsage.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbxSrchTypeUsage.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
|
||||
this.cbxSrchTypeUsage.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.cbxSrchTypeUsage.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxSrchTypeUsage.Location = new System.Drawing.Point(1, 71);
|
||||
this.cbxSrchTypeUsage.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxSrchTypeUsage.Name = "cbxSrchTypeUsage";
|
||||
this.cbxSrchTypeUsage.Size = new System.Drawing.Size(275, 18);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxSrchTypeUsage, new DevComponents.DotNetBar.SuperTooltipInfo("Find Selected Step Elements", "", "This option will have Search show you where the selected Step Elements are used.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxSrchTypeUsage.TabIndex = 4;
|
||||
this.cbxSrchTypeUsage.Text = " Find Selected Step Elements";
|
||||
this.cbxSrchTypeUsage.CheckedChanged += new System.EventHandler(this.cbxSrchTypeUsage_CheckedChanged);
|
||||
//
|
||||
// tabStepTypeSearch
|
||||
//
|
||||
this.tabStepTypeSearch.AttachedControl = this.tabControlPanel4;
|
||||
this.tabStepTypeSearch.Name = "tabStepTypeSearch";
|
||||
this.superTooltip1.SetSuperTooltip(this.tabStepTypeSearch, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Text", "", "Allows you to search for entered text in selected procedure sets and within selec" +
|
||||
"ted procedure text types.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 110)));
|
||||
this.tabStepTypeSearch.Text = "Text";
|
||||
this.tabStepTypeSearch.Click += new System.EventHandler(this.tabStepTypeSearch_Click);
|
||||
//
|
||||
// tabControlPanel1
|
||||
//
|
||||
this.tabControlPanel1.Controls.Add(this.btnTranCvtSelToTxt);
|
||||
@ -1249,7 +1113,7 @@ namespace Volian.Controls.Library
|
||||
this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
|
||||
this.btnCMIFindText});
|
||||
this.contextMenuBar1.Location = new System.Drawing.Point(225, -3);
|
||||
this.contextMenuBar1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.contextMenuBar1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.contextMenuBar1.Name = "contextMenuBar1";
|
||||
this.contextMenuBar1.Size = new System.Drawing.Size(56, 25);
|
||||
this.contextMenuBar1.Stretch = true;
|
||||
@ -1417,7 +1281,7 @@ namespace Volian.Controls.Library
|
||||
this.advTreeProcSets.DragDropEnabled = false;
|
||||
this.advTreeProcSets.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
|
||||
this.advTreeProcSets.Location = new System.Drawing.Point(0, 21);
|
||||
this.advTreeProcSets.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.advTreeProcSets.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.advTreeProcSets.MultiSelect = true;
|
||||
this.advTreeProcSets.MultiSelectRule = DevComponents.AdvTree.eMultiSelectRule.AnyNode;
|
||||
this.advTreeProcSets.Name = "advTreeProcSets";
|
||||
@ -1465,7 +1329,7 @@ namespace Volian.Controls.Library
|
||||
this.advTreeStepTypes.DragDropEnabled = false;
|
||||
this.advTreeStepTypes.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
|
||||
this.advTreeStepTypes.Location = new System.Drawing.Point(0, 21);
|
||||
this.advTreeStepTypes.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.advTreeStepTypes.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.advTreeStepTypes.MultiSelect = true;
|
||||
this.advTreeStepTypes.MultiSelectRule = DevComponents.AdvTree.eMultiSelectRule.AnyNode;
|
||||
this.advTreeStepTypes.Name = "advTreeStepTypes";
|
||||
@ -1546,7 +1410,7 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
this.lbSrchResults.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.lbSrchResults.Location = new System.Drawing.Point(0, 0);
|
||||
this.lbSrchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.lbSrchResults.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.lbSrchResults.Name = "lbSrchResults";
|
||||
this.lbSrchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.lbSrchResults.Size = new System.Drawing.Size(271, 198);
|
||||
@ -1613,7 +1477,7 @@ namespace Volian.Controls.Library
|
||||
this.btnClearSearchResults.Enabled = false;
|
||||
this.btnClearSearchResults.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnClearSearchResults.Location = new System.Drawing.Point(237, 3);
|
||||
this.btnClearSearchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnClearSearchResults.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.btnClearSearchResults.Name = "btnClearSearchResults";
|
||||
this.btnClearSearchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.btnClearSearchResults.Size = new System.Drawing.Size(37, 23);
|
||||
@ -1630,7 +1494,7 @@ namespace Volian.Controls.Library
|
||||
this.btnCopySearchResults.Enabled = false;
|
||||
this.btnCopySearchResults.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnCopySearchResults.Location = new System.Drawing.Point(105, 29);
|
||||
this.btnCopySearchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnCopySearchResults.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.btnCopySearchResults.Name = "btnCopySearchResults";
|
||||
this.btnCopySearchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.btnCopySearchResults.Size = new System.Drawing.Size(43, 23);
|
||||
@ -1648,7 +1512,7 @@ namespace Volian.Controls.Library
|
||||
this.btnSaveSearchResults.Enabled = false;
|
||||
this.btnSaveSearchResults.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnSaveSearchResults.Location = new System.Drawing.Point(218, 29);
|
||||
this.btnSaveSearchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnSaveSearchResults.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.btnSaveSearchResults.Name = "btnSaveSearchResults";
|
||||
this.btnSaveSearchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.btnSaveSearchResults.Size = new System.Drawing.Size(43, 23);
|
||||
@ -1664,7 +1528,7 @@ namespace Volian.Controls.Library
|
||||
this.btnLoadSearchResults.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
|
||||
this.btnLoadSearchResults.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnLoadSearchResults.Location = new System.Drawing.Point(266, 29);
|
||||
this.btnLoadSearchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnLoadSearchResults.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.btnLoadSearchResults.Name = "btnLoadSearchResults";
|
||||
this.btnLoadSearchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.btnLoadSearchResults.Size = new System.Drawing.Size(43, 23);
|
||||
@ -1683,7 +1547,7 @@ namespace Volian.Controls.Library
|
||||
this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.labelX1.Location = new System.Drawing.Point(3, 5);
|
||||
this.labelX1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.labelX1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.labelX1.Name = "labelX1";
|
||||
this.labelX1.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.labelX1.Size = new System.Drawing.Size(66, 14);
|
||||
@ -1706,7 +1570,7 @@ namespace Volian.Controls.Library
|
||||
this.comboItem3,
|
||||
this.comboItem4});
|
||||
this.cmbResultsStyle.Location = new System.Drawing.Point(70, 5);
|
||||
this.cmbResultsStyle.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cmbResultsStyle.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cmbResultsStyle.Name = "cmbResultsStyle";
|
||||
this.cmbResultsStyle.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cmbResultsStyle.Size = new System.Drawing.Size(110, 20);
|
||||
@ -1740,7 +1604,7 @@ namespace Volian.Controls.Library
|
||||
this.cbSorted.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.cbSorted.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbSorted.Location = new System.Drawing.Point(152, 33);
|
||||
this.cbSorted.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbSorted.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.cbSorted.Name = "cbSorted";
|
||||
this.cbSorted.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbSorted.Size = new System.Drawing.Size(42, 15);
|
||||
@ -1756,7 +1620,7 @@ namespace Volian.Controls.Library
|
||||
this.btnSearch.ColorTable = DevComponents.DotNetBar.eButtonColor.BlueOrb;
|
||||
this.btnSearch.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnSearch.Location = new System.Drawing.Point(4, 29);
|
||||
this.btnSearch.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnSearch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.btnSearch.Name = "btnSearch";
|
||||
this.btnSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.btnSearch.Size = new System.Drawing.Size(50, 23);
|
||||
@ -1773,7 +1637,7 @@ namespace Volian.Controls.Library
|
||||
this.btnPrnSrchRslts.Enabled = false;
|
||||
this.btnPrnSrchRslts.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnPrnSrchRslts.Location = new System.Drawing.Point(58, 29);
|
||||
this.btnPrnSrchRslts.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnPrnSrchRslts.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.btnPrnSrchRslts.Name = "btnPrnSrchRslts";
|
||||
this.btnPrnSrchRslts.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.btnPrnSrchRslts.Size = new System.Drawing.Size(43, 23);
|
||||
@ -1887,16 +1751,21 @@ namespace Volian.Controls.Library
|
||||
this.Controls.Add(this.xpStepTypes);
|
||||
this.Controls.Add(this.xpSetToSearch);
|
||||
this.Controls.Add(this.tabSearchTypes);
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.Name = "DisplaySearch";
|
||||
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
||||
this.Size = new System.Drawing.Size(277, 676);
|
||||
((System.ComponentModel.ISupportInitialize)(this.tabSearchTypes)).EndInit();
|
||||
this.tabSearchTypes.ResumeLayout(false);
|
||||
this.tabControlPanel4.ResumeLayout(false);
|
||||
this.gpSrchText.ResumeLayout(false);
|
||||
this.panel1.ResumeLayout(false);
|
||||
this.panel1.PerformLayout();
|
||||
this.panel3.ResumeLayout(false);
|
||||
this.tabControlPanel5.ResumeLayout(false);
|
||||
this.pnlTranCategory.ResumeLayout(false);
|
||||
this.pnlTranFormat.ResumeLayout(false);
|
||||
this.pnlTranVersion.ResumeLayout(false);
|
||||
this.pnlTranVersion.ResumeLayout(false);?
|
||||
this.tabControlPanel2.ResumeLayout(false);
|
||||
this.gpFindROs.ResumeLayout(false);
|
||||
this.tabControlPanel3.ResumeLayout(false);
|
||||
@ -1904,11 +1773,6 @@ namespace Volian.Controls.Library
|
||||
this.gpSrchAnnoText.ResumeLayout(false);
|
||||
this.panel4.ResumeLayout(false);
|
||||
this.panel4.PerformLayout();
|
||||
this.tabControlPanel4.ResumeLayout(false);
|
||||
this.gpSrchText.ResumeLayout(false);
|
||||
this.panel1.ResumeLayout(false);
|
||||
this.panel1.PerformLayout();
|
||||
this.panel3.ResumeLayout(false);
|
||||
this.tabControlPanel1.ResumeLayout(false);
|
||||
this.tabControlPanel1.PerformLayout();
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
|
Loading…
x
Reference in New Issue
Block a user