diff --git a/PROMS/VEPROMS User Interface/frmPropGrid.Designer.cs b/PROMS/VEPROMS User Interface/frmPropGrid.Designer.cs index 9d733138..df8bae76 100644 --- a/PROMS/VEPROMS User Interface/frmPropGrid.Designer.cs +++ b/PROMS/VEPROMS User Interface/frmPropGrid.Designer.cs @@ -40,17 +40,19 @@ namespace VEPROMS this.panel1.Controls.Add(this.btnOK); this.panel1.Controls.Add(this.btnCancel); this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.panel1.Location = new System.Drawing.Point(0, 476); + this.panel1.Location = new System.Drawing.Point(0, 387); + this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(473, 49); + this.panel1.Size = new System.Drawing.Size(355, 40); this.panel1.TabIndex = 0; // // btnOK // this.btnOK.Dock = System.Windows.Forms.DockStyle.Right; - this.btnOK.Location = new System.Drawing.Point(323, 0); + this.btnOK.Location = new System.Drawing.Point(243, 0); + this.btnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.btnOK.Name = "btnOK"; - this.btnOK.Size = new System.Drawing.Size(75, 49); + this.btnOK.Size = new System.Drawing.Size(56, 40); this.btnOK.TabIndex = 1; this.btnOK.Text = "OK"; this.btnOK.UseVisualStyleBackColor = true; @@ -60,9 +62,10 @@ namespace VEPROMS // this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.Dock = System.Windows.Forms.DockStyle.Right; - this.btnCancel.Location = new System.Drawing.Point(398, 0); + this.btnCancel.Location = new System.Drawing.Point(299, 0); + this.btnCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.btnCancel.Name = "btnCancel"; - this.btnCancel.Size = new System.Drawing.Size(75, 49); + this.btnCancel.Size = new System.Drawing.Size(56, 40); this.btnCancel.TabIndex = 0; this.btnCancel.Text = "Cancel"; this.btnCancel.UseVisualStyleBackColor = true; @@ -73,20 +76,24 @@ namespace VEPROMS this.pg.Dock = System.Windows.Forms.DockStyle.Fill; this.pg.Font = new System.Drawing.Font("Arial Unicode MS", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.pg.Location = new System.Drawing.Point(0, 0); + this.pg.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.pg.Name = "pg"; - this.pg.Size = new System.Drawing.Size(473, 476); + this.pg.Size = new System.Drawing.Size(355, 387); this.pg.TabIndex = 1; + this.pg.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.pg_PropertyValueChanged); // // frmPropGrid // this.AcceptButton = this.btnOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.btnCancel; this.CaptionFont = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ClientSize = new System.Drawing.Size(473, 525); + this.ClientSize = new System.Drawing.Size(355, 427); this.Controls.Add(this.pg); this.Controls.Add(this.panel1); + this.DoubleBuffered = true; + this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.Name = "frmPropGrid"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; diff --git a/PROMS/VEPROMS User Interface/frmPropGrid.cs b/PROMS/VEPROMS User Interface/frmPropGrid.cs index 73247db0..92ab548d 100644 --- a/PROMS/VEPROMS User Interface/frmPropGrid.cs +++ b/PROMS/VEPROMS User Interface/frmPropGrid.cs @@ -28,11 +28,13 @@ namespace VEPROMS private void btnOK_Click(object sender, EventArgs e) { + DialogResult = DialogResult.OK; this.Close(); } private void btnCancel_Click(object sender, EventArgs e) { + DialogResult = DialogResult.Cancel; this.Close(); } @@ -41,6 +43,26 @@ namespace VEPROMS Show(); pg.SelectedObject = _PGobject; } + + private void pg_PropertyValueChanged(object s, PropertyValueChangedEventArgs e) + { + // check if folder config & if so, check for name change + FolderConfig tstfoldercfg = this._PGobject as FolderConfig; + if (tstfoldercfg != null) + { + if ((string)e.OldValue != tstfoldercfg.Name) + { + bool isunique = tstfoldercfg.CheckUniqueName(tstfoldercfg.Name); + if (!isunique) + { + MessageBox.Show(string.Format("The Name '{0}' that was entered is not a unique folder name", tstfoldercfg.Name)); + tstfoldercfg.Name = (string)e.OldValue; + } + } + } + this.Refresh(); + + } } //public partial class SystemConfig //{ diff --git a/PROMS/VEPROMS User Interface/frmSectionProperties.Designer.cs b/PROMS/VEPROMS User Interface/frmSectionProperties.Designer.cs index 04dc5849..d5abe0bf 100644 --- a/PROMS/VEPROMS User Interface/frmSectionProperties.Designer.cs +++ b/PROMS/VEPROMS User Interface/frmSectionProperties.Designer.cs @@ -28,917 +28,972 @@ namespace VEPROMS /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSectionProperties)); - this.ppDtTmLastMod = new System.Windows.Forms.DateTimePicker(); - this.ppCbPrnSecNumTitle = new System.Windows.Forms.CheckBox(); - this.sectionConfigBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.ppCbIncTOC = new System.Windows.Forms.CheckBox(); - this.ppTxtBxUserID = new System.Windows.Forms.TextBox(); - this.label21 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.ppRTxtTitle = new System.Windows.Forms.RichTextBox(); - this.ppRTxtNumber = new System.Windows.Forms.RichTextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.label1 = new System.Windows.Forms.Label(); - this.ppCmbxAccPgPrintSize = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppCmbxNumColumns = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppCmbxSectPagination = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppCmbxStyleSectionType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppBtnDefaultFmt = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxFormat = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.formatInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.ppLblFormatDefault = new System.Windows.Forms.Label(); - this.ppCmbxCheckoffHeading = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppCmbxCheckoffType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.label12 = new System.Windows.Forms.Label(); - this.label11 = new System.Windows.Forms.Label(); - this.label8 = new System.Windows.Forms.Label(); - this.label7 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.label19 = new System.Windows.Forms.Label(); - this.ppBtnCvrtToLibDoc = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxLibDoc = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.label4 = new System.Windows.Forms.Label(); - this.ppCkLstApplicabilityDesinations = new System.Windows.Forms.CheckedListBox(); - this.ppCbProcView = new System.Windows.Forms.CheckBox(); - this.label9 = new System.Windows.Forms.Label(); - this.ppCbDeviationView = new System.Windows.Forms.CheckBox(); - this.ppCbBackView = new System.Windows.Forms.CheckBox(); - this.ppBtnCancel = new System.Windows.Forms.Button(); - this.ppBtnOK = new System.Windows.Forms.Button(); - this.ppLblDefSettingsInfo = new System.Windows.Forms.Label(); - this.ppCbShwDefSettings = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.checkBox1 = new System.Windows.Forms.CheckBox(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.label10 = new System.Windows.Forms.Label(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.label13 = new System.Windows.Forms.Label(); - this.richTextBox1 = new System.Windows.Forms.RichTextBox(); - this.richTextBox2 = new System.Windows.Forms.RichTextBox(); - this.label14 = new System.Windows.Forms.Label(); - this.label15 = new System.Windows.Forms.Label(); - this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); - this.panSectBtns = new System.Windows.Forms.Panel(); - this.btnViewStngs = new DevComponents.DotNetBar.ButtonX(); - this.btnLibDocs = new DevComponents.DotNetBar.ButtonX(); - this.btnFormat = new DevComponents.DotNetBar.ButtonX(); - this.btnGeneral = new DevComponents.DotNetBar.ButtonX(); - this.tcSectionProp = new DevComponents.DotNetBar.TabControl(); - this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); - this.ppGpbxSignoffCheckoff = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.tiFormat = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiLibDoc = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiViewStnns = new DevComponents.DotNetBar.TabItem(this.components); - ((System.ComponentModel.ISupportInitialize)(this.sectionConfigBindingSource)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.formatInfoListBindingSource)).BeginInit(); - this.panSectBtns.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.tcSectionProp)).BeginInit(); - this.tcSectionProp.SuspendLayout(); - this.tabControlPanel1.SuspendLayout(); - this.tabControlPanel2.SuspendLayout(); - this.ppGpbxSignoffCheckoff.SuspendLayout(); - this.tabControlPanel3.SuspendLayout(); - this.tabControlPanel4.SuspendLayout(); - this.SuspendLayout(); - // - // ppDtTmLastMod - // - this.ppDtTmLastMod.CustomFormat = "MM\'/\'dd\'/\'yyyy hh\':\'mm:ss tt"; - this.ppDtTmLastMod.Enabled = false; - this.ppDtTmLastMod.Format = System.Windows.Forms.DateTimePickerFormat.Custom; - this.ppDtTmLastMod.Location = new System.Drawing.Point(116, 148); - this.ppDtTmLastMod.Name = "ppDtTmLastMod"; - this.ppDtTmLastMod.Size = new System.Drawing.Size(172, 22); - this.ppDtTmLastMod.TabIndex = 24; - this.ppDtTmLastMod.Visible = false; - // - // ppCbPrnSecNumTitle - // - this.ppCbPrnSecNumTitle.AutoSize = true; - this.ppCbPrnSecNumTitle.BackColor = System.Drawing.Color.Transparent; - this.ppCbPrnSecNumTitle.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_TOC", true)); - this.ppCbPrnSecNumTitle.Location = new System.Drawing.Point(404, 261); - this.ppCbPrnSecNumTitle.Name = "ppCbPrnSecNumTitle"; - this.ppCbPrnSecNumTitle.Size = new System.Drawing.Size(223, 21); - this.ppCbPrnSecNumTitle.TabIndex = 23; - this.ppCbPrnSecNumTitle.Text = "Print Section Number and Title"; - this.ppCbPrnSecNumTitle.UseVisualStyleBackColor = false; - this.ppCbPrnSecNumTitle.Visible = false; - // - // sectionConfigBindingSource - // - this.sectionConfigBindingSource.AllowNew = false; - this.sectionConfigBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.SectionConfig); - // - // ppCbIncTOC - // - this.ppCbIncTOC.AutoSize = true; - this.ppCbIncTOC.BackColor = System.Drawing.Color.Transparent; - this.ppCbIncTOC.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_TOC", true)); - this.ppCbIncTOC.Location = new System.Drawing.Point(404, 234); - this.ppCbIncTOC.Name = "ppCbIncTOC"; - this.ppCbIncTOC.Size = new System.Drawing.Size(214, 21); - this.ppCbIncTOC.TabIndex = 22; - this.ppCbIncTOC.Text = "Include on Table Of Contents"; - this.ppCbIncTOC.UseVisualStyleBackColor = false; - this.ppCbIncTOC.Visible = false; - // - // ppTxtBxUserID - // - this.ppTxtBxUserID.AcceptsReturn = true; - this.ppTxtBxUserID.Enabled = false; - this.ppTxtBxUserID.Location = new System.Drawing.Point(116, 197); - this.ppTxtBxUserID.Name = "ppTxtBxUserID"; - this.ppTxtBxUserID.Size = new System.Drawing.Size(154, 22); - this.ppTxtBxUserID.TabIndex = 12; - this.ppTxtBxUserID.Visible = false; - // - // label21 - // - this.label21.AutoSize = true; - this.label21.BackColor = System.Drawing.Color.Transparent; - this.label21.Location = new System.Drawing.Point(55, 200); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(55, 17); - this.label21.TabIndex = 11; - this.label21.Text = "User ID"; - this.label21.Visible = false; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.BackColor = System.Drawing.Color.Transparent; - this.label3.Location = new System.Drawing.Point(18, 151); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(92, 17); - this.label3.TabIndex = 4; - this.label3.Text = "Last Modified"; - this.label3.Visible = false; - // - // ppRTxtTitle - // - this.ppRTxtTitle.AcceptsTab = true; - this.ppRTxtTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Title", true)); - this.ppRTxtTitle.Location = new System.Drawing.Point(86, 60); - this.ppRTxtTitle.Name = "ppRTxtTitle"; - this.ppRTxtTitle.Size = new System.Drawing.Size(541, 60); - this.ppRTxtTitle.TabIndex = 3; - this.ppRTxtTitle.Text = ""; - // - // ppRTxtNumber - // - this.ppRTxtNumber.AcceptsTab = true; - this.ppRTxtNumber.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Number", true)); - this.ppRTxtNumber.Location = new System.Drawing.Point(86, 9); - this.ppRTxtNumber.Multiline = false; - this.ppRTxtNumber.Name = "ppRTxtNumber"; - this.ppRTxtNumber.Size = new System.Drawing.Size(159, 22); - this.ppRTxtNumber.TabIndex = 2; - this.ppRTxtNumber.Text = ""; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.BackColor = System.Drawing.Color.Transparent; - this.label2.Location = new System.Drawing.Point(45, 60); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(35, 17); - this.label2.TabIndex = 1; - this.label2.Text = "Title"; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Transparent; - this.label1.Location = new System.Drawing.Point(22, 12); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(58, 17); - this.label1.TabIndex = 0; - this.label1.Text = "Number"; - // - // ppCmbxAccPgPrintSize - // - this.ppCmbxAccPgPrintSize.DisplayMember = "Text"; - this.ppCmbxAccPgPrintSize.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxAccPgPrintSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxAccPgPrintSize.FormattingEnabled = true; - this.ppCmbxAccPgPrintSize.Location = new System.Drawing.Point(48, 231); - this.ppCmbxAccPgPrintSize.Name = "ppCmbxAccPgPrintSize"; - this.ppCmbxAccPgPrintSize.Size = new System.Drawing.Size(213, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxAccPgPrintSize, new DevComponents.DotNetBar.SuperTooltipInfo("Print Size", "", "This is used only for non-step editor sections.\r\n\r\nSelect the printing aspects fo" + - "r this section", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCmbxAccPgPrintSize.TabIndex = 6; - this.ppCmbxAccPgPrintSize.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxAccPgPrintSize.WatermarkText = "select print size"; - // - // ppCmbxNumColumns - // - this.ppCmbxNumColumns.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.sectionConfigBindingSource, "Section_ColumnMode", true)); - this.ppCmbxNumColumns.DisplayMember = "Text"; - this.ppCmbxNumColumns.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxNumColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxNumColumns.FormattingEnabled = true; - this.ppCmbxNumColumns.Location = new System.Drawing.Point(99, 174); - this.ppCmbxNumColumns.Name = "ppCmbxNumColumns"; - this.ppCmbxNumColumns.Size = new System.Drawing.Size(121, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxNumColumns, new DevComponents.DotNetBar.SuperTooltipInfo("Columns", "", "This is used only for procedure step editor sections.\r\n\r\nSelect the number of co" + - "lumns for this section", null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(175, 130))); - this.ppCmbxNumColumns.TabIndex = 6; - this.ppCmbxNumColumns.WatermarkText = "select columns"; - // - // ppCmbxSectPagination - // - this.ppCmbxSectPagination.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.sectionConfigBindingSource, "Section_Pagination", true)); - this.ppCmbxSectPagination.DisplayMember = "Text"; - this.ppCmbxSectPagination.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxSectPagination.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxSectPagination.FormattingEnabled = true; - this.ppCmbxSectPagination.Location = new System.Drawing.Point(99, 123); - this.ppCmbxSectPagination.Name = "ppCmbxSectPagination"; - this.ppCmbxSectPagination.Size = new System.Drawing.Size(173, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxSectPagination, new DevComponents.DotNetBar.SuperTooltipInfo("Section Pagination", "", resources.GetString("ppCmbxSectPagination.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(300, 190))); - this.ppCmbxSectPagination.TabIndex = 50; - this.ppCmbxSectPagination.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxSectPagination.WatermarkText = "select section pagination"; - // - // ppCmbxStyleSectionType - // - this.ppCmbxStyleSectionType.DisplayMember = "Text"; - this.ppCmbxStyleSectionType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxStyleSectionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxStyleSectionType.FormattingEnabled = true; - this.ppCmbxStyleSectionType.Location = new System.Drawing.Point(117, 77); - this.ppCmbxStyleSectionType.Name = "ppCmbxStyleSectionType"; - this.ppCmbxStyleSectionType.Size = new System.Drawing.Size(510, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxStyleSectionType, new DevComponents.DotNetBar.SuperTooltipInfo("Section Type", "", "This is a list of the possible section types as they are defined in the selected " + - "format.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCmbxStyleSectionType.TabIndex = 49; - this.ppCmbxStyleSectionType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxStyleSectionType.WatermarkText = "select section type"; - // - // ppBtnDefaultFmt - // - this.ppBtnDefaultFmt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultFmt.Location = new System.Drawing.Point(587, 22); - this.ppBtnDefaultFmt.Name = "ppBtnDefaultFmt"; - this.ppBtnDefaultFmt.Size = new System.Drawing.Size(50, 23); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultFmt, new DevComponents.DotNetBar.SuperTooltipInfo("Default Button", "", "This will revert the format selection back to using the parent\'s format.\r\n\r\nCheck" + - " \"Show Default Settings\" to display the \"default\" format name (below the format " + - "selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppBtnDefaultFmt.TabIndex = 48; - this.ppBtnDefaultFmt.Text = "Default"; - this.ppBtnDefaultFmt.ThemeAware = true; - this.ppBtnDefaultFmt.Click += new System.EventHandler(this.ppBtnDefaultFmt_Click); - // - // ppCmbxFormat - // - this.ppCmbxFormat.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.sectionConfigBindingSource, "FormatSelection", true)); - this.ppCmbxFormat.DataSource = this.formatInfoListBindingSource; - this.ppCmbxFormat.DisplayMember = "Description"; - this.ppCmbxFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxFormat.FormattingEnabled = true; - this.ppCmbxFormat.Location = new System.Drawing.Point(13, 22); - this.ppCmbxFormat.Name = "ppCmbxFormat"; - this.ppCmbxFormat.Size = new System.Drawing.Size(568, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxFormat, new DevComponents.DotNetBar.SuperTooltipInfo("Format Selection", "", resources.GetString("ppCmbxFormat.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCmbxFormat.TabIndex = 44; - this.ppCmbxFormat.ValueMember = "Description"; - this.ppCmbxFormat.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxFormat.WatermarkText = "select a format"; - this.ppCmbxFormat.SelectedValueChanged += new System.EventHandler(this.ppCmbxFormat_SelectedValueChanged); - // - // formatInfoListBindingSource - // - this.formatInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.FormatInfo); - // - // ppLblFormatDefault - // - this.ppLblFormatDefault.AutoSize = true; - this.ppLblFormatDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblFormatDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblFormatDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.ppLblFormatDefault.Location = new System.Drawing.Point(13, 48); - this.ppLblFormatDefault.Name = "ppLblFormatDefault"; - this.ppLblFormatDefault.Size = new System.Drawing.Size(61, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblFormatDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Format setting", "", "Pressing the Default Button (to the right)\r\nwill set the format setting back to t" + - "his.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(260, 70))); - this.ppLblFormatDefault.TabIndex = 43; - this.ppLblFormatDefault.Text = "(default)"; - // - // ppCmbxCheckoffHeading - // - this.ppCmbxCheckoffHeading.DisplayMember = "Text"; - this.ppCmbxCheckoffHeading.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxCheckoffHeading.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxCheckoffHeading.FormattingEnabled = true; - this.ppCmbxCheckoffHeading.Location = new System.Drawing.Point(38, 93); - this.ppCmbxCheckoffHeading.Name = "ppCmbxCheckoffHeading"; - this.ppCmbxCheckoffHeading.Size = new System.Drawing.Size(253, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxCheckoffHeading, new DevComponents.DotNetBar.SuperTooltipInfo("Signoff / Checkoff Heading", "", "Places a column heading for the signoff/checkoff.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCmbxCheckoffHeading.TabIndex = 7; - this.ppCmbxCheckoffHeading.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxCheckoffHeading.WatermarkText = "select checkoff / signoff heading"; - // - // ppCmbxCheckoffType - // - this.ppCmbxCheckoffType.DisplayMember = "Text"; - this.ppCmbxCheckoffType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxCheckoffType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxCheckoffType.FormattingEnabled = true; - this.ppCmbxCheckoffType.Location = new System.Drawing.Point(38, 36); - this.ppCmbxCheckoffType.Name = "ppCmbxCheckoffType"; - this.ppCmbxCheckoffType.Size = new System.Drawing.Size(253, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxCheckoffType, new DevComponents.DotNetBar.SuperTooltipInfo("Signoffs / Checkoffs Type", "", "This will automatically assign a signoff/checkoff as defined by the selected form" + - "at.\r\n\r\nThis is considered a default and it can be overridden in the step editor." + - "", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCmbxCheckoffType.TabIndex = 6; - this.ppCmbxCheckoffType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxCheckoffType.WatermarkText = "select checkoff / signoff"; - // - // label12 - // - this.label12.AutoSize = true; - this.label12.BackColor = System.Drawing.Color.Transparent; - this.label12.Location = new System.Drawing.Point(16, 71); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(61, 17); - this.label12.TabIndex = 4; - this.label12.Text = "Heading"; - // - // label11 - // - this.label11.AutoSize = true; - this.label11.BackColor = System.Drawing.Color.Transparent; - this.label11.Location = new System.Drawing.Point(16, 13); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(40, 17); - this.label11.TabIndex = 2; - this.label11.Text = "Type"; - // - // label8 - // - this.label8.AutoSize = true; - this.label8.BackColor = System.Drawing.Color.Transparent; - this.label8.Location = new System.Drawing.Point(25, 209); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(68, 17); - this.label8.TabIndex = 36; - this.label8.Text = "Print Size"; - // - // label7 - // - this.label7.AutoSize = true; - this.label7.BackColor = System.Drawing.Color.Transparent; - this.label7.Location = new System.Drawing.Point(18, 123); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(75, 17); - this.label7.TabIndex = 34; - this.label7.Text = "Pagination"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.BackColor = System.Drawing.Color.Transparent; - this.label6.Location = new System.Drawing.Point(20, 77); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(91, 17); - this.label6.TabIndex = 32; - this.label6.Text = "Section Type"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.BackColor = System.Drawing.Color.Transparent; - this.label5.Location = new System.Drawing.Point(31, 174); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(62, 17); - this.label5.TabIndex = 30; - this.label5.Text = "Columns"; - // - // label19 - // - this.label19.AutoSize = true; - this.label19.BackColor = System.Drawing.Color.Transparent; - this.label19.Location = new System.Drawing.Point(25, 1); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(52, 17); - this.label19.TabIndex = 28; - this.label19.Text = "Format"; - // - // ppBtnCvrtToLibDoc - // - this.ppBtnCvrtToLibDoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnCvrtToLibDoc.Location = new System.Drawing.Point(21, 259); - this.ppBtnCvrtToLibDoc.Name = "ppBtnCvrtToLibDoc"; - this.ppBtnCvrtToLibDoc.Size = new System.Drawing.Size(279, 23); - this.superTooltip1.SetSuperTooltip(this.ppBtnCvrtToLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Convert To Library Document button", "", "This button will convert the current section to a library document, allowing it t" + - "o be shared with other procedures.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 76))); - this.ppBtnCvrtToLibDoc.TabIndex = 32; - this.ppBtnCvrtToLibDoc.Text = "Convert This Section To a Library Document"; - // - // ppCmbxLibDoc - // - this.ppCmbxLibDoc.DisplayMember = "Text"; - this.ppCmbxLibDoc.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxLibDoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxLibDoc.FormattingEnabled = true; - this.ppCmbxLibDoc.Location = new System.Drawing.Point(24, 30); - this.ppCmbxLibDoc.Name = "ppCmbxLibDoc"; - this.ppCmbxLibDoc.Size = new System.Drawing.Size(570, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Select Library Document", "", "This allows you to select a library document to reference for this section.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 76))); - this.ppCmbxLibDoc.TabIndex = 30; - this.ppCmbxLibDoc.WatermarkText = "not using a library document"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.BackColor = System.Drawing.Color.Transparent; - this.label4.Location = new System.Drawing.Point(21, 10); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(120, 17); - this.label4.TabIndex = 31; - this.label4.Text = "Library Document"; - // - // ppCkLstApplicabilityDesinations - // - this.ppCkLstApplicabilityDesinations.FormattingEnabled = true; - this.ppCkLstApplicabilityDesinations.Items.AddRange(new object[] { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSectionProperties)); + this.ppDtTmLastMod = new System.Windows.Forms.DateTimePicker(); + this.ppCbPrnSecNumTitle = new System.Windows.Forms.CheckBox(); + this.sectionConfigBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.ppCbIncTOC = new System.Windows.Forms.CheckBox(); + this.ppTxtBxUserID = new System.Windows.Forms.TextBox(); + this.label21 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.ppRTxtTitle = new System.Windows.Forms.RichTextBox(); + this.ppRTxtNumber = new System.Windows.Forms.RichTextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.ppCmbxAccPgPrintSize = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppCmbxNumColumns = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppCmbxSectPagination = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppCmbxStyleSectionType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppBtnDefaultFmt = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxFormat = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppLblFormatDefault = new System.Windows.Forms.Label(); + this.ppCmbxCheckoffHeading = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppCmbxCheckoffType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.label12 = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.ppBtnCvrtToLibDoc = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxLibDoc = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.label4 = new System.Windows.Forms.Label(); + this.ppCkLstApplicabilityDesinations = new System.Windows.Forms.CheckedListBox(); + this.ppCbProcView = new System.Windows.Forms.CheckBox(); + this.label9 = new System.Windows.Forms.Label(); + this.ppCbDeviationView = new System.Windows.Forms.CheckBox(); + this.ppCbBackView = new System.Windows.Forms.CheckBox(); + this.ppBtnCancel = new System.Windows.Forms.Button(); + this.ppBtnOK = new System.Windows.Forms.Button(); + this.ppLblDefSettingsInfo = new System.Windows.Forms.Label(); + this.ppCbShwDefSettings = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.checkBox1 = new System.Windows.Forms.CheckBox(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.label10 = new System.Windows.Forms.Label(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.richTextBox1 = new System.Windows.Forms.RichTextBox(); + this.richTextBox2 = new System.Windows.Forms.RichTextBox(); + this.label14 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); + this.panSectBtns = new System.Windows.Forms.Panel(); + this.btnViewStngs = new DevComponents.DotNetBar.ButtonX(); + this.btnLibDocs = new DevComponents.DotNetBar.ButtonX(); + this.btnFormat = new DevComponents.DotNetBar.ButtonX(); + this.btnGeneral = new DevComponents.DotNetBar.ButtonX(); + this.tcSectionProp = new DevComponents.DotNetBar.TabControl(); + this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); + this.cbIsStepSection = new System.Windows.Forms.CheckBox(); + this.ppGpbxSignoffCheckoff = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.tiFormat = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiLibDoc = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiViewStnns = new DevComponents.DotNetBar.TabItem(this.components); + ((System.ComponentModel.ISupportInitialize)(this.sectionConfigBindingSource)).BeginInit(); + this.panSectBtns.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tcSectionProp)).BeginInit(); + this.tcSectionProp.SuspendLayout(); + this.tabControlPanel2.SuspendLayout(); + this.ppGpbxSignoffCheckoff.SuspendLayout(); + this.tabControlPanel1.SuspendLayout(); + this.tabControlPanel3.SuspendLayout(); + this.tabControlPanel4.SuspendLayout(); + this.SuspendLayout(); + // + // ppDtTmLastMod + // + this.ppDtTmLastMod.CustomFormat = "MM\'/\'dd\'/\'yyyy hh\':\'mm:ss tt"; + this.ppDtTmLastMod.Enabled = false; + this.ppDtTmLastMod.Format = System.Windows.Forms.DateTimePickerFormat.Custom; + this.ppDtTmLastMod.Location = new System.Drawing.Point(87, 120); + this.ppDtTmLastMod.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppDtTmLastMod.Name = "ppDtTmLastMod"; + this.ppDtTmLastMod.Size = new System.Drawing.Size(130, 20); + this.ppDtTmLastMod.TabIndex = 24; + this.ppDtTmLastMod.Visible = false; + // + // ppCbPrnSecNumTitle + // + this.ppCbPrnSecNumTitle.AutoSize = true; + this.ppCbPrnSecNumTitle.BackColor = System.Drawing.Color.Transparent; + this.ppCbPrnSecNumTitle.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_TOC", true)); + this.ppCbPrnSecNumTitle.Location = new System.Drawing.Point(303, 212); + this.ppCbPrnSecNumTitle.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbPrnSecNumTitle.Name = "ppCbPrnSecNumTitle"; + this.ppCbPrnSecNumTitle.Size = new System.Drawing.Size(170, 17); + this.ppCbPrnSecNumTitle.TabIndex = 23; + this.ppCbPrnSecNumTitle.Text = "Print Section Number and Title"; + this.ppCbPrnSecNumTitle.UseVisualStyleBackColor = false; + this.ppCbPrnSecNumTitle.Visible = false; + // + // sectionConfigBindingSource + // + this.sectionConfigBindingSource.AllowNew = false; + this.sectionConfigBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.SectionConfig); + // + // ppCbIncTOC + // + this.ppCbIncTOC.AutoSize = true; + this.ppCbIncTOC.BackColor = System.Drawing.Color.Transparent; + this.ppCbIncTOC.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_TOC", true)); + this.ppCbIncTOC.Location = new System.Drawing.Point(303, 190); + this.ppCbIncTOC.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbIncTOC.Name = "ppCbIncTOC"; + this.ppCbIncTOC.Size = new System.Drawing.Size(165, 17); + this.ppCbIncTOC.TabIndex = 22; + this.ppCbIncTOC.Text = "Include on Table Of Contents"; + this.ppCbIncTOC.UseVisualStyleBackColor = false; + this.ppCbIncTOC.Visible = false; + // + // ppTxtBxUserID + // + this.ppTxtBxUserID.AcceptsReturn = true; + this.ppTxtBxUserID.Enabled = false; + this.ppTxtBxUserID.Location = new System.Drawing.Point(87, 160); + this.ppTxtBxUserID.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppTxtBxUserID.Name = "ppTxtBxUserID"; + this.ppTxtBxUserID.Size = new System.Drawing.Size(116, 20); + this.ppTxtBxUserID.TabIndex = 12; + this.ppTxtBxUserID.Visible = false; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.BackColor = System.Drawing.Color.Transparent; + this.label21.Location = new System.Drawing.Point(41, 162); + this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(43, 13); + this.label21.TabIndex = 11; + this.label21.Text = "User ID"; + this.label21.Visible = false; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.BackColor = System.Drawing.Color.Transparent; + this.label3.Location = new System.Drawing.Point(14, 123); + this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(70, 13); + this.label3.TabIndex = 4; + this.label3.Text = "Last Modified"; + this.label3.Visible = false; + // + // ppRTxtTitle + // + this.ppRTxtTitle.AcceptsTab = true; + this.ppRTxtTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Title", true)); + this.ppRTxtTitle.Location = new System.Drawing.Point(64, 49); + this.ppRTxtTitle.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppRTxtTitle.Name = "ppRTxtTitle"; + this.ppRTxtTitle.Size = new System.Drawing.Size(407, 50); + this.ppRTxtTitle.TabIndex = 3; + this.ppRTxtTitle.Text = ""; + // + // ppRTxtNumber + // + this.ppRTxtNumber.AcceptsTab = true; + this.ppRTxtNumber.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Number", true)); + this.ppRTxtNumber.Location = new System.Drawing.Point(64, 7); + this.ppRTxtNumber.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppRTxtNumber.Multiline = false; + this.ppRTxtNumber.Name = "ppRTxtNumber"; + this.ppRTxtNumber.Size = new System.Drawing.Size(120, 19); + this.ppRTxtNumber.TabIndex = 2; + this.ppRTxtNumber.Text = ""; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.BackColor = System.Drawing.Color.Transparent; + this.label2.Location = new System.Drawing.Point(34, 49); + this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(27, 13); + this.label2.TabIndex = 1; + this.label2.Text = "Title"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Location = new System.Drawing.Point(16, 10); + this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(44, 13); + this.label1.TabIndex = 0; + this.label1.Text = "Number"; + // + // ppCmbxAccPgPrintSize + // + this.ppCmbxAccPgPrintSize.DisplayMember = "Text"; + this.ppCmbxAccPgPrintSize.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxAccPgPrintSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxAccPgPrintSize.FormattingEnabled = true; + this.ppCmbxAccPgPrintSize.Location = new System.Drawing.Point(36, 188); + this.ppCmbxAccPgPrintSize.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxAccPgPrintSize.Name = "ppCmbxAccPgPrintSize"; + this.ppCmbxAccPgPrintSize.Size = new System.Drawing.Size(161, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxAccPgPrintSize, new DevComponents.DotNetBar.SuperTooltipInfo("Print Size", "", "This is used only for non-step editor sections.\r\n\r\nSelect the printing aspects fo" + + "r this section", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCmbxAccPgPrintSize.TabIndex = 6; + this.ppCmbxAccPgPrintSize.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxAccPgPrintSize.WatermarkText = "select print size"; + // + // ppCmbxNumColumns + // + this.ppCmbxNumColumns.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.sectionConfigBindingSource, "Section_ColumnMode", true)); + this.ppCmbxNumColumns.DisplayMember = "Text"; + this.ppCmbxNumColumns.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxNumColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxNumColumns.FormattingEnabled = true; + this.ppCmbxNumColumns.Location = new System.Drawing.Point(74, 141); + this.ppCmbxNumColumns.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxNumColumns.Name = "ppCmbxNumColumns"; + this.ppCmbxNumColumns.Size = new System.Drawing.Size(92, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxNumColumns, new DevComponents.DotNetBar.SuperTooltipInfo("Columns", "", "This is used only for procedure step editor sections.\r\n\r\nSelect the number of co" + + "lumns for this section", null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(175, 130))); + this.ppCmbxNumColumns.TabIndex = 6; + this.ppCmbxNumColumns.WatermarkText = "select columns"; + // + // ppCmbxSectPagination + // + this.ppCmbxSectPagination.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.sectionConfigBindingSource, "Section_Pagination", true)); + this.ppCmbxSectPagination.DisplayMember = "Text"; + this.ppCmbxSectPagination.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxSectPagination.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxSectPagination.FormattingEnabled = true; + this.ppCmbxSectPagination.Location = new System.Drawing.Point(74, 100); + this.ppCmbxSectPagination.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxSectPagination.Name = "ppCmbxSectPagination"; + this.ppCmbxSectPagination.Size = new System.Drawing.Size(131, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxSectPagination, new DevComponents.DotNetBar.SuperTooltipInfo("Section Pagination", "", resources.GetString("ppCmbxSectPagination.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.System, true, true, new System.Drawing.Size(300, 190))); + this.ppCmbxSectPagination.TabIndex = 50; + this.ppCmbxSectPagination.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxSectPagination.WatermarkText = "select section pagination"; + // + // ppCmbxStyleSectionType + // + this.ppCmbxStyleSectionType.DisplayMember = "Text"; + this.ppCmbxStyleSectionType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxStyleSectionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxStyleSectionType.FormattingEnabled = true; + this.ppCmbxStyleSectionType.Location = new System.Drawing.Point(86, 75); + this.ppCmbxStyleSectionType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxStyleSectionType.Name = "ppCmbxStyleSectionType"; + this.ppCmbxStyleSectionType.Size = new System.Drawing.Size(384, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxStyleSectionType, new DevComponents.DotNetBar.SuperTooltipInfo("Section Type", "", "This is a list of the possible section types as they are defined in the selected " + + "format.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCmbxStyleSectionType.TabIndex = 49; + this.ppCmbxStyleSectionType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxStyleSectionType.WatermarkText = "select section type"; + this.ppCmbxStyleSectionType.SelectedValueChanged += new System.EventHandler(this.ppCmbxStyleSectionType_SelectedValueChanged); + // + // ppBtnDefaultFmt + // + this.ppBtnDefaultFmt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultFmt.Location = new System.Drawing.Point(440, 18); + this.ppBtnDefaultFmt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultFmt.Name = "ppBtnDefaultFmt"; + this.ppBtnDefaultFmt.Size = new System.Drawing.Size(38, 19); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultFmt, new DevComponents.DotNetBar.SuperTooltipInfo("Default Button", "", "This will revert the format selection back to using the parent\'s format.\r\n\r\nCheck" + + " \"Show Default Settings\" to display the \"default\" format name (below the format " + + "selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppBtnDefaultFmt.TabIndex = 48; + this.ppBtnDefaultFmt.Text = "Default"; + this.ppBtnDefaultFmt.ThemeAware = true; + this.ppBtnDefaultFmt.Click += new System.EventHandler(this.ppBtnDefaultFmt_Click); + // + // ppCmbxFormat + // + this.ppCmbxFormat.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.sectionConfigBindingSource, "FormatSelection", true)); + this.ppCmbxFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxFormat.FormattingEnabled = true; + this.ppCmbxFormat.Location = new System.Drawing.Point(10, 18); + this.ppCmbxFormat.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxFormat.Name = "ppCmbxFormat"; + this.ppCmbxFormat.Size = new System.Drawing.Size(427, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxFormat, new DevComponents.DotNetBar.SuperTooltipInfo("Format Selection", "", resources.GetString("ppCmbxFormat.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCmbxFormat.TabIndex = 44; + this.ppCmbxFormat.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxFormat.WatermarkText = "select a format"; + this.ppCmbxFormat.SelectedIndexChanged += new System.EventHandler(this.ppCmbxFormat_SelectedIndexChanged); + // + // ppLblFormatDefault + // + this.ppLblFormatDefault.AutoSize = true; + this.ppLblFormatDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblFormatDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblFormatDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ppLblFormatDefault.Location = new System.Drawing.Point(10, 39); + this.ppLblFormatDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblFormatDefault.Name = "ppLblFormatDefault"; + this.ppLblFormatDefault.Size = new System.Drawing.Size(45, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblFormatDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Format setting", "", "Pressing the Default Button (to the right)\r\nwill set the format setting back to t" + + "his.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(260, 70))); + this.ppLblFormatDefault.TabIndex = 43; + this.ppLblFormatDefault.Text = "(default)"; + // + // ppCmbxCheckoffHeading + // + this.ppCmbxCheckoffHeading.DisplayMember = "Text"; + this.ppCmbxCheckoffHeading.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxCheckoffHeading.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxCheckoffHeading.FormattingEnabled = true; + this.ppCmbxCheckoffHeading.Location = new System.Drawing.Point(28, 76); + this.ppCmbxCheckoffHeading.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxCheckoffHeading.Name = "ppCmbxCheckoffHeading"; + this.ppCmbxCheckoffHeading.Size = new System.Drawing.Size(191, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxCheckoffHeading, new DevComponents.DotNetBar.SuperTooltipInfo("Signoff / Checkoff Heading", "", "Places a column heading for the signoff/checkoff.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCmbxCheckoffHeading.TabIndex = 7; + this.ppCmbxCheckoffHeading.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxCheckoffHeading.WatermarkText = "select checkoff / signoff heading"; + // + // ppCmbxCheckoffType + // + this.ppCmbxCheckoffType.DisplayMember = "Text"; + this.ppCmbxCheckoffType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxCheckoffType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxCheckoffType.FormattingEnabled = true; + this.ppCmbxCheckoffType.Location = new System.Drawing.Point(28, 29); + this.ppCmbxCheckoffType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxCheckoffType.Name = "ppCmbxCheckoffType"; + this.ppCmbxCheckoffType.Size = new System.Drawing.Size(191, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxCheckoffType, new DevComponents.DotNetBar.SuperTooltipInfo("Signoffs / Checkoffs Type", "", "This will automatically assign a signoff/checkoff as defined by the selected form" + + "at.\r\n\r\nThis is considered a default and it can be overridden in the step editor." + + "", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCmbxCheckoffType.TabIndex = 6; + this.ppCmbxCheckoffType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxCheckoffType.WatermarkText = "select checkoff / signoff"; + // + // label12 + // + this.label12.AutoSize = true; + this.label12.BackColor = System.Drawing.Color.Transparent; + this.label12.Location = new System.Drawing.Point(12, 58); + this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(47, 13); + this.label12.TabIndex = 4; + this.label12.Text = "Heading"; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.BackColor = System.Drawing.Color.Transparent; + this.label11.Location = new System.Drawing.Point(12, 11); + this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(31, 13); + this.label11.TabIndex = 2; + this.label11.Text = "Type"; + // + // label8 + // + this.label8.AutoSize = true; + this.label8.BackColor = System.Drawing.Color.Transparent; + this.label8.Location = new System.Drawing.Point(19, 170); + this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(51, 13); + this.label8.TabIndex = 36; + this.label8.Text = "Print Size"; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.BackColor = System.Drawing.Color.Transparent; + this.label7.Location = new System.Drawing.Point(14, 100); + this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(57, 13); + this.label7.TabIndex = 34; + this.label7.Text = "Pagination"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.BackColor = System.Drawing.Color.Transparent; + this.label6.Location = new System.Drawing.Point(14, 75); + this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(70, 13); + this.label6.TabIndex = 32; + this.label6.Text = "Section Type"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.BackColor = System.Drawing.Color.Transparent; + this.label5.Location = new System.Drawing.Point(23, 141); + this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(47, 13); + this.label5.TabIndex = 30; + this.label5.Text = "Columns"; + // + // label19 + // + this.label19.AutoSize = true; + this.label19.BackColor = System.Drawing.Color.Transparent; + this.label19.Location = new System.Drawing.Point(19, 1); + this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(39, 13); + this.label19.TabIndex = 28; + this.label19.Text = "Format"; + // + // ppBtnCvrtToLibDoc + // + this.ppBtnCvrtToLibDoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnCvrtToLibDoc.Location = new System.Drawing.Point(16, 210); + this.ppBtnCvrtToLibDoc.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnCvrtToLibDoc.Name = "ppBtnCvrtToLibDoc"; + this.ppBtnCvrtToLibDoc.Size = new System.Drawing.Size(209, 19); + this.superTooltip1.SetSuperTooltip(this.ppBtnCvrtToLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Convert To Library Document button", "", "This button will convert the current section to a library document, allowing it t" + + "o be shared with other procedures.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 76))); + this.ppBtnCvrtToLibDoc.TabIndex = 32; + this.ppBtnCvrtToLibDoc.Text = "Convert This Section To a Library Document"; + // + // ppCmbxLibDoc + // + this.ppCmbxLibDoc.DisplayMember = "Text"; + this.ppCmbxLibDoc.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxLibDoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxLibDoc.FormattingEnabled = true; + this.ppCmbxLibDoc.Location = new System.Drawing.Point(18, 24); + this.ppCmbxLibDoc.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxLibDoc.Name = "ppCmbxLibDoc"; + this.ppCmbxLibDoc.Size = new System.Drawing.Size(428, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Select Library Document", "", "This allows you to select a library document to reference for this section.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(200, 76))); + this.ppCmbxLibDoc.TabIndex = 30; + this.ppCmbxLibDoc.WatermarkText = "not using a library document"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.BackColor = System.Drawing.Color.Transparent; + this.label4.Location = new System.Drawing.Point(16, 8); + this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(90, 13); + this.label4.TabIndex = 31; + this.label4.Text = "Library Document"; + // + // ppCkLstApplicabilityDesinations + // + this.ppCkLstApplicabilityDesinations.FormattingEnabled = true; + this.ppCkLstApplicabilityDesinations.Items.AddRange(new object[] { "Unit One", "Unit Two", "Unit Three", "Unit Four"}); - this.ppCkLstApplicabilityDesinations.Location = new System.Drawing.Point(27, 54); - this.ppCkLstApplicabilityDesinations.Name = "ppCkLstApplicabilityDesinations"; - this.ppCkLstApplicabilityDesinations.Size = new System.Drawing.Size(266, 89); - this.ppCkLstApplicabilityDesinations.TabIndex = 35; - // - // ppCbProcView - // - this.ppCbProcView.AutoSize = true; - this.ppCbProcView.BackColor = System.Drawing.Color.Transparent; - this.ppCbProcView.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_LnkEnh", true)); - this.ppCbProcView.Location = new System.Drawing.Point(31, 195); - this.ppCbProcView.Name = "ppCbProcView"; - this.ppCbProcView.Size = new System.Drawing.Size(193, 21); - this.ppCbProcView.TabIndex = 36; - this.ppCbProcView.Text = "Include in Procedure View"; - this.ppCbProcView.UseVisualStyleBackColor = false; - // - // label9 - // - this.label9.AutoSize = true; - this.label9.BackColor = System.Drawing.Color.Transparent; - this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label9.Location = new System.Drawing.Point(27, 30); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(164, 17); - this.label9.TabIndex = 34; - this.label9.Text = "Applicability Destinations"; - // - // ppCbDeviationView - // - this.ppCbDeviationView.AutoSize = true; - this.ppCbDeviationView.BackColor = System.Drawing.Color.Transparent; - this.ppCbDeviationView.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_LnkEnh", true)); - this.ppCbDeviationView.Location = new System.Drawing.Point(31, 249); - this.ppCbDeviationView.Name = "ppCbDeviationView"; - this.ppCbDeviationView.Size = new System.Drawing.Size(186, 21); - this.ppCbDeviationView.TabIndex = 33; - this.ppCbDeviationView.Text = "Include in Deviation View"; - this.ppCbDeviationView.UseVisualStyleBackColor = false; - // - // ppCbBackView - // - this.ppCbBackView.AutoSize = true; - this.ppCbBackView.BackColor = System.Drawing.Color.Transparent; - this.ppCbBackView.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_LnkEnh", true)); - this.ppCbBackView.Location = new System.Drawing.Point(31, 222); - this.ppCbBackView.Name = "ppCbBackView"; - this.ppCbBackView.Size = new System.Drawing.Size(203, 21); - this.ppCbBackView.TabIndex = 32; - this.ppCbBackView.Text = "Include in Background View"; - this.ppCbBackView.UseVisualStyleBackColor = false; - // - // ppBtnCancel - // - this.ppBtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.ppBtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.ppBtnCancel.Location = new System.Drawing.Point(768, 353); - this.ppBtnCancel.Name = "ppBtnCancel"; - this.ppBtnCancel.Size = new System.Drawing.Size(75, 26); - this.ppBtnCancel.TabIndex = 24; - this.ppBtnCancel.Text = "Cancel"; - this.ppBtnCancel.UseVisualStyleBackColor = true; - this.ppBtnCancel.Click += new System.EventHandler(this.btnFldrPropCancel_Click); - // - // ppBtnOK - // - this.ppBtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.ppBtnOK.Location = new System.Drawing.Point(671, 353); - this.ppBtnOK.Name = "ppBtnOK"; - this.ppBtnOK.Size = new System.Drawing.Size(75, 26); - this.ppBtnOK.TabIndex = 23; - this.ppBtnOK.Text = "OK"; - this.ppBtnOK.UseVisualStyleBackColor = true; - this.ppBtnOK.Click += new System.EventHandler(this.btnFlderPropOK_Click); - // - // ppLblDefSettingsInfo - // - this.ppLblDefSettingsInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.ppLblDefSettingsInfo.AutoSize = true; - this.ppLblDefSettingsInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblDefSettingsInfo.Location = new System.Drawing.Point(11, 346); - this.ppLblDefSettingsInfo.Name = "ppLblDefSettingsInfo"; - this.ppLblDefSettingsInfo.Size = new System.Drawing.Size(205, 17); - this.ppLblDefSettingsInfo.TabIndex = 25; - this.ppLblDefSettingsInfo.Text = "* Default values shown in italics"; - // - // ppCbShwDefSettings - // - this.ppCbShwDefSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.ppCbShwDefSettings.Location = new System.Drawing.Point(12, 366); - this.ppCbShwDefSettings.Name = "ppCbShwDefSettings"; - this.ppCbShwDefSettings.Size = new System.Drawing.Size(152, 23); - this.superTooltip1.SetSuperTooltip(this.ppCbShwDefSettings, new DevComponents.DotNetBar.SuperTooltipInfo("Show Default Settings", "", "When checked, the default (parent\'s) setting will appear below the overridden sel" + - "ection.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCbShwDefSettings.TabIndex = 27; - this.ppCbShwDefSettings.Text = "Show Default Settings"; - this.ppCbShwDefSettings.CheckedChanged += new System.EventHandler(this.tabpage_Enter); - // - // checkBox1 - // - this.checkBox1.AutoSize = true; - this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_TOC", true)); - this.checkBox1.Location = new System.Drawing.Point(13, 272); - this.checkBox1.Name = "checkBox1"; - this.checkBox1.Size = new System.Drawing.Size(214, 21); - this.checkBox1.TabIndex = 22; - this.checkBox1.Text = "Include on Table Of Contents"; - this.checkBox1.UseVisualStyleBackColor = true; - // - // textBox1 - // - this.textBox1.AcceptsReturn = true; - this.textBox1.Location = new System.Drawing.Point(113, 218); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(154, 22); - this.textBox1.TabIndex = 12; - // - // label10 - // - this.label10.AutoSize = true; - this.label10.Location = new System.Drawing.Point(52, 221); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(55, 17); - this.label10.TabIndex = 11; - this.label10.Text = "User ID"; - // - // textBox2 - // - this.textBox2.Location = new System.Drawing.Point(113, 172); - this.textBox2.Name = "textBox2"; - this.textBox2.Size = new System.Drawing.Size(202, 22); - this.textBox2.TabIndex = 5; - // - // label13 - // - this.label13.AutoSize = true; - this.label13.Location = new System.Drawing.Point(15, 172); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(92, 17); - this.label13.TabIndex = 4; - this.label13.Text = "Last Modified"; - // - // richTextBox1 - // - this.richTextBox1.AcceptsTab = true; - this.richTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Title", true)); - this.richTextBox1.Location = new System.Drawing.Point(83, 81); - this.richTextBox1.Name = "richTextBox1"; - this.richTextBox1.Size = new System.Drawing.Size(541, 60); - this.richTextBox1.TabIndex = 3; - this.richTextBox1.Text = ""; - // - // richTextBox2 - // - this.richTextBox2.AcceptsTab = true; - this.richTextBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Number", true)); - this.richTextBox2.Location = new System.Drawing.Point(83, 30); - this.richTextBox2.Multiline = false; - this.richTextBox2.Name = "richTextBox2"; - this.richTextBox2.Size = new System.Drawing.Size(159, 22); - this.richTextBox2.TabIndex = 2; - this.richTextBox2.Text = ""; - // - // label14 - // - this.label14.AutoSize = true; - this.label14.Location = new System.Drawing.Point(42, 81); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(35, 17); - this.label14.TabIndex = 1; - this.label14.Text = "Title"; - // - // label15 - // - this.label15.AutoSize = true; - this.label15.Location = new System.Drawing.Point(19, 33); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(58, 17); - this.label15.TabIndex = 0; - this.label15.Text = "Number"; - // - // superTooltip1 - // - this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; - // - // panSectBtns - // - this.panSectBtns.BackColor = System.Drawing.Color.Transparent; - this.panSectBtns.Controls.Add(this.btnViewStngs); - this.panSectBtns.Controls.Add(this.btnLibDocs); - this.panSectBtns.Controls.Add(this.btnFormat); - this.panSectBtns.Controls.Add(this.btnGeneral); - this.panSectBtns.Location = new System.Drawing.Point(14, 10); - this.panSectBtns.Name = "panSectBtns"; - this.panSectBtns.Size = new System.Drawing.Size(192, 325); - this.panSectBtns.TabIndex = 28; - // - // btnViewStngs - // - this.btnViewStngs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnViewStngs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnViewStngs.Dock = System.Windows.Forms.DockStyle.Top; - this.btnViewStngs.Location = new System.Drawing.Point(0, 69); - this.btnViewStngs.Name = "btnViewStngs"; - this.btnViewStngs.Size = new System.Drawing.Size(192, 23); - this.btnViewStngs.TabIndex = 3; - this.btnViewStngs.Text = "View Settings"; - this.btnViewStngs.Visible = false; - this.btnViewStngs.Click += new System.EventHandler(this.btnViewStngs_Click); - // - // btnLibDocs - // - this.btnLibDocs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnLibDocs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnLibDocs.Dock = System.Windows.Forms.DockStyle.Top; - this.btnLibDocs.Location = new System.Drawing.Point(0, 46); - this.btnLibDocs.Name = "btnLibDocs"; - this.btnLibDocs.Size = new System.Drawing.Size(192, 23); - this.btnLibDocs.TabIndex = 2; - this.btnLibDocs.Text = "Library Documents"; - this.btnLibDocs.Click += new System.EventHandler(this.btnLibDocs_Click); - // - // btnFormat - // - this.btnFormat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnFormat.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnFormat.Dock = System.Windows.Forms.DockStyle.Top; - this.btnFormat.Location = new System.Drawing.Point(0, 23); - this.btnFormat.Name = "btnFormat"; - this.btnFormat.Size = new System.Drawing.Size(192, 23); - this.btnFormat.TabIndex = 1; - this.btnFormat.Text = "Format"; - this.btnFormat.Click += new System.EventHandler(this.btnFormat_Click); - // - // btnGeneral - // - this.btnGeneral.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnGeneral.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnGeneral.Dock = System.Windows.Forms.DockStyle.Top; - this.btnGeneral.Location = new System.Drawing.Point(0, 0); - this.btnGeneral.Name = "btnGeneral"; - this.btnGeneral.Size = new System.Drawing.Size(192, 23); - this.btnGeneral.TabIndex = 0; - this.btnGeneral.Text = "General"; - this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click); - // - // tcSectionProp - // - this.tcSectionProp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.tcSectionProp.BackColor = System.Drawing.Color.Transparent; - this.tcSectionProp.CanReorderTabs = true; - this.tcSectionProp.Controls.Add(this.tabControlPanel2); - this.tcSectionProp.Controls.Add(this.tabControlPanel3); - this.tcSectionProp.Controls.Add(this.tabControlPanel1); - this.tcSectionProp.Controls.Add(this.tabControlPanel4); - this.tcSectionProp.Location = new System.Drawing.Point(216, 10); - this.tcSectionProp.Name = "tcSectionProp"; - this.tcSectionProp.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold); - this.tcSectionProp.SelectedTabIndex = 0; - this.tcSectionProp.Size = new System.Drawing.Size(648, 325); - this.tcSectionProp.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Dock; - this.tcSectionProp.TabIndex = 29; - this.tcSectionProp.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; - this.tcSectionProp.Tabs.Add(this.tiGeneral); - this.tcSectionProp.Tabs.Add(this.tiFormat); - this.tcSectionProp.Tabs.Add(this.tiLibDoc); - this.tcSectionProp.TabsVisible = false; - this.tcSectionProp.Text = "tabControl2"; - // - // tabControlPanel1 - // - this.tabControlPanel1.Controls.Add(this.ppDtTmLastMod); - this.tabControlPanel1.Controls.Add(this.label1); - this.tabControlPanel1.Controls.Add(this.ppCbPrnSecNumTitle); - this.tabControlPanel1.Controls.Add(this.label2); - this.tabControlPanel1.Controls.Add(this.ppCbIncTOC); - this.tabControlPanel1.Controls.Add(this.ppRTxtNumber); - this.tabControlPanel1.Controls.Add(this.ppTxtBxUserID); - this.tabControlPanel1.Controls.Add(this.ppRTxtTitle); - this.tabControlPanel1.Controls.Add(this.label21); - this.tabControlPanel1.Controls.Add(this.label3); - this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel1.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel1.Name = "tabControlPanel1"; - this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel1.Size = new System.Drawing.Size(648, 301); - this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))); - this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227))))); - this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199))))); - this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) - | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel1.Style.GradientAngle = 90; - this.tabControlPanel1.TabIndex = 1; - this.tabControlPanel1.TabItem = this.tiGeneral; - // - // tiGeneral - // - this.tiGeneral.AttachedControl = this.tabControlPanel1; - this.tiGeneral.Name = "tiGeneral"; - this.tiGeneral.Text = "General"; - // - // tabControlPanel2 - // - this.tabControlPanel2.Controls.Add(this.ppGpbxSignoffCheckoff); - this.tabControlPanel2.Controls.Add(this.ppCmbxAccPgPrintSize); - this.tabControlPanel2.Controls.Add(this.label19); - this.tabControlPanel2.Controls.Add(this.ppCmbxNumColumns); - this.tabControlPanel2.Controls.Add(this.label5); - this.tabControlPanel2.Controls.Add(this.ppCmbxSectPagination); - this.tabControlPanel2.Controls.Add(this.label6); - this.tabControlPanel2.Controls.Add(this.ppCmbxStyleSectionType); - this.tabControlPanel2.Controls.Add(this.label7); - this.tabControlPanel2.Controls.Add(this.ppBtnDefaultFmt); - this.tabControlPanel2.Controls.Add(this.label8); - this.tabControlPanel2.Controls.Add(this.ppCmbxFormat); - this.tabControlPanel2.Controls.Add(this.ppLblFormatDefault); - this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel2.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel2.Name = "tabControlPanel2"; - this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel2.Size = new System.Drawing.Size(648, 301); - 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.tiFormat; - this.tabControlPanel2.Enter += new System.EventHandler(this.tabpage_Enter); - // - // ppGpbxSignoffCheckoff - // - this.ppGpbxSignoffCheckoff.BackColor = System.Drawing.Color.Transparent; - this.ppGpbxSignoffCheckoff.CanvasColor = System.Drawing.SystemColors.Control; - this.ppGpbxSignoffCheckoff.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.ppGpbxSignoffCheckoff.Controls.Add(this.ppCmbxCheckoffHeading); - this.ppGpbxSignoffCheckoff.Controls.Add(this.label11); - this.ppGpbxSignoffCheckoff.Controls.Add(this.ppCmbxCheckoffType); - this.ppGpbxSignoffCheckoff.Controls.Add(this.label12); - this.ppGpbxSignoffCheckoff.Location = new System.Drawing.Point(315, 123); - this.ppGpbxSignoffCheckoff.Name = "ppGpbxSignoffCheckoff"; - this.ppGpbxSignoffCheckoff.Size = new System.Drawing.Size(312, 161); - // - // - // - this.ppGpbxSignoffCheckoff.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.ppGpbxSignoffCheckoff.Style.BackColorGradientAngle = 90; - this.ppGpbxSignoffCheckoff.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.ppGpbxSignoffCheckoff.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxSignoffCheckoff.Style.BorderBottomWidth = 1; - this.ppGpbxSignoffCheckoff.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.ppGpbxSignoffCheckoff.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxSignoffCheckoff.Style.BorderLeftWidth = 1; - this.ppGpbxSignoffCheckoff.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxSignoffCheckoff.Style.BorderRightWidth = 1; - this.ppGpbxSignoffCheckoff.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxSignoffCheckoff.Style.BorderTopWidth = 1; - this.ppGpbxSignoffCheckoff.Style.CornerDiameter = 4; - this.ppGpbxSignoffCheckoff.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.ppGpbxSignoffCheckoff.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.ppGpbxSignoffCheckoff.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.ppGpbxSignoffCheckoff.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - this.ppGpbxSignoffCheckoff.TabIndex = 51; - this.ppGpbxSignoffCheckoff.Text = "Signoffs / Checkoffs"; - // - // tiFormat - // - this.tiFormat.AttachedControl = this.tabControlPanel2; - this.tiFormat.Name = "tiFormat"; - this.tiFormat.Text = "Format"; - // - // tabControlPanel3 - // - this.tabControlPanel3.Controls.Add(this.ppBtnCvrtToLibDoc); - this.tabControlPanel3.Controls.Add(this.label4); - this.tabControlPanel3.Controls.Add(this.ppCmbxLibDoc); - this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel3.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel3.Name = "tabControlPanel3"; - this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel3.Size = new System.Drawing.Size(648, 301); - this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))); - this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227))))); - this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199))))); - this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) - | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel3.Style.GradientAngle = 90; - this.tabControlPanel3.TabIndex = 3; - this.tabControlPanel3.TabItem = this.tiLibDoc; - // - // tiLibDoc - // - this.tiLibDoc.AttachedControl = this.tabControlPanel3; - this.tiLibDoc.Name = "tiLibDoc"; - this.tiLibDoc.Text = "Library Document"; - // - // tabControlPanel4 - // - this.tabControlPanel4.Controls.Add(this.ppCkLstApplicabilityDesinations); - this.tabControlPanel4.Controls.Add(this.label9); - this.tabControlPanel4.Controls.Add(this.ppCbProcView); - this.tabControlPanel4.Controls.Add(this.ppCbBackView); - this.tabControlPanel4.Controls.Add(this.ppCbDeviationView); - this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel4.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel4.Name = "tabControlPanel4"; - this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel4.Size = new System.Drawing.Size(648, 301); - 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.tabControlPanel4.TabIndex = 4; - this.tabControlPanel4.TabItem = this.tiViewStnns; - // - // tiViewStnns - // - this.tiViewStnns.AttachedControl = this.tabControlPanel4; - this.tiViewStnns.Name = "tiViewStnns"; - this.tiViewStnns.Text = "View Settings"; - // - // frmSectionProperties - // - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CaptionFont = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ClientSize = new System.Drawing.Size(873, 391); - this.Controls.Add(this.tcSectionProp); - this.Controls.Add(this.panSectBtns); - this.Controls.Add(this.ppCbShwDefSettings); - this.Controls.Add(this.ppLblDefSettingsInfo); - this.Controls.Add(this.ppBtnCancel); - this.Controls.Add(this.ppBtnOK); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Name = "frmSectionProperties"; - this.ShowIcon = false; - this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "Section Properties"; - this.Load += new System.EventHandler(this.frmSectionProperties_Load); - ((System.ComponentModel.ISupportInitialize)(this.sectionConfigBindingSource)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.formatInfoListBindingSource)).EndInit(); - this.panSectBtns.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.tcSectionProp)).EndInit(); - this.tcSectionProp.ResumeLayout(false); - this.tabControlPanel1.ResumeLayout(false); - this.tabControlPanel1.PerformLayout(); - this.tabControlPanel2.ResumeLayout(false); - this.tabControlPanel2.PerformLayout(); - this.ppGpbxSignoffCheckoff.ResumeLayout(false); - this.ppGpbxSignoffCheckoff.PerformLayout(); - this.tabControlPanel3.ResumeLayout(false); - this.tabControlPanel3.PerformLayout(); - this.tabControlPanel4.ResumeLayout(false); - this.tabControlPanel4.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); + this.ppCkLstApplicabilityDesinations.Location = new System.Drawing.Point(20, 44); + this.ppCkLstApplicabilityDesinations.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCkLstApplicabilityDesinations.Name = "ppCkLstApplicabilityDesinations"; + this.ppCkLstApplicabilityDesinations.Size = new System.Drawing.Size(200, 49); + this.ppCkLstApplicabilityDesinations.TabIndex = 35; + // + // ppCbProcView + // + this.ppCbProcView.AutoSize = true; + this.ppCbProcView.BackColor = System.Drawing.Color.Transparent; + this.ppCbProcView.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_LnkEnh", true)); + this.ppCbProcView.Location = new System.Drawing.Point(23, 158); + this.ppCbProcView.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbProcView.Name = "ppCbProcView"; + this.ppCbProcView.Size = new System.Drawing.Size(150, 17); + this.ppCbProcView.TabIndex = 36; + this.ppCbProcView.Text = "Include in Procedure View"; + this.ppCbProcView.UseVisualStyleBackColor = false; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.BackColor = System.Drawing.Color.Transparent; + this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label9.Location = new System.Drawing.Point(20, 24); + this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(123, 13); + this.label9.TabIndex = 34; + this.label9.Text = "Applicability Destinations"; + // + // ppCbDeviationView + // + this.ppCbDeviationView.AutoSize = true; + this.ppCbDeviationView.BackColor = System.Drawing.Color.Transparent; + this.ppCbDeviationView.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_LnkEnh", true)); + this.ppCbDeviationView.Location = new System.Drawing.Point(23, 202); + this.ppCbDeviationView.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbDeviationView.Name = "ppCbDeviationView"; + this.ppCbDeviationView.Size = new System.Drawing.Size(146, 17); + this.ppCbDeviationView.TabIndex = 33; + this.ppCbDeviationView.Text = "Include in Deviation View"; + this.ppCbDeviationView.UseVisualStyleBackColor = false; + // + // ppCbBackView + // + this.ppCbBackView.AutoSize = true; + this.ppCbBackView.BackColor = System.Drawing.Color.Transparent; + this.ppCbBackView.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_LnkEnh", true)); + this.ppCbBackView.Location = new System.Drawing.Point(23, 180); + this.ppCbBackView.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbBackView.Name = "ppCbBackView"; + this.ppCbBackView.Size = new System.Drawing.Size(159, 17); + this.ppCbBackView.TabIndex = 32; + this.ppCbBackView.Text = "Include in Background View"; + this.ppCbBackView.UseVisualStyleBackColor = false; + // + // ppBtnCancel + // + this.ppBtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.ppBtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.ppBtnCancel.Location = new System.Drawing.Point(576, 287); + this.ppBtnCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnCancel.Name = "ppBtnCancel"; + this.ppBtnCancel.Size = new System.Drawing.Size(56, 21); + this.ppBtnCancel.TabIndex = 24; + this.ppBtnCancel.Text = "Cancel"; + this.ppBtnCancel.UseVisualStyleBackColor = true; + this.ppBtnCancel.Click += new System.EventHandler(this.btnSectPropCancel_Click); + // + // ppBtnOK + // + this.ppBtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.ppBtnOK.Location = new System.Drawing.Point(503, 287); + this.ppBtnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnOK.Name = "ppBtnOK"; + this.ppBtnOK.Size = new System.Drawing.Size(56, 21); + this.ppBtnOK.TabIndex = 23; + this.ppBtnOK.Text = "OK"; + this.ppBtnOK.UseVisualStyleBackColor = true; + this.ppBtnOK.Click += new System.EventHandler(this.btnSectPropOK_Click); + // + // ppLblDefSettingsInfo + // + this.ppLblDefSettingsInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.ppLblDefSettingsInfo.AutoSize = true; + this.ppLblDefSettingsInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblDefSettingsInfo.Location = new System.Drawing.Point(8, 281); + this.ppLblDefSettingsInfo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblDefSettingsInfo.Name = "ppLblDefSettingsInfo"; + this.ppLblDefSettingsInfo.Size = new System.Drawing.Size(156, 13); + this.ppLblDefSettingsInfo.TabIndex = 25; + this.ppLblDefSettingsInfo.Text = "* Default values shown in italics"; + // + // ppCbShwDefSettings + // + this.ppCbShwDefSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.ppCbShwDefSettings.Location = new System.Drawing.Point(9, 297); + this.ppCbShwDefSettings.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbShwDefSettings.Name = "ppCbShwDefSettings"; + this.ppCbShwDefSettings.Size = new System.Drawing.Size(145, 19); + this.superTooltip1.SetSuperTooltip(this.ppCbShwDefSettings, new DevComponents.DotNetBar.SuperTooltipInfo("Show Default Settings", "", "When checked, the default (parent\'s) setting will appear below the overridden sel" + + "ection.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCbShwDefSettings.TabIndex = 27; + this.ppCbShwDefSettings.Text = "Show Default Settings"; + this.ppCbShwDefSettings.CheckedChanged += new System.EventHandler(this.tabpage_Enter); + // + // checkBox1 + // + this.checkBox1.AutoSize = true; + this.checkBox1.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.sectionConfigBindingSource, "Section_TOC", true)); + this.checkBox1.Location = new System.Drawing.Point(13, 272); + this.checkBox1.Name = "checkBox1"; + this.checkBox1.Size = new System.Drawing.Size(214, 21); + this.checkBox1.TabIndex = 22; + this.checkBox1.Text = "Include on Table Of Contents"; + this.checkBox1.UseVisualStyleBackColor = true; + // + // textBox1 + // + this.textBox1.AcceptsReturn = true; + this.textBox1.Location = new System.Drawing.Point(113, 218); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(154, 20); + this.textBox1.TabIndex = 12; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.Location = new System.Drawing.Point(52, 221); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(55, 17); + this.label10.TabIndex = 11; + this.label10.Text = "User ID"; + // + // textBox2 + // + this.textBox2.Location = new System.Drawing.Point(113, 172); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(202, 20); + this.textBox2.TabIndex = 5; + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Location = new System.Drawing.Point(15, 172); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(92, 17); + this.label13.TabIndex = 4; + this.label13.Text = "Last Modified"; + // + // richTextBox1 + // + this.richTextBox1.AcceptsTab = true; + this.richTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Title", true)); + this.richTextBox1.Location = new System.Drawing.Point(83, 81); + this.richTextBox1.Name = "richTextBox1"; + this.richTextBox1.Size = new System.Drawing.Size(541, 60); + this.richTextBox1.TabIndex = 3; + this.richTextBox1.Text = ""; + // + // richTextBox2 + // + this.richTextBox2.AcceptsTab = true; + this.richTextBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.sectionConfigBindingSource, "Number", true)); + this.richTextBox2.Location = new System.Drawing.Point(83, 30); + this.richTextBox2.Multiline = false; + this.richTextBox2.Name = "richTextBox2"; + this.richTextBox2.Size = new System.Drawing.Size(159, 22); + this.richTextBox2.TabIndex = 2; + this.richTextBox2.Text = ""; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(42, 81); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(35, 17); + this.label14.TabIndex = 1; + this.label14.Text = "Title"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Location = new System.Drawing.Point(19, 33); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(58, 17); + this.label15.TabIndex = 0; + this.label15.Text = "Number"; + // + // superTooltip1 + // + this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; + // + // panSectBtns + // + this.panSectBtns.BackColor = System.Drawing.Color.Transparent; + this.panSectBtns.Controls.Add(this.btnViewStngs); + this.panSectBtns.Controls.Add(this.btnLibDocs); + this.panSectBtns.Controls.Add(this.btnFormat); + this.panSectBtns.Controls.Add(this.btnGeneral); + this.panSectBtns.Location = new System.Drawing.Point(10, 8); + this.panSectBtns.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.panSectBtns.Name = "panSectBtns"; + this.panSectBtns.Size = new System.Drawing.Size(144, 264); + this.panSectBtns.TabIndex = 28; + // + // btnViewStngs + // + this.btnViewStngs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnViewStngs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnViewStngs.Dock = System.Windows.Forms.DockStyle.Top; + this.btnViewStngs.Location = new System.Drawing.Point(0, 57); + this.btnViewStngs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnViewStngs.Name = "btnViewStngs"; + this.btnViewStngs.Size = new System.Drawing.Size(144, 19); + this.btnViewStngs.TabIndex = 3; + this.btnViewStngs.Text = "View Settings"; + this.btnViewStngs.Visible = false; + this.btnViewStngs.Click += new System.EventHandler(this.btnViewStngs_Click); + // + // btnLibDocs + // + this.btnLibDocs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnLibDocs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnLibDocs.Dock = System.Windows.Forms.DockStyle.Top; + this.btnLibDocs.Location = new System.Drawing.Point(0, 38); + this.btnLibDocs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnLibDocs.Name = "btnLibDocs"; + this.btnLibDocs.Size = new System.Drawing.Size(144, 19); + this.btnLibDocs.TabIndex = 2; + this.btnLibDocs.Text = "Library Documents"; + this.btnLibDocs.Click += new System.EventHandler(this.btnLibDocs_Click); + // + // btnFormat + // + this.btnFormat.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnFormat.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnFormat.Dock = System.Windows.Forms.DockStyle.Top; + this.btnFormat.Location = new System.Drawing.Point(0, 19); + this.btnFormat.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnFormat.Name = "btnFormat"; + this.btnFormat.Size = new System.Drawing.Size(144, 19); + this.btnFormat.TabIndex = 1; + this.btnFormat.Text = "Format"; + this.btnFormat.Click += new System.EventHandler(this.btnFormat_Click); + // + // btnGeneral + // + this.btnGeneral.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnGeneral.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnGeneral.Dock = System.Windows.Forms.DockStyle.Top; + this.btnGeneral.Location = new System.Drawing.Point(0, 0); + this.btnGeneral.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnGeneral.Name = "btnGeneral"; + this.btnGeneral.Size = new System.Drawing.Size(144, 19); + this.btnGeneral.TabIndex = 0; + this.btnGeneral.Text = "General"; + this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click); + // + // tcSectionProp + // + this.tcSectionProp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.tcSectionProp.BackColor = System.Drawing.Color.Transparent; + this.tcSectionProp.CanReorderTabs = true; + this.tcSectionProp.Controls.Add(this.tabControlPanel1); + this.tcSectionProp.Controls.Add(this.tabControlPanel2); + this.tcSectionProp.Controls.Add(this.tabControlPanel3); + this.tcSectionProp.Controls.Add(this.tabControlPanel4); + this.tcSectionProp.Location = new System.Drawing.Point(162, 8); + this.tcSectionProp.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tcSectionProp.Name = "tcSectionProp"; + this.tcSectionProp.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold); + this.tcSectionProp.SelectedTabIndex = 0; + this.tcSectionProp.Size = new System.Drawing.Size(486, 264); + this.tcSectionProp.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Dock; + this.tcSectionProp.TabIndex = 29; + this.tcSectionProp.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; + this.tcSectionProp.Tabs.Add(this.tiGeneral); + this.tcSectionProp.Tabs.Add(this.tiFormat); + this.tcSectionProp.Tabs.Add(this.tiLibDoc); + this.tcSectionProp.TabsVisible = false; + this.tcSectionProp.Text = "tabControl2"; + // + // tabControlPanel2 + // + this.tabControlPanel2.Controls.Add(this.cbIsStepSection); + this.tabControlPanel2.Controls.Add(this.ppGpbxSignoffCheckoff); + this.tabControlPanel2.Controls.Add(this.ppCmbxAccPgPrintSize); + this.tabControlPanel2.Controls.Add(this.label19); + this.tabControlPanel2.Controls.Add(this.ppCmbxNumColumns); + this.tabControlPanel2.Controls.Add(this.label5); + this.tabControlPanel2.Controls.Add(this.ppCmbxSectPagination); + this.tabControlPanel2.Controls.Add(this.label6); + this.tabControlPanel2.Controls.Add(this.ppCmbxStyleSectionType); + this.tabControlPanel2.Controls.Add(this.label7); + this.tabControlPanel2.Controls.Add(this.ppBtnDefaultFmt); + this.tabControlPanel2.Controls.Add(this.label8); + this.tabControlPanel2.Controls.Add(this.ppCmbxFormat); + this.tabControlPanel2.Controls.Add(this.ppLblFormatDefault); + this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel2.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel2.Name = "tabControlPanel2"; + this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel2.Size = new System.Drawing.Size(486, 242); + this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + 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.tiFormat; + this.tabControlPanel2.Enter += new System.EventHandler(this.tabpage_Enter); + // + // cbIsStepSection + // + this.cbIsStepSection.AutoSize = true; + this.cbIsStepSection.Location = new System.Drawing.Point(86, 47); + this.cbIsStepSection.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.cbIsStepSection.Name = "cbIsStepSection"; + this.cbIsStepSection.Size = new System.Drawing.Size(98, 17); + this.cbIsStepSection.TabIndex = 52; + this.cbIsStepSection.Text = "Is Step Section"; + this.cbIsStepSection.UseVisualStyleBackColor = true; + this.cbIsStepSection.CheckedChanged += new System.EventHandler(this.cbIsStepSection_CheckedChanged); + // + // ppGpbxSignoffCheckoff + // + this.ppGpbxSignoffCheckoff.BackColor = System.Drawing.Color.Transparent; + this.ppGpbxSignoffCheckoff.CanvasColor = System.Drawing.SystemColors.Control; + this.ppGpbxSignoffCheckoff.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.ppGpbxSignoffCheckoff.Controls.Add(this.ppCmbxCheckoffHeading); + this.ppGpbxSignoffCheckoff.Controls.Add(this.label11); + this.ppGpbxSignoffCheckoff.Controls.Add(this.ppCmbxCheckoffType); + this.ppGpbxSignoffCheckoff.Controls.Add(this.label12); + this.ppGpbxSignoffCheckoff.Location = new System.Drawing.Point(236, 100); + this.ppGpbxSignoffCheckoff.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGpbxSignoffCheckoff.Name = "ppGpbxSignoffCheckoff"; + this.ppGpbxSignoffCheckoff.Size = new System.Drawing.Size(234, 131); + // + // + // + this.ppGpbxSignoffCheckoff.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.ppGpbxSignoffCheckoff.Style.BackColorGradientAngle = 90; + this.ppGpbxSignoffCheckoff.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.ppGpbxSignoffCheckoff.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxSignoffCheckoff.Style.BorderBottomWidth = 1; + this.ppGpbxSignoffCheckoff.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.ppGpbxSignoffCheckoff.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxSignoffCheckoff.Style.BorderLeftWidth = 1; + this.ppGpbxSignoffCheckoff.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxSignoffCheckoff.Style.BorderRightWidth = 1; + this.ppGpbxSignoffCheckoff.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxSignoffCheckoff.Style.BorderTopWidth = 1; + this.ppGpbxSignoffCheckoff.Style.CornerDiameter = 4; + this.ppGpbxSignoffCheckoff.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.ppGpbxSignoffCheckoff.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.ppGpbxSignoffCheckoff.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.ppGpbxSignoffCheckoff.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + this.ppGpbxSignoffCheckoff.TabIndex = 51; + this.ppGpbxSignoffCheckoff.Text = "Signoffs / Checkoffs"; + // + // tiFormat + // + this.tiFormat.AttachedControl = this.tabControlPanel2; + this.tiFormat.Name = "tiFormat"; + this.tiFormat.Text = "Format"; + // + // tabControlPanel1 + // + this.tabControlPanel1.Controls.Add(this.ppDtTmLastMod); + this.tabControlPanel1.Controls.Add(this.label1); + this.tabControlPanel1.Controls.Add(this.ppCbPrnSecNumTitle); + this.tabControlPanel1.Controls.Add(this.label2); + this.tabControlPanel1.Controls.Add(this.ppCbIncTOC); + this.tabControlPanel1.Controls.Add(this.ppRTxtNumber); + this.tabControlPanel1.Controls.Add(this.ppTxtBxUserID); + this.tabControlPanel1.Controls.Add(this.ppRTxtTitle); + this.tabControlPanel1.Controls.Add(this.label21); + this.tabControlPanel1.Controls.Add(this.label3); + this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel1.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel1.Name = "tabControlPanel1"; + this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel1.Size = new System.Drawing.Size(486, 242); + this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + | DevComponents.DotNetBar.eBorderSide.Bottom))); + this.tabControlPanel1.Style.GradientAngle = 90; + this.tabControlPanel1.TabIndex = 1; + this.tabControlPanel1.TabItem = this.tiGeneral; + // + // tiGeneral + // + this.tiGeneral.AttachedControl = this.tabControlPanel1; + this.tiGeneral.Name = "tiGeneral"; + this.tiGeneral.Text = "General"; + // + // tabControlPanel3 + // + this.tabControlPanel3.Controls.Add(this.ppBtnCvrtToLibDoc); + this.tabControlPanel3.Controls.Add(this.label4); + this.tabControlPanel3.Controls.Add(this.ppCmbxLibDoc); + this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel3.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel3.Name = "tabControlPanel3"; + this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel3.Size = new System.Drawing.Size(486, 242); + this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + | DevComponents.DotNetBar.eBorderSide.Bottom))); + this.tabControlPanel3.Style.GradientAngle = 90; + this.tabControlPanel3.TabIndex = 3; + this.tabControlPanel3.TabItem = this.tiLibDoc; + // + // tiLibDoc + // + this.tiLibDoc.AttachedControl = this.tabControlPanel3; + this.tiLibDoc.Name = "tiLibDoc"; + this.tiLibDoc.Text = "Library Document"; + // + // tabControlPanel4 + // + this.tabControlPanel4.Controls.Add(this.ppCkLstApplicabilityDesinations); + this.tabControlPanel4.Controls.Add(this.label9); + this.tabControlPanel4.Controls.Add(this.ppCbProcView); + this.tabControlPanel4.Controls.Add(this.ppCbBackView); + this.tabControlPanel4.Controls.Add(this.ppCbDeviationView); + this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel4.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel4.Name = "tabControlPanel4"; + this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel4.Size = new System.Drawing.Size(486, 242); + this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + 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.tabControlPanel4.TabIndex = 4; + this.tabControlPanel4.TabItem = this.tiViewStnns; + // + // tiViewStnns + // + this.tiViewStnns.AttachedControl = this.tabControlPanel4; + this.tiViewStnns.Name = "tiViewStnns"; + this.tiViewStnns.Text = "View Settings"; + // + // frmSectionProperties + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.CaptionFont = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ClientSize = new System.Drawing.Size(655, 318); + this.Controls.Add(this.tcSectionProp); + this.Controls.Add(this.panSectBtns); + this.Controls.Add(this.ppCbShwDefSettings); + this.Controls.Add(this.ppLblDefSettingsInfo); + this.Controls.Add(this.ppBtnCancel); + this.Controls.Add(this.ppBtnOK); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.Name = "frmSectionProperties"; + this.ShowIcon = false; + this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Section Properties"; + this.Load += new System.EventHandler(this.frmSectionProperties_Load); + ((System.ComponentModel.ISupportInitialize)(this.sectionConfigBindingSource)).EndInit(); + this.panSectBtns.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.tcSectionProp)).EndInit(); + this.tcSectionProp.ResumeLayout(false); + this.tabControlPanel2.ResumeLayout(false); + this.tabControlPanel2.PerformLayout(); + this.ppGpbxSignoffCheckoff.ResumeLayout(false); + this.ppGpbxSignoffCheckoff.PerformLayout(); + this.tabControlPanel1.ResumeLayout(false); + this.tabControlPanel1.PerformLayout(); + this.tabControlPanel3.ResumeLayout(false); + this.tabControlPanel3.PerformLayout(); + this.tabControlPanel4.ResumeLayout(false); + this.tabControlPanel4.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -962,8 +1017,7 @@ namespace VEPROMS private System.Windows.Forms.Label label11; private System.Windows.Forms.CheckBox ppCbIncTOC; private System.Windows.Forms.BindingSource sectionConfigBindingSource; - private System.Windows.Forms.Label ppLblFormatDefault; - private System.Windows.Forms.BindingSource formatInfoListBindingSource; + private System.Windows.Forms.Label ppLblFormatDefault; private DevComponents.DotNetBar.Controls.ComboBoxEx ppCmbxFormat; private DevComponents.DotNetBar.ButtonX ppBtnDefaultFmt; private DevComponents.DotNetBar.Controls.ComboBoxEx ppCmbxStyleSectionType; @@ -1009,5 +1063,6 @@ namespace VEPROMS private DevComponents.DotNetBar.TabControlPanel tabControlPanel4; private DevComponents.DotNetBar.TabItem tiViewStnns; private DevComponents.DotNetBar.Controls.GroupPanel ppGpbxSignoffCheckoff; + private System.Windows.Forms.CheckBox cbIsStepSection; } } \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/frmSectionProperties.cs b/PROMS/VEPROMS User Interface/frmSectionProperties.cs index 3e7206cd..80da405f 100644 --- a/PROMS/VEPROMS User Interface/frmSectionProperties.cs +++ b/PROMS/VEPROMS User Interface/frmSectionProperties.cs @@ -26,9 +26,25 @@ namespace VEPROMS this.Text = string.Format("{0} {1} Properties", sectionConfig.Number, sectionConfig.Title); else this.Text = string.Format("{0} Properties", sectionConfig.Title); + + // set up some of the format tab: + ItemInfo ii = ItemInfo.Get(_SectionConfig.MySection.ItemID); + cbIsStepSection.Enabled = !(ii.HasWordContent || ii.HasStepContent); + // check type of section from document styles to determine if the stepsection checkbox should + // be checked. + int secindx = (int)sectionConfig.SectionType; + // find the index for the document style to determine whether this is a step or word section. + PlantFormat pf = _SectionConfig.MyDefaultFormat.PlantFormat; + for (int i = 0; i < pf.DocStyles.DocStyleList.Count; i++) + { + if (pf.DocStyles.DocStyleList[i].Index == secindx) + { + cbIsStepSection.Checked = pf.DocStyles.DocStyleList[i].IsStepSection; + } + } } - private void btnFlderPropOK_Click(object sender, EventArgs e) + private void btnSectPropOK_Click(object sender, EventArgs e) { sectionConfigBindingSource.EndEdit(); // Save Default settings for User @@ -40,9 +56,10 @@ namespace VEPROMS this.Close(); } - private void btnFldrPropCancel_Click(object sender, EventArgs e) + private void btnSectPropCancel_Click(object sender, EventArgs e) { sectionConfigBindingSource.CancelEdit(); + DialogResult = DialogResult.Cancel; this.Close(); } @@ -70,7 +87,11 @@ namespace VEPROMS _Initializing = true; sectionConfigBindingSource.DataSource = _SectionConfig; - formatInfoListBindingSource.DataSource = FormatInfoList.Get(); + //formatInfoListBindingSource.DataSource = FormatInfoList.Get(); + ppCmbxFormat.DataSource = null; + ppCmbxFormat.DisplayMember = "FullName"; + ppCmbxFormat.ValueMember = "FullName"; + ppCmbxFormat.DataSource = FormatInfoList.SortedFormatInfoList; // Get the saved settings for this user // @@ -128,6 +149,7 @@ namespace VEPROMS private void btnFormat_Click(object sender, EventArgs e) { ProcessButtonClick(tiFormat, btnFormat); + } /// @@ -144,6 +166,41 @@ namespace VEPROMS } ppBtnDefaultFmt.Visible = (ppCmbxFormat.SelectedValue != null); ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible; + SetupPpCmbxSectionType(); + } + + private void SetupPpCmbxSectionType() + { + bool myInit = _Initializing; + _Initializing = true; + PlantFormat pf = _SectionConfig.MyDefaultFormat.PlantFormat; + if (ppCmbxFormat.SelectedIndex >= 0) + pf = FormatInfoList.SortedFormatInfoList[ppCmbxFormat.SelectedIndex].PlantFormat; + ppCmbxStyleSectionType.DisplayMember = "Name"; + ppCmbxStyleSectionType.ValueMember = "Index"; + + // if this has been defined as a step section, only list step section document styles, if + // a word section, only list word section styles. If neither content types has been defined, + // list both. + DocStyleList locDocStyles = new DocStyleList(null); + ItemInfo ii = ItemInfo.Get(_SectionConfig.MySection.ItemID); + int selindx = -1; + for (int i = 0; i < pf.DocStyles.DocStyleList.Count; i++) + { + if (cbIsStepSection.Checked && pf.DocStyles.DocStyleList[i].IsStepSection) locDocStyles.Add(pf.DocStyles.DocStyleList[i]); + else if (!cbIsStepSection.Checked && !pf.DocStyles.DocStyleList[i].IsStepSection) locDocStyles.Add(pf.DocStyles.DocStyleList[i]); + + if (_SectionConfig.SectionType == pf.DocStyles.DocStyleList[i].Index) selindx = locDocStyles.Count - 1; + } + ppCmbxStyleSectionType.DataSource = locDocStyles; + ppCmbxStyleSectionType.SelectedIndex = selindx; + //if (_SectionConfig.SectionType < pf.DocStyles.DocStyleList.Count) + //{ + // //Volian.Controls.Library.vlnStackTrace.ShowStack("Before - SelectedValue {0} SectionType {1}", ppCmbxStyleSectionType.SelectedValue, _SectionConfig.SectionType); + // ppCmbxStyleSectionType.SelectedValue = (int)_SectionConfig.SectionType; + // //Volian.Controls.Library.vlnStackTrace.ShowStack("After - SelectedValue {0} SectionType {1}", ppCmbxStyleSectionType.SelectedValue, _SectionConfig.SectionType); + //} + _Initializing = myInit; } private void ppBtnDefaultFmt_Click(object sender, EventArgs e) @@ -233,5 +290,31 @@ namespace VEPROMS } #endregion + private void ppCmbxStyleSectionType_SelectedValueChanged(object sender, EventArgs e) + { + if (_Initializing) return; + if (ppCmbxStyleSectionType.SelectedValue != null) + _SectionConfig.SectionType = (int)(ppCmbxStyleSectionType.SelectedValue); + } + + private void ppCmbxFormat_SelectedIndexChanged(object sender, EventArgs e) + { + if (_Initializing) return; + 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; + SetupPpCmbxSectionType(); + } + + private void cbIsStepSection_CheckedChanged(object sender, EventArgs e) + { + if (_Initializing) return; + SetupPpCmbxSectionType(); + } + } } \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/frmSectionProperties.resx b/PROMS/VEPROMS User Interface/frmSectionProperties.resx index 3f0a8c19..f31cce76 100644 --- a/PROMS/VEPROMS User Interface/frmSectionProperties.resx +++ b/PROMS/VEPROMS User Interface/frmSectionProperties.resx @@ -118,10 +118,10 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - 385, 20 + 128, 18 - 845, 20 + 571, 19 Select how this section is handled during pagination. @@ -132,9 +132,6 @@ Separate - this section will always begin on a new page. Continous - this section will not begin on a new page if there is room on the current page. - - 613, 20 - Allows you to specify the format to use for this section. diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs index 10a30491..02e5f11a 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs @@ -31,9 +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.galleryGroup1 = new DevComponents.DotNetBar.GalleryGroup(); - this.galleryGroup2 = new DevComponents.DotNetBar.GalleryGroup(); - this.galleryGroup3 = new DevComponents.DotNetBar.GalleryGroup(); this.btnHelp = new DevComponents.DotNetBar.ButtonItem(); this.btnHelpManual = new DevComponents.DotNetBar.ButtonItem(); this.btnHelpAbout = new DevComponents.DotNetBar.ButtonItem(); @@ -45,8 +42,10 @@ namespace VEPROMS this.btnNew = new DevComponents.DotNetBar.ButtonItem(); this.btnOpen = new DevComponents.DotNetBar.ButtonItem(); this.btnSave = new DevComponents.DotNetBar.ButtonItem(); - this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem(); + this.btnSaveAs = new DevComponents.DotNetBar.ButtonItem(); this.btnPrint = new DevComponents.DotNetBar.ButtonItem(); + this.btnPrepare = new DevComponents.DotNetBar.ButtonItem(); + this.btnAdmin = new DevComponents.DotNetBar.ButtonItem(); this.btnClose = new DevComponents.DotNetBar.ButtonItem(); this.icRecentDocs = new DevComponents.DotNetBar.ItemContainer(); this.labelItem8 = new DevComponents.DotNetBar.LabelItem(); @@ -54,6 +53,9 @@ namespace VEPROMS this.btnOptions = new DevComponents.DotNetBar.ButtonItem(); this.btnExit = new DevComponents.DotNetBar.ButtonItem(); this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem(); + this.galleryGroup1 = new DevComponents.DotNetBar.GalleryGroup(); + this.galleryGroup2 = new DevComponents.DotNetBar.GalleryGroup(); + this.galleryGroup3 = new DevComponents.DotNetBar.GalleryGroup(); this.Common = new DevComponents.DotNetBar.GalleryGroup(); this.Math = new DevComponents.DotNetBar.GalleryGroup(); this.Misc = new DevComponents.DotNetBar.GalleryGroup(); @@ -90,6 +92,9 @@ 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(); @@ -104,56 +109,59 @@ 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.annotationSearch = new DevComponents.DotNetBar.TabControlPanel(); - this.navpaneResults = new DevComponents.DotNetBar.NavigationPane(); - this.navpanSrchRslts = new DevComponents.DotNetBar.NavigationPanePanel(); - this.CtrlAnnotationSearch = new Volian.Controls.Library.AnnotationSearch(); - 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.navigationPanePanel2 = new DevComponents.DotNetBar.NavigationPanePanel(); + this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter(); + this.expandableSplitter2 = new DevComponents.DotNetBar.ExpandableSplitter(); + this.expandableSplitter3 = new DevComponents.DotNetBar.ExpandableSplitter(); + this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); + this.btnSrchRslt = new DevComponents.DotNetBar.ButtonItem(); + this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); + this.tmrTreeView = new System.Windows.Forms.Timer(this.components); + this.tc = new Volian.Controls.Library.DisplayTabControl(); + this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem(); + this.itemAnnotationsBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.searchPanel = new DevComponents.DotNetBar.ExpandablePanel(); + this.searchTabControl = new DevComponents.DotNetBar.TabControl(); this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); - this.panelEx4 = new DevComponents.DotNetBar.PanelEx(); + this.panelEx3 = new DevComponents.DotNetBar.PanelEx(); this.lbxBookMarks = new System.Windows.Forms.ListBox(); this.btnClrBookMrks = new DevComponents.DotNetBar.ButtonX(); this.btnRmvCurBookMrk = new DevComponents.DotNetBar.ButtonX(); this.btnSetBookMrk = new DevComponents.DotNetBar.ButtonX(); this.infotabBookMarks = new DevComponents.DotNetBar.TabItem(this.components); - this.expandableSplitter1 = new DevComponents.DotNetBar.ExpandableSplitter(); - this.expandableSplitter2 = new DevComponents.DotNetBar.ExpandableSplitter(); - this.expandableSplitter3 = new DevComponents.DotNetBar.ExpandableSplitter(); - this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); - this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); - this.tmrTreeView = new System.Windows.Forms.Timer(this.components); - this.tc = new Volian.Controls.Library.DisplayTabControl(); - this.itemAnnotationsBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem(); + this.annotationSearch = new DevComponents.DotNetBar.TabControlPanel(); + this.navpaneResults = new DevComponents.DotNetBar.NavigationPane(); + this.navpanSrchRslts = new DevComponents.DotNetBar.NavigationPanePanel(); + this.CtrlAnnotationSearch = new Volian.Controls.Library.AnnotationSearch(); + this.navigationPanePanel3 = new DevComponents.DotNetBar.NavigationPanePanel(); + this.btnSimStpsRslt = new DevComponents.DotNetBar.ButtonItem(); + this.infotabResults = new DevComponents.DotNetBar.TabItem(this.components); ((System.ComponentModel.ISupportInitialize)(this.bottomBar)).BeginInit(); this.epAnnotations.SuspendLayout(); this.expandablePanel2.SuspendLayout(); 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(); + ((System.ComponentModel.ISupportInitialize)(this.itemAnnotationsBindingSource)).BeginInit(); + this.searchPanel.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.searchTabControl)).BeginInit(); + this.searchTabControl.SuspendLayout(); + this.tabControlPanel2.SuspendLayout(); + this.panelEx3.SuspendLayout(); this.annotationSearch.SuspendLayout(); this.navpaneResults.SuspendLayout(); this.navpanSrchRslts.SuspendLayout(); - this.infotabControlPanelRO.SuspendLayout(); - this.infotabControlPanelTransitions.SuspendLayout(); - this.tabControlPanel2.SuspendLayout(); - this.panelEx4.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.itemAnnotationsBindingSource)).BeginInit(); this.SuspendLayout(); // // ribbonControl1 @@ -170,33 +178,16 @@ namespace VEPROMS this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] { this.office2007StartButton1, this.qatCustomizeItem1}); - this.ribbonControl1.Size = new System.Drawing.Size(1114, 50); + this.ribbonControl1.Size = new System.Drawing.Size(816, 56); this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; this.ribbonControl1.TabGroupHeight = 14; this.ribbonControl1.TabIndex = 0; this.ribbonControl1.Text = "ribbonControl1"; // - // 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."; - // // btnHelp // this.btnHelp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; - this.btnHelp.Image = global::VEPROMS.Properties.Resources.Help_Image; + this.btnHelp.Image = ((System.Drawing.Image)(resources.GetObject("btnHelp.Image"))); this.btnHelp.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnHelp.ImagePaddingHorizontal = 8; this.btnHelp.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far; @@ -210,7 +201,7 @@ namespace VEPROMS // btnHelpManual // this.btnHelpManual.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; - this.btnHelpManual.Image = global::VEPROMS.Properties.Resources.HelpDoc_Image; + this.btnHelpManual.Image = ((System.Drawing.Image)(resources.GetObject("btnHelpManual.Image"))); this.btnHelpManual.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnHelpManual.ImagePaddingHorizontal = 8; this.btnHelpManual.Name = "btnHelpManual"; @@ -219,20 +210,22 @@ namespace VEPROMS // btnHelpAbout // this.btnHelpAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; - this.btnHelpAbout.Image = global::VEPROMS.Properties.Resources.HelpAbout_Image; + this.btnHelpAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnHelpAbout.Image"))); this.btnHelpAbout.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnHelpAbout.ImagePaddingHorizontal = 8; this.btnHelpAbout.Name = "btnHelpAbout"; this.btnHelpAbout.Text = "About"; + this.btnHelpAbout.Click += new System.EventHandler(this.btnAbout_Click); // // btnHelpVWeb // this.btnHelpVWeb.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; - this.btnHelpVWeb.Image = global::VEPROMS.Properties.Resources.VolianWeb_Image; + this.btnHelpVWeb.Image = ((System.Drawing.Image)(resources.GetObject("btnHelpVWeb.Image"))); this.btnHelpVWeb.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnHelpVWeb.ImagePaddingHorizontal = 8; this.btnHelpVWeb.Name = "btnHelpVWeb"; this.btnHelpVWeb.Text = "Volian Web"; + this.btnHelpVWeb.Click += new System.EventHandler(this.btnVlnWeb_Click); // // office2007StartButton1 // @@ -287,8 +280,10 @@ namespace VEPROMS this.btnNew, this.btnOpen, this.btnSave, - this.buttonItem5, + this.btnSaveAs, this.btnPrint, + this.btnPrepare, + this.btnAdmin, this.btnClose}); // // btnNew @@ -300,6 +295,7 @@ namespace VEPROMS this.btnNew.Name = "btnNew"; this.btnNew.SubItemsExpandWidth = 24; this.btnNew.Text = "&New"; + this.btnNew.Click += new System.EventHandler(this.btnNew_Click); // // btnOpen // @@ -315,7 +311,7 @@ namespace VEPROMS // btnSave // this.btnSave.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; - this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image"))); + this.btnSave.Image = global::VEPROMS.Properties.Resources.Save1; this.btnSave.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnSave.ImagePaddingHorizontal = 8; this.btnSave.Name = "btnSave"; @@ -323,16 +319,14 @@ namespace VEPROMS this.btnSave.Text = "&Save..."; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // - // buttonItem5 + // btnSaveAs // - this.buttonItem5.BeginGroup = true; - this.buttonItem5.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; - this.buttonItem5.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem5.Image"))); - this.buttonItem5.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; - this.buttonItem5.ImagePaddingHorizontal = 8; - this.buttonItem5.Name = "buttonItem5"; - this.buttonItem5.SubItemsExpandWidth = 24; - this.buttonItem5.Text = "S&hare..."; + this.btnSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; + this.btnSaveAs.Image = global::VEPROMS.Properties.Resources.SaveAs1; + this.btnSaveAs.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; + this.btnSaveAs.ImagePaddingHorizontal = 8; + this.btnSaveAs.Name = "btnSaveAs"; + this.btnSaveAs.Text = "Save &As"; // // btnPrint // @@ -344,6 +338,26 @@ namespace VEPROMS this.btnPrint.SubItemsExpandWidth = 24; this.btnPrint.Text = "&Print..."; // + // btnPrepare + // + this.btnPrepare.BeginGroup = true; + this.btnPrepare.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; + this.btnPrepare.Image = ((System.Drawing.Image)(resources.GetObject("btnPrepare.Image"))); + this.btnPrepare.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; + this.btnPrepare.ImagePaddingHorizontal = 8; + this.btnPrepare.Name = "btnPrepare"; + this.btnPrepare.SubItemsExpandWidth = 24; + this.btnPrepare.Text = "Pr&epare"; + // + // btnAdmin + // + this.btnAdmin.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; + this.btnAdmin.Image = global::VEPROMS.Properties.Resources.Admin1; + this.btnAdmin.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; + this.btnAdmin.ImagePaddingHorizontal = 8; + this.btnAdmin.Name = "btnAdmin"; + this.btnAdmin.Text = "A&dministration"; + // // btnClose // this.btnClose.BeginGroup = true; @@ -418,6 +432,23 @@ namespace VEPROMS // this.qatCustomizeItem1.Name = "qatCustomizeItem1"; // + // 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."; + // // Common // this.Common.DisplayOrder = 1; @@ -456,9 +487,9 @@ namespace VEPROMS this.btnPrevPos, this.labelItem14, this.btnGetRoVals}); - this.bottomBar.Location = new System.Drawing.Point(4, 749); + this.bottomBar.Location = new System.Drawing.Point(4, 543); this.bottomBar.Name = "bottomBar"; - this.bottomBar.Size = new System.Drawing.Size(1114, 29); + this.bottomBar.Size = new System.Drawing.Size(816, 29); this.bottomBar.Stretch = true; this.bottomBar.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; this.bottomBar.TabIndex = 1; @@ -534,7 +565,7 @@ namespace VEPROMS this.btnLckUlck.AutoExpandOnClick = true; this.btnLckUlck.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; this.btnLckUlck.ForeColor = System.Drawing.Color.Black; - this.btnLckUlck.Image = global::VEPROMS.Properties.Resources.UnProtectFormHS; + this.btnLckUlck.Image = ((System.Drawing.Image)(resources.GetObject("btnLckUlck.Image"))); this.btnLckUlck.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnLckUlck.ImagePaddingHorizontal = 8; this.btnLckUlck.Name = "btnLckUlck"; @@ -543,13 +574,13 @@ 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 // this.btnSetLock.ForeColor = System.Drawing.Color.Black; - this.btnSetLock.Image = global::VEPROMS.Properties.Resources.ProtectFormHS; + this.btnSetLock.Image = ((System.Drawing.Image)(resources.GetObject("btnSetLock.Image"))); this.btnSetLock.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnSetLock.ImagePaddingHorizontal = 8; this.btnSetLock.Name = "btnSetLock"; @@ -559,7 +590,7 @@ namespace VEPROMS // btnReleaseLck // this.btnReleaseLck.ForeColor = System.Drawing.Color.Black; - this.btnReleaseLck.Image = global::VEPROMS.Properties.Resources.UnProtectFormHS; + this.btnReleaseLck.Image = ((System.Drawing.Image)(resources.GetObject("btnReleaseLck.Image"))); this.btnReleaseLck.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; this.btnReleaseLck.ImagePaddingHorizontal = 8; this.btnReleaseLck.Name = "btnReleaseLck"; @@ -660,7 +691,7 @@ namespace VEPROMS 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)); + "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); // @@ -682,7 +713,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); // @@ -700,7 +731,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"; // // epAnnotations @@ -711,10 +742,12 @@ namespace VEPROMS this.epAnnotations.Controls.Add(this.ctrlAnnotationDetails); this.epAnnotations.Controls.Add(this.btnAnnoDetailsPushPin); this.epAnnotations.Dock = System.Windows.Forms.DockStyle.Bottom; + this.epAnnotations.Expanded = false; + this.epAnnotations.ExpandedBounds = new System.Drawing.Rectangle(4, 547, 1114, 202); this.epAnnotations.ExpandOnTitleClick = true; - this.epAnnotations.Location = new System.Drawing.Point(4, 547); + this.epAnnotations.Location = new System.Drawing.Point(4, 517); this.epAnnotations.Name = "epAnnotations"; - this.epAnnotations.Size = new System.Drawing.Size(1114, 202); + this.epAnnotations.Size = new System.Drawing.Size(816, 26); this.epAnnotations.Style.Alignment = System.Drawing.StringAlignment.Center; this.epAnnotations.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; this.epAnnotations.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; @@ -736,14 +769,15 @@ namespace VEPROMS // ctrlAnnotationDetails // this.ctrlAnnotationDetails.AnnotationRTFText = "{\\rtf1\\ansi\\ansicpg1252\\deff0\\deflang1033{\\fonttbl{\\f0\\fnil\\fcharset0 Microsoft S" + - "ans Serif;}}\r\n\\viewkind4\\uc1\\pard\\f0\\fs20\\par\r\n}\r\n"; + "ans Serif;}}\r\n\\viewkind4\\uc1\\pard\\f0\\fs20\\par\r\n}\r\n"; this.ctrlAnnotationDetails.Annotations = null; this.ctrlAnnotationDetails.AnnotationText = ""; this.ctrlAnnotationDetails.CurrentAnnotation = null; this.ctrlAnnotationDetails.Dock = System.Windows.Forms.DockStyle.Fill; this.ctrlAnnotationDetails.Location = new System.Drawing.Point(0, 26); + this.ctrlAnnotationDetails.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.ctrlAnnotationDetails.Name = "ctrlAnnotationDetails"; - this.ctrlAnnotationDetails.Size = new System.Drawing.Size(1114, 176); + this.ctrlAnnotationDetails.Size = new System.Drawing.Size(1114, 0); this.ctrlAnnotationDetails.TabIndex = 15; // // btnAnnoDetailsPushPin @@ -755,14 +789,14 @@ namespace VEPROMS this.btnAnnoDetailsPushPin.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.btnAnnoDetailsPushPin.ColorTable = DevComponents.DotNetBar.eButtonColor.Flat; this.btnAnnoDetailsPushPin.FocusCuesEnabled = false; - this.btnAnnoDetailsPushPin.Image = global::VEPROMS.Properties.Resources.PushpinUnStick; - this.btnAnnoDetailsPushPin.Location = new System.Drawing.Point(1059, 1); + this.btnAnnoDetailsPushPin.Image = ((System.Drawing.Image)(resources.GetObject("btnAnnoDetailsPushPin.Image"))); + this.btnAnnoDetailsPushPin.Location = new System.Drawing.Point(761, 1); this.btnAnnoDetailsPushPin.Name = "btnAnnoDetailsPushPin"; - this.btnAnnoDetailsPushPin.PressedImage = global::VEPROMS.Properties.Resources.PushpinStick; + this.btnAnnoDetailsPushPin.PressedImage = ((System.Drawing.Image)(resources.GetObject("btnAnnoDetailsPushPin.PressedImage"))); this.btnAnnoDetailsPushPin.ShowSubItems = false; this.btnAnnoDetailsPushPin.Size = new System.Drawing.Size(27, 23); this.superTooltip1.SetSuperTooltip(this.btnAnnoDetailsPushPin, new DevComponents.DotNetBar.SuperTooltipInfo("Annotation Details Push Pin", "", "This will toggle between keeping the Annotation Details window opened or to open/" + - "close automatically.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + "close automatically.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); this.btnAnnoDetailsPushPin.TabIndex = 14; this.btnAnnoDetailsPushPin.ThemeAware = true; // @@ -774,11 +808,11 @@ namespace VEPROMS this.expandablePanel2.Controls.Add(this.tv); this.expandablePanel2.Dock = System.Windows.Forms.DockStyle.Left; this.expandablePanel2.Expanded = false; - this.expandablePanel2.ExpandedBounds = new System.Drawing.Rectangle(4, 147, 251, 576); + this.expandablePanel2.ExpandedBounds = new System.Drawing.Rectangle(4, 51, 251, 496); this.expandablePanel2.ExpandOnTitleClick = true; - this.expandablePanel2.Location = new System.Drawing.Point(4, 147); + this.expandablePanel2.Location = new System.Drawing.Point(4, 57); this.expandablePanel2.Name = "expandablePanel2"; - this.expandablePanel2.Size = new System.Drawing.Size(30, 400); + this.expandablePanel2.Size = new System.Drawing.Size(30, 460); this.expandablePanel2.Style.Alignment = System.Drawing.StringAlignment.Center; this.expandablePanel2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; this.expandablePanel2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; @@ -803,10 +837,9 @@ namespace VEPROMS this.tv.HideSelection = false; this.tv.Location = new System.Drawing.Point(0, 26); this.tv.Name = "tv"; - this.tv.Size = new System.Drawing.Size(30, 374); + this.tv.Size = new System.Drawing.Size(30, 470); this.tv.TabIndex = 1; this.tv.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tv_BeforeExpand); - this.tv.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tv_KeyPress); this.tv.Click += new System.EventHandler(this.tv_Click); // // infoPanel @@ -816,10 +849,12 @@ namespace VEPROMS this.infoPanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; this.infoPanel.Controls.Add(this.infoTabs); this.infoPanel.Dock = System.Windows.Forms.DockStyle.Right; + this.infoPanel.Expanded = false; + this.infoPanel.ExpandedBounds = new System.Drawing.Rectangle(357, 57, 230, 457); this.infoPanel.ExpandOnTitleClick = true; - this.infoPanel.Location = new System.Drawing.Point(888, 147); + this.infoPanel.Location = new System.Drawing.Point(757, 57); this.infoPanel.Name = "infoPanel"; - this.infoPanel.Size = new System.Drawing.Size(230, 400); + this.infoPanel.Size = new System.Drawing.Size(30, 457); this.infoPanel.Style.Alignment = System.Drawing.StringAlignment.Center; this.infoPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; this.infoPanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; @@ -835,34 +870,66 @@ namespace VEPROMS this.infoPanel.TitleStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; this.infoPanel.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; this.infoPanel.TitleStyle.GradientAngle = 90; - this.infoPanel.TitleText = "Information"; + this.infoPanel.TitleText = "Step Properties"; // // infoTabs // this.infoTabs.BackColor = System.Drawing.Color.Transparent; this.infoTabs.CanReorderTabs = true; this.infoTabs.Controls.Add(this.tabControlPanel1); - this.infoTabs.Controls.Add(this.annotationSearch); this.infoTabs.Controls.Add(this.infotabControlPanelRO); this.infoTabs.Controls.Add(this.infotabControlPanelTransitions); - 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"; this.infoTabs.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold); this.infoTabs.SelectedTabIndex = 0; - this.infoTabs.Size = new System.Drawing.Size(230, 374); + this.infoTabs.Size = new System.Drawing.Size(30, 431); this.infoTabs.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Right; this.infoTabs.TabIndex = 1; this.infoTabs.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; this.infoTabs.Tabs.Add(this.infotabTags); - this.infoTabs.Tabs.Add(this.infotabBookMarks); - this.infoTabs.Tabs.Add(this.infotabResults); this.infoTabs.Tabs.Add(this.infotabRO); this.infoTabs.Tabs.Add(this.infotabTransition); this.infoTabs.Text = "tabControl1"; this.infoTabs.ThemeAware = true; // + // 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(3, 431); + this.infotabControlPanelRO.Style.BackColor1.Color = System.Drawing.SystemColors.Control; + this.infotabControlPanelRO.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + 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; + this.infotabControlPanelRO.ThemeAware = true; + // + // displayRO + // + 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); + this.displayRO.MyROFST = null; + this.displayRO.MyRTB = null; + this.displayRO.Name = "displayRO"; + this.displayRO.Size = new System.Drawing.Size(1, 429); + 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); @@ -870,11 +937,11 @@ namespace VEPROMS this.tabControlPanel1.Location = new System.Drawing.Point(0, 0); this.tabControlPanel1.Name = "tabControlPanel1"; this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel1.Size = new System.Drawing.Size(203, 374); + this.tabControlPanel1.Size = new System.Drawing.Size(3, 431); this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.SystemColors.Control; this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; 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; @@ -891,7 +958,7 @@ namespace VEPROMS this.panelEx1.Dock = System.Windows.Forms.DockStyle.Fill; this.panelEx1.Location = new System.Drawing.Point(1, 1); this.panelEx1.Name = "panelEx1"; - this.panelEx1.Size = new System.Drawing.Size(201, 372); + this.panelEx1.Size = new System.Drawing.Size(1, 429); this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center; this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.Transparent; this.panelEx1.Style.BackColor2.Color = System.Drawing.Color.SlateGray; @@ -908,7 +975,7 @@ namespace VEPROMS this.groupPanel4.Dock = System.Windows.Forms.DockStyle.Top; this.groupPanel4.Location = new System.Drawing.Point(0, 362); this.groupPanel4.Name = "groupPanel4"; - this.groupPanel4.Size = new System.Drawing.Size(201, 100); + this.groupPanel4.Size = new System.Drawing.Size(1, 100); // // // @@ -937,10 +1004,10 @@ namespace VEPROMS this.comboBoxEx1.DisplayMember = "Text"; this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; this.comboBoxEx1.FormattingEnabled = true; - this.comboBoxEx1.ItemHeight = 17; + this.comboBoxEx1.ItemHeight = 14; this.comboBoxEx1.Location = new System.Drawing.Point(4, 20); this.comboBoxEx1.Name = "comboBoxEx1"; - this.comboBoxEx1.Size = new System.Drawing.Size(189, 23); + this.comboBoxEx1.Size = new System.Drawing.Size(189, 20); 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"; @@ -953,7 +1020,7 @@ namespace VEPROMS this.groupPanel3.Dock = System.Windows.Forms.DockStyle.Top; this.groupPanel3.Location = new System.Drawing.Point(0, 262); this.groupPanel3.Name = "groupPanel3"; - this.groupPanel3.Size = new System.Drawing.Size(201, 100); + this.groupPanel3.Size = new System.Drawing.Size(1, 100); // // // @@ -994,7 +1061,7 @@ namespace VEPROMS this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Top; this.groupPanel2.Location = new System.Drawing.Point(0, 122); this.groupPanel2.Name = "groupPanel2"; - this.groupPanel2.Size = new System.Drawing.Size(201, 140); + this.groupPanel2.Size = new System.Drawing.Size(1, 140); // // // @@ -1043,7 +1110,7 @@ namespace VEPROMS this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top; this.groupPanel1.Location = new System.Drawing.Point(0, 0); this.groupPanel1.Name = "groupPanel1"; - this.groupPanel1.Size = new System.Drawing.Size(201, 122); + this.groupPanel1.Size = new System.Drawing.Size(1, 122); // // // @@ -1087,7 +1154,7 @@ namespace VEPROMS this.txbChgMsg1.Location = new System.Drawing.Point(16, 38); this.txbChgMsg1.MaxLength = 3; this.txbChgMsg1.Name = "txbChgMsg1"; - this.txbChgMsg1.Size = new System.Drawing.Size(36, 23); + this.txbChgMsg1.Size = new System.Drawing.Size(36, 20); this.txbChgMsg1.TabIndex = 1; this.txbChgMsg1.WatermarkText = "XXX"; // @@ -1101,7 +1168,7 @@ namespace VEPROMS this.txbChgMsg2.Location = new System.Drawing.Point(16, 66); this.txbChgMsg2.MaxLength = 3; this.txbChgMsg2.Name = "txbChgMsg2"; - this.txbChgMsg2.Size = new System.Drawing.Size(36, 23); + this.txbChgMsg2.Size = new System.Drawing.Size(36, 20); this.txbChgMsg2.TabIndex = 2; this.txbChgMsg2.WatermarkText = "XXX"; // @@ -1120,162 +1187,6 @@ namespace VEPROMS this.infotabTags.Text = "Tags"; this.infotabTags.Visible = false; // - // annotationSearch - // - this.annotationSearch.Controls.Add(this.navpaneResults); - this.annotationSearch.Dock = System.Windows.Forms.DockStyle.Fill; - this.annotationSearch.Location = new System.Drawing.Point(0, 0); - this.annotationSearch.Name = "annotationSearch"; - this.annotationSearch.Padding = new System.Windows.Forms.Padding(1); - this.annotationSearch.Size = new System.Drawing.Size(203, 374); - this.annotationSearch.Style.BackColor1.Color = System.Drawing.SystemColors.Control; - this.annotationSearch.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.annotationSearch.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top) - | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.annotationSearch.Style.GradientAngle = 180; - this.annotationSearch.TabIndex = 3; - this.annotationSearch.TabItem = this.infotabResults; - this.annotationSearch.ThemeAware = true; - // - // navpaneResults - // - this.navpaneResults.Controls.Add(this.navpanSrchRslts); - this.navpaneResults.Controls.Add(this.navigationPanePanel2); - this.navpaneResults.Dock = System.Windows.Forms.DockStyle.Fill; - this.navpaneResults.ItemPaddingBottom = 2; - this.navpaneResults.ItemPaddingTop = 2; - this.navpaneResults.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] { - this.btnSrchRslt, - 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(201, 372); - this.navpaneResults.TabIndex = 0; - // - // - // - this.navpaneResults.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top; - this.navpaneResults.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.navpaneResults.TitlePanel.Location = new System.Drawing.Point(1, 1); - this.navpaneResults.TitlePanel.Name = "panelTitle"; - this.navpaneResults.TitlePanel.Size = new System.Drawing.Size(199, 24); - this.navpaneResults.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.navpaneResults.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.navpaneResults.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.navpaneResults.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.navpaneResults.TitlePanel.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom; - this.navpaneResults.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.navpaneResults.TitlePanel.Style.GradientAngle = 90; - this.navpaneResults.TitlePanel.Style.MarginLeft = 4; - this.navpaneResults.TitlePanel.TabIndex = 0; - this.navpaneResults.TitlePanel.Text = "Annotation Search"; - // - // navpanSrchRslts - // - this.navpanSrchRslts.Controls.Add(this.CtrlAnnotationSearch); - 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(199, 313); - 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; - this.navpanSrchRslts.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.navpanSrchRslts.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.navpanSrchRslts.Style.GradientAngle = 90; - this.navpanSrchRslts.TabIndex = 2; - // - // CtrlAnnotationSearch - // - this.CtrlAnnotationSearch.Dock = System.Windows.Forms.DockStyle.Fill; - this.CtrlAnnotationSearch.LoadingList = false; - this.CtrlAnnotationSearch.Location = new System.Drawing.Point(0, 0); - this.CtrlAnnotationSearch.Name = "CtrlAnnotationSearch"; - this.CtrlAnnotationSearch.Size = new System.Drawing.Size(199, 313); - this.CtrlAnnotationSearch.TabIndex = 0; - // - // btnSrchRslt - // - this.btnSrchRslt.Checked = true; - this.btnSrchRslt.Image = ((System.Drawing.Image)(resources.GetObject("btnSrchRslt.Image"))); - this.btnSrchRslt.ImageFixedSize = new System.Drawing.Size(16, 16); - this.btnSrchRslt.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; - this.btnSrchRslt.ImagePaddingHorizontal = 8; - this.btnSrchRslt.Name = "btnSrchRslt"; - this.btnSrchRslt.OptionGroup = "navBar"; - this.superTooltip1.SetSuperTooltip(this.btnSrchRslt, new DevComponents.DotNetBar.SuperTooltipInfo("Annotation Search", "", "Will display a list of all annotations of a selected type.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.btnSrchRslt.Text = "Annotation Search"; - // - // navigationPanePanel2 - // - this.navigationPanePanel2.Dock = System.Windows.Forms.DockStyle.Fill; - 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(199, 337); - 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; - this.navigationPanePanel2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.navigationPanePanel2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.navigationPanePanel2.Style.GradientAngle = 90; - this.navigationPanePanel2.TabIndex = 3; - // - // btnSimStpsRslt - // - this.btnSimStpsRslt.Image = ((System.Drawing.Image)(resources.GetObject("btnSimStpsRslt.Image"))); - this.btnSimStpsRslt.ImageFixedSize = new System.Drawing.Size(16, 16); - this.btnSimStpsRslt.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; - this.btnSimStpsRslt.ImagePaddingHorizontal = 8; - this.btnSimStpsRslt.Name = "btnSimStpsRslt"; - this.btnSimStpsRslt.OptionGroup = "navBar"; - this.btnSimStpsRslt.Text = "Similar Steps"; - // - // infotabResults - // - this.infotabResults.AttachedControl = this.annotationSearch; - this.infotabResults.Name = "infotabResults"; - this.infotabResults.Text = "Search"; - // - // 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(203, 374); - this.infotabControlPanelRO.Style.BackColor1.Color = System.Drawing.SystemColors.Control; - this.infotabControlPanelRO.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - 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; - this.infotabControlPanelRO.ThemeAware = true; - // - // displayRO - // - 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); - this.displayRO.MyROFST = null; - this.displayRO.MyRTB = null; - this.displayRO.Name = "displayRO"; - this.displayRO.Size = new System.Drawing.Size(201, 372); - 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); @@ -1283,11 +1194,11 @@ namespace VEPROMS 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(203, 374); + this.infotabControlPanelTransitions.Size = new System.Drawing.Size(3, 431); this.infotabControlPanelTransitions.Style.BackColor1.Color = System.Drawing.SystemColors.Control; this.infotabControlPanelTransitions.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; this.infotabControlPanelTransitions.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top) - | DevComponents.DotNetBar.eBorderSide.Bottom))); + | DevComponents.DotNetBar.eBorderSide.Bottom))); this.infotabControlPanelTransitions.Style.GradientAngle = 180; this.infotabControlPanelTransitions.TabIndex = 5; this.infotabControlPanelTransitions.TabItem = this.infotabTransition; @@ -1305,7 +1216,7 @@ namespace VEPROMS this.displayTransition.MyRTB = null; this.displayTransition.Name = "displayTransition"; this.displayTransition.RangeColor = global::VEPROMS.Properties.Settings.Default.TransitionRangeColor; - this.displayTransition.Size = new System.Drawing.Size(201, 372); + this.displayTransition.Size = new System.Drawing.Size(1, 429); this.displayTransition.TabIndex = 0; // // infotabTransition @@ -1316,53 +1227,259 @@ namespace VEPROMS this.infotabTransition.Visible = false; this.infotabTransition.Click += new System.EventHandler(this.infotabTransition_Click); // + // navigationPanePanel2 + // + this.navigationPanePanel2.Dock = System.Windows.Forms.DockStyle.Fill; + this.navigationPanePanel2.Location = new System.Drawing.Point(1, 1); + this.navigationPanePanel2.Name = "navigationPanePanel2"; + this.navigationPanePanel2.ParentItem = null; + this.navigationPanePanel2.Size = new System.Drawing.Size(199, 401); + 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; + this.navigationPanePanel2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.navigationPanePanel2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.navigationPanePanel2.Style.GradientAngle = 90; + this.navigationPanePanel2.TabIndex = 3; + // + // expandableSplitter1 + // + this.expandableSplitter1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter1.ExpandLineColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter1.GripDarkColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); + this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75))))); + this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139))))); + this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2; + this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground; + this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter1.HotExpandLineColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); + this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.expandableSplitter1.Location = new System.Drawing.Point(34, 57); + this.expandableSplitter1.Name = "expandableSplitter1"; + this.expandableSplitter1.Size = new System.Drawing.Size(3, 460); + this.expandableSplitter1.TabIndex = 5; + this.expandableSplitter1.TabStop = false; + // + // expandableSplitter2 + // + this.expandableSplitter2.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter2.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter2.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.expandableSplitter2.Dock = System.Windows.Forms.DockStyle.Bottom; + this.expandableSplitter2.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter2.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter2.ExpandLineColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter2.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter2.GripDarkColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter2.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter2.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); + this.expandableSplitter2.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.expandableSplitter2.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75))))); + this.expandableSplitter2.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139))))); + this.expandableSplitter2.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2; + this.expandableSplitter2.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground; + this.expandableSplitter2.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter2.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter2.HotExpandLineColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter2.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter2.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter2.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter2.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); + this.expandableSplitter2.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.expandableSplitter2.Location = new System.Drawing.Point(37, 514); + this.expandableSplitter2.Name = "expandableSplitter2"; + this.expandableSplitter2.Size = new System.Drawing.Size(783, 3); + this.expandableSplitter2.TabIndex = 6; + this.expandableSplitter2.TabStop = false; + // + // expandableSplitter3 + // + this.expandableSplitter3.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter3.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter3.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.expandableSplitter3.Dock = System.Windows.Forms.DockStyle.Right; + this.expandableSplitter3.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter3.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter3.ExpandLineColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter3.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter3.GripDarkColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter3.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter3.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); + this.expandableSplitter3.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.expandableSplitter3.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75))))); + this.expandableSplitter3.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139))))); + this.expandableSplitter3.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2; + this.expandableSplitter3.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground; + this.expandableSplitter3.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter3.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter3.HotExpandLineColor = System.Drawing.SystemColors.ControlText; + this.expandableSplitter3.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.expandableSplitter3.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); + this.expandableSplitter3.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.expandableSplitter3.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); + this.expandableSplitter3.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.expandableSplitter3.Location = new System.Drawing.Point(817, 57); + this.expandableSplitter3.Name = "expandableSplitter3"; + this.expandableSplitter3.Size = new System.Drawing.Size(3, 457); + this.expandableSplitter3.TabIndex = 7; + this.expandableSplitter3.TabStop = false; + // + // superTooltip1 + // + this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; + // + // btnSrchRslt + // + this.btnSrchRslt.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; + this.btnSrchRslt.Checked = true; + this.btnSrchRslt.Image = ((System.Drawing.Image)(resources.GetObject("btnSrchRslt.Image"))); + this.btnSrchRslt.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; + this.btnSrchRslt.ImagePaddingHorizontal = 8; + this.btnSrchRslt.Name = "btnSrchRslt"; + this.btnSrchRslt.OptionGroup = "navBar"; + this.superTooltip1.SetSuperTooltip(this.btnSrchRslt, new DevComponents.DotNetBar.SuperTooltipInfo("Annotation Search", "", "Will display a list of all annotations of a selected type.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.btnSrchRslt.Text = "Annotation Search"; + // + // tmrTreeView + // + this.tmrTreeView.Interval = 10; + this.tmrTreeView.Tick += new System.EventHandler(this.tmrTreeView_Tick); + // + // tc + // + this.tc.Dock = System.Windows.Forms.DockStyle.Fill; + this.tc.Location = new System.Drawing.Point(37, 57); + this.tc.Margin = new System.Windows.Forms.Padding(4); + this.tc.Name = "tc"; + this.tc.SelectedDisplayTabItem = null; + this.tc.Size = new System.Drawing.Size(720, 457); + this.tc.TabIndex = 8; + this.tc.ItemSelectedChanged += new Volian.Controls.Library.ItemSelectedChangedEvent(this.tc_ItemSelectedChanged); + this.tc.LinkModifyTran += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyTran); + this.tc.LinkModifyRO += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyRO); + // + // buttonItem1 + // + this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image"))); + this.buttonItem1.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; + this.buttonItem1.ImagePaddingHorizontal = 8; + this.buttonItem1.Name = "buttonItem1"; + this.buttonItem1.Text = "buttonItem19"; + this.buttonItem1.Tooltip = "Degree"; + // + // itemAnnotationsBindingSource + // + this.itemAnnotationsBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.ItemAnnotation); + // + // searchPanel + // + this.searchPanel.CanvasColor = System.Drawing.SystemColors.Control; + this.searchPanel.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight; + this.searchPanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.searchPanel.Controls.Add(this.searchTabControl); + this.searchPanel.Dock = System.Windows.Forms.DockStyle.Right; + this.searchPanel.Expanded = false; + this.searchPanel.ExpandedBounds = new System.Drawing.Rectangle(587, 57, 230, 457); + this.searchPanel.ExpandOnTitleClick = true; + this.searchPanel.Location = new System.Drawing.Point(787, 57); + this.searchPanel.Name = "searchPanel"; + this.searchPanel.Size = new System.Drawing.Size(30, 457); + this.searchPanel.Style.Alignment = System.Drawing.StringAlignment.Center; + this.searchPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.searchPanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.searchPanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.searchPanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder; + this.searchPanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.searchPanel.Style.GradientAngle = 90; + this.searchPanel.TabIndex = 9; + this.searchPanel.TitleStyle.Alignment = System.Drawing.StringAlignment.Center; + this.searchPanel.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.searchPanel.TitleStyle.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.searchPanel.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner; + this.searchPanel.TitleStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.searchPanel.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.searchPanel.TitleStyle.GradientAngle = 90; + this.searchPanel.TitleText = "Tools"; + // + // searchTabControl + // + this.searchTabControl.BackColor = System.Drawing.Color.Transparent; + this.searchTabControl.CanReorderTabs = true; + this.searchTabControl.Controls.Add(this.annotationSearch); + this.searchTabControl.Controls.Add(this.tabControlPanel2); + this.searchTabControl.Dock = System.Windows.Forms.DockStyle.Fill; + this.searchTabControl.Location = new System.Drawing.Point(0, 26); + this.searchTabControl.Name = "searchTabControl"; + this.searchTabControl.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold); + this.searchTabControl.SelectedTabIndex = 0; + this.searchTabControl.Size = new System.Drawing.Size(30, 431); + this.searchTabControl.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Right; + this.searchTabControl.TabIndex = 1; + this.searchTabControl.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; + this.searchTabControl.Tabs.Add(this.infotabBookMarks); + this.searchTabControl.Tabs.Add(this.infotabResults); + this.searchTabControl.Text = "tabControl1"; + this.searchTabControl.ThemeAware = true; + // // tabControlPanel2 // - this.tabControlPanel2.Controls.Add(this.panelEx4); + this.tabControlPanel2.Controls.Add(this.panelEx3); this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControlPanel2.Location = new System.Drawing.Point(0, 0); this.tabControlPanel2.Name = "tabControlPanel2"; this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel2.Size = new System.Drawing.Size(203, 374); + this.tabControlPanel2.Size = new System.Drawing.Size(203, 431); this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.SystemColors.Control; this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; 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; this.tabControlPanel2.ThemeAware = true; // - // panelEx4 + // panelEx3 // - this.panelEx4.AutoScroll = true; - this.panelEx4.CanvasColor = System.Drawing.SystemColors.Control; - this.panelEx4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.panelEx4.Controls.Add(this.lbxBookMarks); - this.panelEx4.Controls.Add(this.btnClrBookMrks); - this.panelEx4.Controls.Add(this.btnRmvCurBookMrk); - this.panelEx4.Controls.Add(this.btnSetBookMrk); - this.panelEx4.Dock = System.Windows.Forms.DockStyle.Fill; - this.panelEx4.Location = new System.Drawing.Point(1, 1); - this.panelEx4.Name = "panelEx4"; - this.panelEx4.Size = new System.Drawing.Size(201, 372); - this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center; - this.panelEx4.Style.BackColor1.Color = System.Drawing.Color.Transparent; - this.panelEx4.Style.BackColor2.Color = System.Drawing.Color.SlateGray; - this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.panelEx4.Style.BorderColor.Color = System.Drawing.Color.Gray; - this.panelEx4.Style.ForeColor.Color = System.Drawing.Color.Transparent; - this.panelEx4.TabIndex = 3; + this.panelEx3.AutoScroll = true; + this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control; + this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.panelEx3.Controls.Add(this.lbxBookMarks); + this.panelEx3.Controls.Add(this.btnClrBookMrks); + this.panelEx3.Controls.Add(this.btnRmvCurBookMrk); + this.panelEx3.Controls.Add(this.btnSetBookMrk); + this.panelEx3.Dock = System.Windows.Forms.DockStyle.Fill; + this.panelEx3.Location = new System.Drawing.Point(1, 1); + this.panelEx3.Name = "panelEx3"; + this.panelEx3.Size = new System.Drawing.Size(201, 429); + this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center; + this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.Transparent; + this.panelEx3.Style.BackColor2.Color = System.Drawing.Color.SlateGray; + this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.panelEx3.Style.BorderColor.Color = System.Drawing.Color.Gray; + this.panelEx3.Style.ForeColor.Color = System.Drawing.Color.Transparent; + this.panelEx3.TabIndex = 3; // // lbxBookMarks // this.lbxBookMarks.Dock = System.Windows.Forms.DockStyle.Fill; 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(201, 276); + this.lbxBookMarks.Size = new System.Drawing.Size(201, 342); this.lbxBookMarks.TabIndex = 3; this.lbxBookMarks.Click += new System.EventHandler(this.lbxBookMarks_Click); // @@ -1408,147 +1525,127 @@ namespace VEPROMS this.infotabBookMarks.Name = "infotabBookMarks"; this.infotabBookMarks.Text = "BookMarks"; // - // expandableSplitter1 + // annotationSearch // - this.expandableSplitter1.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter1.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter1.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.expandableSplitter1.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter1.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter1.ExpandLineColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter1.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter1.GripDarkColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter1.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter1.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); - this.expandableSplitter1.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; - this.expandableSplitter1.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75))))); - this.expandableSplitter1.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139))))); - this.expandableSplitter1.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2; - this.expandableSplitter1.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground; - this.expandableSplitter1.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter1.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter1.HotExpandLineColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter1.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter1.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); - this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; - this.expandableSplitter1.Location = new System.Drawing.Point(34, 147); - this.expandableSplitter1.Name = "expandableSplitter1"; - this.expandableSplitter1.Size = new System.Drawing.Size(3, 400); - this.expandableSplitter1.TabIndex = 5; - this.expandableSplitter1.TabStop = false; + this.annotationSearch.Controls.Add(this.navpaneResults); + this.annotationSearch.Dock = System.Windows.Forms.DockStyle.Fill; + this.annotationSearch.Location = new System.Drawing.Point(0, 0); + this.annotationSearch.Name = "annotationSearch"; + this.annotationSearch.Padding = new System.Windows.Forms.Padding(1); + this.annotationSearch.Size = new System.Drawing.Size(3, 431); + this.annotationSearch.Style.BackColor1.Color = System.Drawing.SystemColors.Control; + this.annotationSearch.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.annotationSearch.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top) + | DevComponents.DotNetBar.eBorderSide.Bottom))); + this.annotationSearch.Style.GradientAngle = 180; + this.annotationSearch.TabIndex = 3; + this.annotationSearch.TabItem = this.infotabResults; + this.annotationSearch.ThemeAware = true; // - // expandableSplitter2 + // navpaneResults // - this.expandableSplitter2.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter2.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter2.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.expandableSplitter2.Dock = System.Windows.Forms.DockStyle.Bottom; - this.expandableSplitter2.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter2.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter2.ExpandLineColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter2.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter2.GripDarkColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter2.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter2.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); - this.expandableSplitter2.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; - this.expandableSplitter2.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75))))); - this.expandableSplitter2.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139))))); - this.expandableSplitter2.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2; - this.expandableSplitter2.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground; - this.expandableSplitter2.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter2.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter2.HotExpandLineColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter2.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter2.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter2.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter2.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); - this.expandableSplitter2.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; - this.expandableSplitter2.Location = new System.Drawing.Point(37, 544); - this.expandableSplitter2.Name = "expandableSplitter2"; - this.expandableSplitter2.Size = new System.Drawing.Size(851, 3); - this.expandableSplitter2.TabIndex = 6; - this.expandableSplitter2.TabStop = false; + this.navpaneResults.Controls.Add(this.navpanSrchRslts); + this.navpaneResults.Controls.Add(this.navigationPanePanel3); + this.navpaneResults.Dock = System.Windows.Forms.DockStyle.Fill; + this.navpaneResults.ItemPaddingBottom = 2; + this.navpaneResults.ItemPaddingTop = 2; + this.navpaneResults.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] { + this.btnSrchRslt, + this.btnSimStpsRslt}); + this.navpaneResults.Location = new System.Drawing.Point(1, 1); + this.navpaneResults.Name = "navpaneResults"; + this.navpaneResults.NavigationBarHeight = 90; + this.navpaneResults.Padding = new System.Windows.Forms.Padding(1); + this.navpaneResults.Size = new System.Drawing.Size(1, 429); + this.navpaneResults.TabIndex = 0; // - // expandableSplitter3 // - this.expandableSplitter3.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter3.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter3.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.expandableSplitter3.Dock = System.Windows.Forms.DockStyle.Right; - this.expandableSplitter3.ExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter3.ExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter3.ExpandLineColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter3.ExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter3.GripDarkColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter3.GripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter3.GripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); - this.expandableSplitter3.GripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; - this.expandableSplitter3.HotBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(254)))), ((int)(((byte)(142)))), ((int)(((byte)(75))))); - this.expandableSplitter3.HotBackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(207)))), ((int)(((byte)(139))))); - this.expandableSplitter3.HotBackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground2; - this.expandableSplitter3.HotBackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemPressedBackground; - this.expandableSplitter3.HotExpandFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter3.HotExpandFillColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter3.HotExpandLineColor = System.Drawing.SystemColors.ControlText; - this.expandableSplitter3.HotExpandLineColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; - this.expandableSplitter3.HotGripDarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(45)))), ((int)(((byte)(150))))); - this.expandableSplitter3.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.expandableSplitter3.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254))))); - this.expandableSplitter3.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; - this.expandableSplitter3.Location = new System.Drawing.Point(885, 147); - this.expandableSplitter3.Name = "expandableSplitter3"; - this.expandableSplitter3.Size = new System.Drawing.Size(3, 397); - this.expandableSplitter3.TabIndex = 7; - this.expandableSplitter3.TabStop = false; // - // superTooltip1 + this.navpaneResults.TitlePanel.Dock = System.Windows.Forms.DockStyle.Top; + this.navpaneResults.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.navpaneResults.TitlePanel.Location = new System.Drawing.Point(1, 1); + this.navpaneResults.TitlePanel.Name = "panelTitle"; + this.navpaneResults.TitlePanel.Size = new System.Drawing.Size(199, 24); + this.navpaneResults.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.navpaneResults.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.navpaneResults.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.navpaneResults.TitlePanel.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.navpaneResults.TitlePanel.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom; + this.navpaneResults.TitlePanel.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.navpaneResults.TitlePanel.Style.GradientAngle = 90; + this.navpaneResults.TitlePanel.Style.MarginLeft = 4; + this.navpaneResults.TitlePanel.TabIndex = 0; + this.navpaneResults.TitlePanel.Text = "Annotation Search"; // - this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; + // navpanSrchRslts // - // tmrTreeView + this.navpanSrchRslts.Controls.Add(this.CtrlAnnotationSearch); + 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(0, 313); + 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; + this.navpanSrchRslts.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.navpanSrchRslts.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.navpanSrchRslts.Style.GradientAngle = 90; + this.navpanSrchRslts.TabIndex = 2; // - this.tmrTreeView.Interval = 10; - this.tmrTreeView.Tick += new System.EventHandler(this.tmrTreeView_Tick); + // CtrlAnnotationSearch // - // tc + this.CtrlAnnotationSearch.Dock = System.Windows.Forms.DockStyle.Fill; + this.CtrlAnnotationSearch.LoadingList = false; + this.CtrlAnnotationSearch.Location = new System.Drawing.Point(0, 0); + this.CtrlAnnotationSearch.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.CtrlAnnotationSearch.Name = "CtrlAnnotationSearch"; + this.CtrlAnnotationSearch.Size = new System.Drawing.Size(0, 313); + this.CtrlAnnotationSearch.TabIndex = 0; // - 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.SelectedDisplayTabItem = null; - this.tc.Size = new System.Drawing.Size(848, 397); - this.tc.TabIndex = 8; - this.tc.ItemSelectedChanged += new Volian.Controls.Library.ItemSelectedChangedEvent(this.tc_ItemSelectedChanged); - this.tc.LinkModifyTran += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyTran); - this.tc.LinkModifyRO += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyRO); + // navigationPanePanel3 // - // itemAnnotationsBindingSource + this.navigationPanePanel3.Dock = System.Windows.Forms.DockStyle.Fill; + this.navigationPanePanel3.Location = new System.Drawing.Point(1, 1); + this.navigationPanePanel3.Name = "navigationPanePanel3"; + this.navigationPanePanel3.ParentItem = this.btnSimStpsRslt; + this.navigationPanePanel3.Size = new System.Drawing.Size(0, 337); + this.navigationPanePanel3.Style.Alignment = System.Drawing.StringAlignment.Center; + this.navigationPanePanel3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground; + this.navigationPanePanel3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2; + this.navigationPanePanel3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.navigationPanePanel3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText; + this.navigationPanePanel3.Style.GradientAngle = 90; + this.navigationPanePanel3.TabIndex = 3; // - this.itemAnnotationsBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.ItemAnnotation); + // btnSimStpsRslt // - // buttonItem1 + this.btnSimStpsRslt.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText; + this.btnSimStpsRslt.Image = ((System.Drawing.Image)(resources.GetObject("btnSimStpsRslt.Image"))); + this.btnSimStpsRslt.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; + this.btnSimStpsRslt.ImagePaddingHorizontal = 8; + this.btnSimStpsRslt.Name = "btnSimStpsRslt"; + this.btnSimStpsRslt.OptionGroup = "navBar"; + this.btnSimStpsRslt.Text = "Similar Steps"; // - this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image"))); - this.buttonItem1.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet; - this.buttonItem1.ImagePaddingHorizontal = 8; - this.buttonItem1.Name = "buttonItem1"; - this.buttonItem1.Text = "buttonItem19"; - this.buttonItem1.Tooltip = "Degree"; + // infotabResults + // + this.infotabResults.AttachedControl = this.annotationSearch; + this.infotabResults.Name = "infotabResults"; + this.infotabResults.Text = "Search"; // // frmVEPROMS // - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScroll = true; - this.ClientSize = new System.Drawing.Size(1122, 780); + this.ClientSize = new System.Drawing.Size(824, 574); this.Controls.Add(this.tc); + this.Controls.Add(this.infoPanel); + this.Controls.Add(this.searchPanel); this.Controls.Add(this.expandableSplitter3); this.Controls.Add(this.expandableSplitter2); this.Controls.Add(this.expandableSplitter1); - this.Controls.Add(this.infoPanel); this.Controls.Add(this.expandablePanel2); this.Controls.Add(this.epAnnotations); this.Controls.Add(this.bottomBar); @@ -1564,21 +1661,24 @@ 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(); + ((System.ComponentModel.ISupportInitialize)(this.itemAnnotationsBindingSource)).EndInit(); + this.searchPanel.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.searchTabControl)).EndInit(); + this.searchTabControl.ResumeLayout(false); + this.tabControlPanel2.ResumeLayout(false); + this.panelEx3.ResumeLayout(false); this.annotationSearch.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); - ((System.ComponentModel.ISupportInitialize)(this.itemAnnotationsBindingSource)).EndInit(); this.ResumeLayout(false); } @@ -1593,7 +1693,7 @@ namespace VEPROMS private DevComponents.DotNetBar.ButtonItem btnNew; private DevComponents.DotNetBar.ButtonItem btnOpen; private DevComponents.DotNetBar.ButtonItem btnSave; - private DevComponents.DotNetBar.ButtonItem buttonItem5; + private DevComponents.DotNetBar.ButtonItem btnPrepare; private DevComponents.DotNetBar.ButtonItem btnPrint; private DevComponents.DotNetBar.ButtonItem btnClose; private DevComponents.DotNetBar.ItemContainer icRecentDocs; @@ -1624,19 +1724,12 @@ namespace VEPROMS private DevComponents.DotNetBar.ButtonItem btnInsOvr; private DevComponents.DotNetBar.ButtonItem btnInsertMode; private DevComponents.DotNetBar.ButtonItem btnOverstrikeMode; - private DevComponents.DotNetBar.TabControlPanel tabControlPanel2; - private DevComponents.DotNetBar.TabItem infotabBookMarks; private DevComponents.DotNetBar.ButtonItem btnEditView; private DevComponents.DotNetBar.ButtonItem btnEditMode; private DevComponents.DotNetBar.ButtonItem btnViewMode; private DevComponents.DotNetBar.LabelItem labelItem9; private DevComponents.DotNetBar.LabelItem labelItem10; private DevComponents.DotNetBar.LabelItem labelItem11; - private DevComponents.DotNetBar.PanelEx panelEx4; - private DevComponents.DotNetBar.ButtonX btnSetBookMrk; - private DevComponents.DotNetBar.ButtonX btnRmvCurBookMrk; - private DevComponents.DotNetBar.ButtonX btnClrBookMrks; - private System.Windows.Forms.ListBox lbxBookMarks; private DevComponents.DotNetBar.SuperTooltip superTooltip1; private DevComponents.DotNetBar.ButtonItem btnMarkPrevPos; private DevComponents.DotNetBar.ButtonItem btnPrevPos; @@ -1666,13 +1759,7 @@ namespace VEPROMS private DevComponents.DotNetBar.ButtonItem btnViewPrcStp; private DevComponents.DotNetBar.ButtonItem btnViewBckgnd; private DevComponents.DotNetBar.ButtonItem btnViewDev; - private DevComponents.DotNetBar.TabControlPanel annotationSearch; - private DevComponents.DotNetBar.TabItem infotabResults; - private DevComponents.DotNetBar.NavigationPane navpaneResults; - private DevComponents.DotNetBar.NavigationPanePanel navpanSrchRslts; - private DevComponents.DotNetBar.ButtonItem btnSrchRslt; private DevComponents.DotNetBar.NavigationPanePanel navigationPanePanel2; - private DevComponents.DotNetBar.ButtonItem btnSimStpsRslt; private DevComponents.DotNetBar.TabControlPanel infotabControlPanelRO; private DevComponents.DotNetBar.TabItem infotabRO; private DevComponents.DotNetBar.TabControlPanel infotabControlPanelTransitions; @@ -1685,12 +1772,30 @@ namespace VEPROMS private DevComponents.DotNetBar.ButtonX btnAnnoDetailsPushPin; private DevComponents.DotNetBar.ButtonItem buttonItem1; private System.Windows.Forms.Timer tmrTreeView; - private Volian.Controls.Library.AnnotationSearch CtrlAnnotationSearch; private Volian.Controls.Library.AnnotationDetails ctrlAnnotationDetails; private DevComponents.DotNetBar.ButtonItem btnHelp; private DevComponents.DotNetBar.ButtonItem btnHelpManual; private DevComponents.DotNetBar.ButtonItem btnHelpAbout; private DevComponents.DotNetBar.ButtonItem btnHelpVWeb; + private DevComponents.DotNetBar.ButtonItem btnSaveAs; + private DevComponents.DotNetBar.ButtonItem btnAdmin; + private DevComponents.DotNetBar.ExpandablePanel searchPanel; + private DevComponents.DotNetBar.TabControl searchTabControl; + private DevComponents.DotNetBar.TabControlPanel annotationSearch; + private DevComponents.DotNetBar.NavigationPane navpaneResults; + private DevComponents.DotNetBar.NavigationPanePanel navpanSrchRslts; + private Volian.Controls.Library.AnnotationSearch CtrlAnnotationSearch; + private DevComponents.DotNetBar.ButtonItem btnSrchRslt; + private DevComponents.DotNetBar.NavigationPanePanel navigationPanePanel3; + private DevComponents.DotNetBar.ButtonItem btnSimStpsRslt; + private DevComponents.DotNetBar.TabItem infotabResults; + private DevComponents.DotNetBar.TabControlPanel tabControlPanel2; + private DevComponents.DotNetBar.PanelEx panelEx3; + private System.Windows.Forms.ListBox lbxBookMarks; + private DevComponents.DotNetBar.ButtonX btnClrBookMrks; + private DevComponents.DotNetBar.ButtonX btnRmvCurBookMrk; + private DevComponents.DotNetBar.ButtonX btnSetBookMrk; + private DevComponents.DotNetBar.TabItem infotabBookMarks; } } diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.cs b/PROMS/VEPROMS User Interface/frmVEPROMS.cs index 2e6dca42..5c55dae8 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.cs +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.cs @@ -8,11 +8,10 @@ using System.Drawing; using System.Text; using System.Windows.Forms; using VEPROMS.CSLA.Library; -using Csla; +//using Csla; using DevComponents; using DevComponents.DotNetBar; using DevComponents.DotNetBar.Rendering; -using Csla.Validation; using VEPROMS.Properties; using Volian.Controls.Library; using DescriptiveEnum; @@ -28,20 +27,8 @@ namespace VEPROMS #region Log4Net private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); #endregion - Folder _LastFolder = null; - FolderInfo _LastFolderInfo = null; - Procedure _LastProcedure = null; - ProcedureInfo _LastProcedureInfo = null; - DocVersion _LastDocVersion = null; - DocVersionInfo _LastDocVersionInfo = null; - SectionInfo _LastSectionInfo = null; - Section _LastSection = null; - VETreeNode _LastTreeNode = null; - Step _LastStep = null; - StepInfo _LastStepInfo = null; - ItemInfo _LastItemInfo = null; - Color _CommentTitleBckColor; StepRTB _MyRTB; + Color _CommentTitleBckColor; VETreeNode _PrevBookMark = null; string _PathToROs = @"G:\VEHLP\RO\RO.FST"; @@ -66,16 +53,15 @@ namespace VEPROMS VETreeNode tn = VETreeNode.GetFolder(1); tv.Nodes.Add(tn); - tv.NodeNew += new Volian.Controls.Library.vlnTreeViewTreeNodeEvent(tv_NodeNew); - tv.NodeDragDrop += new Volian.Controls.Library.vlnTreeViewEvent(tv_NodeDragDrop); - tv.NodeDelete += new Volian.Controls.Library.vlnTreeViewBoolEvent(tv_NodeDelete); - tv.NodeProperties += new Volian.Controls.Library.vlnTreeViewEvent(tv_NodeProperties); + tv.NodeOpenProperty += new vlnTreeViewPropertyEvent(tv_NodeOpenProperty); + tv.NodeSelect += new Volian.Controls.Library.vlnTreeViewEvent(tv_NodeSelect); _CommentTitleBckColor = epAnnotations.TitleStyle.BackColor1.Color; if (!btnAnnoDetailsPushPin.Checked) epAnnotations.Expanded = false; infoPanel.Expanded = false; } + private void frmVEPROMS_FormClosing(object sender, FormClosingEventArgs e) { // Save the location and size of the VE-PROMS appication for this user @@ -88,19 +74,12 @@ namespace VEPROMS SaveMRU(); //Settings.Default.Save(); } - - private void ShutDownRibbons() - { - //ribbonControl1.Height = 50; - } - private void frmVEPROMS_Load(object sender, EventArgs e) { // get the saved location and size of the VE-PROMS appication for this user if (Settings.Default["Location"] != null) this.Location = Settings.Default.Location; if (Settings.Default["Size"] != null) this.Size = Settings.Default.Size; if (Settings.Default["WindowState"] != null) this.WindowState = Settings.Default.WindowState; - ShutDownRibbons(); _MyMRIList = MostRecentItemList.GetMRILst((System.Collections.Specialized.StringCollection)(Properties.Settings.Default["MRIList"])); _MyBookMarks = MostRecentItemList.GetMRILst((System.Collections.Specialized.StringCollection)(Properties.Settings.Default["BookMarks"])); SetupMRU(); @@ -108,7 +87,6 @@ namespace VEPROMS CtrlAnnotationSearch.SetupAnnotationSearch(ctrlAnnotationDetails, tc); ctrlAnnotationDetails.SetupAnnotations(CtrlAnnotationSearch); } - #region MRU private MostRecentItemList _MyMRIList; private MostRecentItemList _MyBookMarks; @@ -150,10 +128,6 @@ namespace VEPROMS } } } -#if (DEBUG) - // to display a property page view - //private frmPropGrid f; -#endif void btnItem_Click(object sender, EventArgs e) { @@ -184,7 +158,8 @@ namespace VEPROMS { epAnnotations.Expanded = false; epAnnotations.TitleStyle.BackColor1.Color = _CommentTitleBckColor; - SetLastValues(node); + if (_MyMRIList.Add(node.VEObject) != null) + SetupMRU(); #region Sample Display Table Code // display an exiting table in that rtf grid thing //if ((_LastStepInfo.MyContent.Type == 20007) || (_LastStepInfo.MyContent.Type == 20009)) @@ -203,26 +178,16 @@ namespace VEPROMS // newtable4.ShowDialog(); //} #endregion - if (_LastItemInfo != null) tc.OpenItem(_LastItemInfo); + ItemInfo ii = node.VEObject as ItemInfo; + if (ii != null) tc.OpenItem(ii); SetCaption(node); } - private void SetLastValues(VETreeNode node) + // The following code is used to setup the user interface depending on what + // is selected on the tree view (see vlnTreeView.cs) + private void tv_NodeSelect(object sender, Volian.Controls.Library.vlnTreeEventArgs args) { - SaveIfChanged(); - _LastTreeNode = node; - _LastFolderInfo = _LastTreeNode.VEObject as FolderInfo; - _LastFolder = _LastFolderInfo == null ? null : _LastFolderInfo.Get(); - _LastDocVersionInfo = node.VEObject as DocVersionInfo; - _LastDocVersion = _LastDocVersionInfo == null ? null : _LastDocVersionInfo.Get(); - _LastProcedureInfo = _LastTreeNode.VEObject as ProcedureInfo; - _LastProcedure = _LastProcedureInfo == null ? null : _LastProcedureInfo.Get(); - _LastSectionInfo = _LastTreeNode.VEObject as SectionInfo; - _LastSection = _LastSectionInfo == null ? null : _LastSectionInfo.Get(); - _LastStepInfo = _LastTreeNode.VEObject as StepInfo; - _LastStep = _LastStepInfo == null ? null : _LastStepInfo.Get(); - _LastItemInfo = _LastTreeNode.VEObject as ItemInfo; + SetupNodes((VETreeNode)args.Node); } - private void SetCaption(VETreeNode tn) { StringBuilder caption = new StringBuilder(); @@ -238,104 +203,7 @@ namespace VEPROMS } this.Text = caption.ToString(); } - - bool tv_NodeDelete(object sender, Volian.Controls.Library.vlnTreeEventArgs args) - { - SetupNodes((VETreeNode)args.Node); - if (_LastTreeNode.Nodes.Count > 0) - { - MessageBox.Show("Folder not empty", "Folder must be empty"); - return false; - } - else - { - if (_LastFolderInfo != null) - { - DialogResult result = MessageBox.Show("Are you sure you want to delete " + _LastFolderInfo.Name, "Verify Folder Delete", - MessageBoxButtons.YesNo, MessageBoxIcon.Question); - if (result == DialogResult.Yes) - { - Folder.Delete(_LastFolderInfo.FolderID); - return true; - } - } - else - { - MessageBox.Show("Not a folder", "Only Folder can be deleted"); - } - } - return false; - } - - bool IsFolder(VETreeNode veTreeNode) - { - return (veTreeNode.VEObject.GetType() == typeof(FolderInfo)); - } - - void tv_NodeDragDrop(object sender, Volian.Controls.Library.vlnTreeEventArgs args) - { - VETreeNode drag = (VETreeNode)args.Node; - VETreeNode drop = (VETreeNode)args.Destination; - if (IsFolder(drag) && IsFolder(drop)) - { - FolderInfo fdragi = (FolderInfo)(drag.VEObject); - Folder fdrag = fdragi.Get(); - FolderInfo fdropi = (FolderInfo)(drop.VEObject); - fdrag.MyParent = fdropi.Get(); - fdrag.Save(); - } - } - - TreeNode tv_NodeNew(object sender, Volian.Controls.Library.vlnTreeEventArgs args) - { - SaveIfChanged(); - FolderInfo fldi = (FolderInfo)((VETreeNode)(args.Node)).VEObject; - _LastFolder = Folder.MakeFolder(fldi.Get(), fldi.Get().MyConnection, "New Folder", string.Empty, "Short Name", null, string.Empty, DateTime.Now, "Test"); - BrokenRulesCollection brs = _LastFolder.BrokenRulesCollection;// .BrokenRules(); - if (brs != null) - { - foreach (BrokenRule br in brs) - { - Console.WriteLine("broken rule {0}", br.Description); - } - } - _LastFolderInfo = FolderInfo.Get(_LastFolder.FolderID); - VETreeNode tn = new VETreeNode((IVEDrillDownReadOnly)_LastFolderInfo); - SetupNodes(tn); - return tn; - } - - private void SaveIfChanged() - { - SaveIfChanged(_LastFolder); - SaveIfChanged(_LastDocVersion); - SaveIfChanged2(_LastProcedure); - SaveIfChanged2(_LastSection); - SaveIfChanged2(_LastStep); - if (_LastTreeNode != null) _LastTreeNode.ResetNode(); - } - - private void SaveIfChanged(BusinessBase tmp) - where T : BusinessBase - { - if (tmp == null) return; - if (tmp.IsDirty == false) return; - if (tmp.IsSavable) - tmp = tmp.Save(); - else - { - foreach (Csla.Validation.BrokenRule br in tmp.BrokenRulesCollection) - { - Console.WriteLine("{0}", br.RuleName); - } - } - } - - private void SaveIfChanged2(Item tmp) - { - SaveIfChanged(tmp); - } - + /// /// When the treeview is clicked - a timer is set /// This is done because the focus is returned to the treeview after the click event @@ -358,17 +226,6 @@ namespace VEPROMS VETreeNode tn = tv.SelectedNode as VETreeNode; if (tn != null) SetupNodes(tn); } - - private void tv_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - //tv_Click(sender, new EventArgs()); - OpenNode(tv.SelectedNode as VETreeNode); - e.Handled = true; - } - } - private void tv_BeforeExpand(object sender, TreeViewCancelEventArgs e) { VETreeNode tn = ((VETreeNode)e.Node); @@ -378,45 +235,239 @@ namespace VEPROMS tn.LoadingChildrenSQL += new VETreeNodeEvent(tn_LoadingChildrenSQL); tn.LoadChildren(true); } - - void tv_NodeProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args) - { - DisplayProperties(); - } - - #endregion #region Property Page and Grid - + DialogResult tv_NodeOpenProperty(object sender, vlnTreePropertyEventArgs args) + { + this.Cursor = Cursors.WaitCursor; + DialogResult dr = DialogResult.Cancel; + if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid) + { + frmPropGrid propGrid = new frmPropGrid(args.ConfigObject, args.Title); + dr = propGrid.ShowDialog(); + } + else + { + if (args.FolderConfig != null) + { + frmFolderProperties frmfld = new frmFolderProperties(args.FolderConfig); + dr = frmfld.ShowDialog(); + } + else if (args.DocVersionConfig != null) + { + frmVersionsProperties frmver = new frmVersionsProperties(args.DocVersionConfig); + dr = frmver.ShowDialog(); + } + else if (args.ProcedureConfig != null) + { + frmProcedureProperties frmproc = new frmProcedureProperties(args.ProcedureConfig); + dr = frmproc.ShowDialog(); + } + else if (args.SectionConfig != null) + { + frmSectionProperties frmsec = new frmSectionProperties(args.SectionConfig); + dr = frmsec.ShowDialog(); + } + } + this.Cursor = Cursors.Default; + return dr; + } + void tv_NodeFolderProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args) + { + + FolderInfo fi = ((VETreeNode)args.Node).VEObject as FolderInfo; + DialogResult dr = DialogResult.Cancel; + + if (dr == DialogResult.OK) fi.Get().Save(); + + } + void tv_NodeDocVersionProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args) + { + this.Cursor = Cursors.WaitCursor; + DocVersionInfo dvi = ((VETreeNode)args.Node).VEObject as DocVersionInfo; + if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid) + { + frmPropGrid propGrid = new frmPropGrid(dvi.DocVersionConfig, string.Format("{0} Properties", dvi.DocVersionConfig.Name)); + if (propGrid.ShowDialog() == DialogResult.OK) + dvi.Get().Save(); + } + else + { + frmVersionsProperties frmver = new frmVersionsProperties(dvi.DocVersionConfig); + if (frmver.ShowDialog() == DialogResult.OK) + dvi.Get().Save(); + } + this.Cursor = Cursors.Default; + } + void tv_NodeProcProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args) + { + this.Cursor = Cursors.WaitCursor; + ProcedureInfo pi = ((VETreeNode)args.Node).VEObject as ProcedureInfo; + if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid) + { + frmPropGrid propGrid = new frmPropGrid(pi.ProcedureConfig, string.Format("{0} {1} Properties", pi.ProcedureConfig.Number, pi.ProcedureConfig.Title)); + if (propGrid.ShowDialog() == DialogResult.OK) + pi.Get().Save(); + } + else + { + frmProcedureProperties frmproc = new frmProcedureProperties(pi.ProcedureConfig); + if (frmproc.ShowDialog() == DialogResult.OK) + pi.Get().Save(); + } + this.Cursor = Cursors.Default; + } + void tv_NodeSectProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args) + { + this.Cursor = Cursors.WaitCursor; + SectionInfo si = ((VETreeNode)args.Node).VEObject as SectionInfo; + if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid) + { + string title = null; + if (si.SectionConfig.Number.Length > 0) + title = string.Format("{0} {1} Properties", si.SectionConfig.Number, si.SectionConfig.Title); + else + title = string.Format("{0} Properties", si.SectionConfig.Title); + frmPropGrid propGrid = new frmPropGrid(si.SectionConfig, title); + if (propGrid.ShowDialog() == DialogResult.OK) + si.Get().Save(); + } + else + { + frmSectionProperties frmsec = new frmSectionProperties(si.SectionConfig); + if (frmsec.ShowDialog() == DialogResult.OK) + si.Get().Save(); + } + this.Cursor = Cursors.Default; + } + private void btnProperties_Click(object sender, EventArgs e) + { + if (tv.SelectedNode == null) MessageBox.Show("Must select a node on the Tree to get properties"); + //Determine type of selected tree view node & handle based on that. + VETreeNode tn = (VETreeNode)(tv.SelectedNode); + if ((tn.VEObject as FolderInfo) != null) + tv_NodeFolderProperties(null, new vlnTreeEventArgs(tv.SelectedNode)); + else if ((tn.VEObject as DocVersionInfo) != null) + tv_NodeDocVersionProperties(null, new vlnTreeEventArgs(tv.SelectedNode)); + else if ((tn.VEObject as ProcedureInfo) != null) + tv_NodeProcProperties(null, new vlnTreeEventArgs(tv.SelectedNode)); + else if ((tn.VEObject as SectionInfo) != null) + tv_NodeSectProperties(null, new vlnTreeEventArgs(tv.SelectedNode)); + else + MessageBox.Show("Properties not available for this Tree selection"); + } /// // this is used by tv_NodeProperties() and by ribbonFilePropertes_Click() // the type of the args parameter for these two functions is different and // type casting didn't work, so I put the guts in this function. /// - private void DisplayProperties() - { - // check the user's preference on the style of poperty dialogs "PropPageStyle" - // 1 - Button dialog interface - // 2 - Tab dialog interface - // 3 - Property Grid interface - SetLastValues((VETreeNode)(tv.SelectedNode)); - this.Cursor = Cursors.WaitCursor; - if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid) - DoPropertyGrid(); // Will display a Property Grid interface - else - DoPropertyPages(); // Will display either a Button or a Tab dialog - this.Cursor = Cursors.Default; - } - + // TODO: DeleteMe + //void tv_NodeProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args) + //{ + // DisplayProperties(); + //} + //private void DisplayProperties() + //{ + // // check the user's preference on the style of poperty dialogs "PropPageStyle" + // // 1 - Button dialog interface + // // 2 - Tab dialog interface + // // 3 - Property Grid interface + // //SetLastValues((VETreeNode)(tv.SelectedNode)); + // this.Cursor = Cursors.WaitCursor; + // if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid) + // DoPropertyGrid(); // Will display a Property Grid interface + // else + // DoPropertyPages(); // Will display either a Button or a Tab dialog + // this.Cursor = Cursors.Default; + //} + /// + /// Display a Property Page for the current tree node + /// + //private void DoPropertyPages() + //{ + // // Display a property page. (the ppStyle selects either a tabbed or button interface) + // VETreeNode tn = (VETreeNode)(tv.SelectedNode); + // if ((tn.VEObject as FolderInfo) != null) + // { + // FolderInfo fi = tn.VEObject as FolderInfo; + // frmFolderProperties frmfld = new frmFolderProperties(fi.FolderConfig); + // if (frmfld.ShowDialog() == DialogResult.OK) + // fi.Get().Save(); + // } + // else if ((tn.VEObject as DocVersionInfo) != null) + // { + // DocVersionInfo dvi = tn.VEObject as DocVersionInfo; + // frmVersionsProperties frmver = new frmVersionsProperties(dvi.DocVersionConfig); + // if (frmver.ShowDialog() == DialogResult.OK) + // dvi.Get().Save(); + // } + // else if ((tn.VEObject as ProcedureInfo) != null) + // { + // ProcedureInfo pi = tn.VEObject as ProcedureInfo; + // frmProcedureProperties frmproc = new frmProcedureProperties(pi.ProcedureConfig); + // if (frmproc.ShowDialog() == DialogResult.OK) + // pi.Get().Save(); + // } + // else if ((tn.VEObject as SectionInfo) != null) + // { + // SectionInfo si = tn.VEObject as SectionInfo; + // frmSectionProperties frmsec = new frmSectionProperties(si.SectionConfig); + // if (frmsec.ShowDialog() == DialogResult.OK) + // si.Get().Save(); + // } + //} + /// + /// Display a property grid for the current tree node + /// + //private void DoPropertyGrid() + //{ + // // Display a property grid + // VETreeNode tn = (VETreeNode)(tv.SelectedNode); + // frmPropGrid propGrid = null; + // string title = ""; + // if ((tn.VEObject as FolderInfo) != null) + // { + // FolderInfo fi = tn.VEObject as FolderInfo; + // title = string.Format("{0} Properties", fi.FolderConfig.Name); + // propGrid = new frmPropGrid(fi.FolderConfig, title); + // if (propGrid.ShowDialog() == DialogResult.OK) + // fi.Get().Save(); + // } + // else if ((tn.VEObject as DocVersionInfo) != null) + // { + // DocVersionInfo dvi = tn.VEObject as DocVersionInfo; + // title = string.Format("{0} Properties", dvi.DocVersionConfig.Name); + // propGrid = new frmPropGrid(dvi.DocVersionConfig, title); + // if (propGrid.ShowDialog() == DialogResult.OK) + // dvi.Get().Save(); + // } + // else if ((tn.VEObject as ProcedureInfo) != null) + // { + // ProcedureInfo pi = tn.VEObject as ProcedureInfo; + // title = string.Format("{0} {1} Properties", pi.ProcedureConfig.Number, pi.ProcedureConfig.Title); + // propGrid = new frmPropGrid(pi.ProcedureConfig, title); + // if (propGrid.ShowDialog() == DialogResult.OK) + // pi.Get().Save(); + // } + // else if ((tn.VEObject as SectionInfo) != null) + // { + // SectionInfo si = tn.VEObject as SectionInfo; + // if (si.SectionConfig.Number.Length > 0) + // title = string.Format("{0} {1} Properties", si.SectionConfig.Number, si.SectionConfig.Title); + // else + // title = string.Format("{0} Properties", si.SectionConfig.Title); + // propGrid = new frmPropGrid(si.SectionConfig, title); + // if (propGrid.ShowDialog() == DialogResult.OK) + // si.Get().Save(); + // } + //} /// /// Button from the Ribbon Bar /// /// object /// EventArgs - private void btnProperties_Click(object sender, EventArgs e) - { - DisplayProperties(); - } - + #endregion + #endregion + #region ColorStuff /// /// Get a System.Drawing.Color from an Argb or color name /// @@ -448,7 +499,6 @@ namespace VEPROMS } return rtnColor; } - //private void SetupEditorColors(DisplayPanel vlnCSLAPanel1, TabPage pg) //{ // // setup color @@ -475,84 +525,9 @@ namespace VEPROMS // pg.BackColor = vlnCSLAPanel1.InactiveColor; // } //} - - /// - /// Display a Property Page for the current tree node - /// - private void DoPropertyPages() - { - // Display a property page. (the ppStyle selects either a tabbed or button interface) - //VETreeNode tn = (VETreeNode)(tv.SelectedNode); - if (_LastFolder != null) - { - frmFolderProperties frmfld = new frmFolderProperties(_LastFolder.FolderConfig); - if (frmfld.ShowDialog() == DialogResult.OK) - _LastFolder.Save(); - } - else if (_LastDocVersion != null) - { - frmVersionsProperties frmver = new frmVersionsProperties(_LastDocVersion.DocVersionConfig); - if (frmver.ShowDialog() == DialogResult.OK) - _LastDocVersion.Save(); - } - else if (_LastProcedure != null) - { - frmProcedureProperties frmproc = new frmProcedureProperties(_LastProcedure.ProcedureConfig); - if (frmproc.ShowDialog() == DialogResult.OK) - _LastProcedure.Save(); - } - else if (_LastSection != null) - { - frmSectionProperties frmsec = new frmSectionProperties(_LastSection.SectionConfig); - if (frmsec.ShowDialog() == DialogResult.OK) - _LastSection.Save(); - } - } - - /// - /// Display a property grid for the current tree node - /// - private void DoPropertyGrid() - { - // Display a property grid - //VETreeNode tn = (VETreeNode)(tv.SelectedNode); - frmPropGrid propGrid = null; - string title = ""; - if (_LastFolder != null) - { - title = string.Format("{0} Properties", _LastFolder.FolderConfig.Name); - propGrid = new frmPropGrid(_LastFolder.FolderConfig, title); - if (propGrid.ShowDialog() == DialogResult.OK) - _LastFolder.Save(); - } - else if (_LastDocVersion != null) - { - title = string.Format("{0} Properties", _LastDocVersion.DocVersionConfig.Name); - propGrid = new frmPropGrid(_LastDocVersion.DocVersionConfig, title); - if (propGrid.ShowDialog() == DialogResult.OK) - _LastDocVersion.Save(); - } - else if (_LastProcedure != null) - { - title = string.Format("{0} {1} Properties", _LastProcedure.ProcedureConfig.Number, _LastProcedure.ProcedureConfig.Title); - propGrid = new frmPropGrid(_LastProcedure.ProcedureConfig, title); - if (propGrid.ShowDialog() == DialogResult.OK) - _LastProcedure.Save(); - } - else if (_LastSection != null) - { - if (_LastSection.SectionConfig.Number.Length > 0) - title = string.Format("{0} {1} Properties", _LastSection.SectionConfig.Number, _LastSection.SectionConfig.Title); - else - title = string.Format("{0} Properties", _LastSection.SectionConfig.Title); - propGrid = new frmPropGrid(_LastSection.SectionConfig, title); - if (propGrid.ShowDialog() == DialogResult.OK) - _LastSection.Save(); - } - } - #endregion #region Table Insert Sample Code + // TODO: for tables //private void btnInsTable_Click(object sender, EventArgs e) //{ // Point loc = btnInsTable.DisplayRectangle.Location; @@ -782,12 +757,6 @@ namespace VEPROMS { _MyBookMarks.Clear(); RefreshBookMarkData(); - //lbxBookMarks.Items.Clear(); - //lbxBookMarks.Enabled = false; - //btnPrevPos.Enabled = false; - //btnClrBookMrks.Enabled = false; - //btnRmvCurBookMrk.Enabled = false; - //_PrevBookMark = null; } private void RefreshBookMarkData() @@ -807,19 +776,11 @@ namespace VEPROMS { _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 + /// TODO: Add a menu item to tree view context menu for adding to book mark list. /// /// //private void AddToBookMarkList(VETreeNode bkmrk) @@ -838,89 +799,13 @@ namespace VEPROMS StepTabPanel dtp = ((DisplayTabItem)tc.SelectedDisplayTabItem).MyStepTabPanel; _MyBookMarks.Add(dtp.SelectedStepItem.MyItemInfo); RefreshBookMarkData(); - //VETreeNode tn = (VETreeNode)(tv.SelectedNode); - //AddToBookMarkList(tn); - //_PrevBookMark = tn; - //lbxBookMarks.Enabled = true; - //btnPrevPos.Enabled = true; - //btnClrBookMrks.Enabled = true; - //btnRmvCurBookMrk.Enabled = true; } - - #endregion - #region DisplayPanel - - /// - /// Jump to the location referenced by the transition - /// - /// - private void OpenTransition(ItemInfo item) + private void lbxBookMarks_Click(object sender, EventArgs e) { - tc.OpenItem(item); + MostRecentItem itm = lbxBookMarks.SelectedValue as MostRecentItem; + tc.OpenItem(itm.MyItemInfo); } - - //private void OpenItem(ItemInfo item) - //{ - // DisplayPanel vlnCSLAPanel1 = AddProcedureTab(item.MyProcedure); - // vlnCSLAPanel1.ItemSelect(item); - //} - - private void vlnCSLAPanel1_LinkClicked(object sender, StepPanelLinkEventArgs args) - { - switch (args.MyLinkText.MyParsedLinkType) - { - case ParsedLinkType.ReferencedObject: - MessageBox.Show(args.MyLinkText.Roid, args.MyLinkText.MyParsedLinkType.ToString(), MessageBoxButtons.OK, MessageBoxIcon.Information); - break; - case ParsedLinkType.Transition: - case ParsedLinkType.TransitionRange: - tc.OpenItem(args.MyLinkText.MyTransitionInfo.MyItemToID); - break; - } - } - - //private DisplayPanel GetPanelFromPage(TabPage tp) - //{ - // return (DisplayPanel)tp.Controls["vlnCSLAPanel1"]; - //} - - //private DisplayPanel AddProcedureTab(ItemInfo pi) - //{ - // if (tc.TabPages.ContainsKey(pi.MyContent.Number)) - // { - // tc.SelectTab(pi.MyContent.Number); - // return GetPanelFromPage(tc.SelectedTab); - // } - // else - // { - // TabPage pg = new TabPage(pi.MyContent.Number); - // pg.Name = pi.MyContent.Number; - // tc.TabPages.Add(pg); - // tc.SelectedTab = pg; - // DisplayPanel vlnCSLAPanel1 = new Volian.Controls.Library.DisplayPanel(this.components); - // pg.Controls.Add(vlnCSLAPanel1); - // // - // // vlnCSLAPanel1 - // // - // vlnCSLAPanel1.ActiveColor = System.Drawing.Color.SkyBlue; - // vlnCSLAPanel1.AutoScroll = true; - // vlnCSLAPanel1.Dock = System.Windows.Forms.DockStyle.Fill; - // vlnCSLAPanel1.InactiveColor = System.Drawing.Color.Linen; - // vlnCSLAPanel1.Name = "vlnCSLAPanel1"; - // vlnCSLAPanel1.PanelColor = System.Drawing.Color.LightGray; - // vlnCSLAPanel1.ProcFont = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold); - // vlnCSLAPanel1.SectFont = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold); - // vlnCSLAPanel1.StepFont = new System.Drawing.Font("Arial", 10F); - // vlnCSLAPanel1.TabColor = System.Drawing.Color.Beige; - // SetupEditorColors(vlnCSLAPanel1,pg); // check for overridden color values - // vlnCSLAPanel1.TabIndex = 9; - // vlnCSLAPanel1.LinkClicked += new Volian.Controls.Library.DisplayPanelLinkEvent(this.vlnCSLAPanel1_LinkClicked); - // vlnCSLAPanel1.MyItem = pi; - // return vlnCSLAPanel1; - // } - //} #endregion - #region Find/Replace and Search /// @@ -992,7 +877,6 @@ namespace VEPROMS } #endregion - #region Ribbon /// /// This Opens the treeView or opens the selected item in the TreeView @@ -1004,33 +888,42 @@ namespace VEPROMS if (!expandablePanel2.Expanded) // If panel not expanded - expand it. { expandablePanel2.Expanded = true; - if(tv.Nodes.Count > 0)tv.SelectedNode = tv.Nodes[0]; + if(tv.Nodes.Count > 0 && tv.SelectedNode==null) + tv.SelectedNode = tv.Nodes[0]; tv.Focus(); } else { - VETreeNode tn = (VETreeNode)(tv.SelectedNode); - OpenNode(tn); + // TODO: DeleteMe + //VETreeNode tn = (VETreeNode)(tv.SelectedNode); + tv.OpenNode(); } } - - private void OpenNode(VETreeNode tn) + private void btnNew_Click(object sender, EventArgs e) { - if (tn != null) - { - if (tn.VEObject.GetType() == typeof(FolderInfo) || tn.VEObject.GetType() == typeof(DocVersionInfo)) - { - if (tn.Nodes.Count > 0) - { - tn.Expand(); - tv.SelectedNode = tn.Nodes[0]; - tv.Focus(); - } - } - else - SetupNodes(tn); - } + if (!expandablePanel2.Expanded) return; + // TODO: Need vlntreeview method to determine type + + tv.tv_NodeNew(vlnTreeView.MenuSelections.None); } + // TODO: DeleteMe + //private void OpenNode(VETreeNode tn) + //{ + // if (tn != null) + // { + // if (tn.VEObject.GetType() == typeof(FolderInfo) || tn.VEObject.GetType() == typeof(DocVersionInfo)) + // { + // if (tn.Nodes.Count > 0) + // { + // tn.Expand(); + // tv.SelectedNode = tn.Nodes[0]; + // tv.Focus(); + // } + // } + // else + // SetupNodes(tn); + // } + //} /// /// Options button on the dialog that appears when the V icon is clicked (top left of application window) /// note that the "V icon" is also called the Office 2007 Start Button @@ -1146,7 +1039,7 @@ namespace VEPROMS private void btnSave_Click(object sender, EventArgs e) { } - + #region LinkSupport private void tc_LinkActiveChanged(object sender, StepPanelLinkEventArgs args) { // determine if any infotabs are visisble, and if it is the Transition, @@ -1156,14 +1049,12 @@ namespace VEPROMS displayTransition.CurTrans = null; } } - private void tc_LinkInsertTran(object sender, StepPanelLinkEventArgs args) { infoPanel.Expanded = true; infoTabs.SelectedTab = infotabTransition; displayTransition.CurTrans = null; } - private void tc_LinkInsertRO(object sender, StepPanelLinkEventArgs args) { infoPanel.Expanded = true; @@ -1175,7 +1066,6 @@ namespace VEPROMS displayRO.MyRTB = dtp.MyStepPanel.SelectedStepItem.MyStepRTB; displayRO.CurROLink = null; } - private void tc_LinkModifyTran(object sender, StepPanelLinkEventArgs args) { infoPanel.Expanded = true; @@ -1185,7 +1075,6 @@ namespace VEPROMS displayTransition.MyRTB = dtp.MyStepPanel.SelectedStepItem.MyStepRTB; displayTransition.CurTrans = args.MyLinkText.MyTransitionInfo; } - private void tc_LinkModifyRO(object sender, StepPanelLinkEventArgs args) { infoPanel.Expanded = true; @@ -1197,11 +1086,6 @@ namespace VEPROMS displayRO.MyRTB = dtp.MyStepPanel.SelectedStepItem.MyStepRTB; displayRO.CurROLink = args.MyLinkText.RoUsageid; // this is wrong - use for now. } - - private void lbxBookMarks_Click(object sender, EventArgs e) - { - MostRecentItem itm = lbxBookMarks.SelectedValue as MostRecentItem; - tc.OpenItem(itm.MyItemInfo); - } + #endregion } } diff --git a/PROMS/VEPROMS User Interface/frmVEPROMS.resx b/PROMS/VEPROMS User Interface/frmVEPROMS.resx index f6d87f64..343482f5 100644 --- a/PROMS/VEPROMS User Interface/frmVEPROMS.resx +++ b/PROMS/VEPROMS User Interface/frmVEPROMS.resx @@ -118,6 +118,77 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEQAA + CxEBf2RfkQAAAjNJREFUOE+lk01rE1EUhvUf5CfkJxQFF66ydDloA1lGcNGFSnAhQRCHghAMakSKBktn + rIqNpDqb2hitHdFWi0gHazW2YZKWqGkzTa9OlX5oXs+5k8407cKFFw733Mt5n/Mxd/YD2PdfiwG7bWLG + xZ3iMlJ3K+gdmENfvoyRV18obG9sh/i9vY7ceBNacQnVxia+r21BuJvkb+ByroSUZqH4erED5ANY/MBc + hfOzBdMC1CFASXnGvmkJ2KstXOibxMiLsg/xAZx55VcLuglEkoBeAMQ6xwFVASRu8p1AhSBn0s86ARMf + 1vB4uikzs5iDeRlvgHjG2xkWSQryBbTCR2RzbyVEVnDvaQNfxW9ZaiThlZ0xgC7ywz0CiQyVQEtRBeIp + C3O2i+PnhgNA+v6iHJiieqKuHs/CZHESc3azJBBWTIRjJuqOi0PR6wHg4m2bpr0ly/eEFBwXVImX2TDp + TMKQYtBuoN74gQPK1QCQfVjBgrNBvXvCcKwqLTPkAUKKReYBlKSJUrmG7lN6ABid/IaC5cgBsTAUY4FF + LVVpLnRm8RFDml6oYrgwi0u3xgIADzI9OIN55w9lbQtIxL6soC1WdQuflx0cO6l1fkYGjE3V0Judgt2k + t0BZFNWSfbOxz3fztRVEqfSBPH3X9rPueMqjLys4e2Uc+pNPmJ5dwBJNu95wZc9cdjdl1naI/XewTdve + +/PvcOL8IxyO3cDBo9cQPT2IdP9zP+vO+D1/4m7Yv85/AYwH2NXcJ7xZAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA + EnEB89x6jgAAAldJREFUOE+Nk91PUnEYx4E27/sDuu2q7rrpos3mWv0BratWa2urluuiLaerC6cXsbHZ + elHUWavmC9qAlR6zDA0wA6NA3gSBhMjMgyIICJ63b88PFhtCW2d7dn5n5/l+ns/vd3bUAFTs0k7EKosD + l1qjUUmlkupQU5NKo5JVbReOqmtaGIDV/fEo3QBRAUoiUBAUZEsK0nsKtnIy2Pu2SZ61lPv/VnXBGkQZ + KFI4v0/hooLtgoIUhTeyMlpGi+VqfhSvgdQAigKQo6kZNjWv4KMnBaM1CUc4C1cA5ZqYLKC1fbwKqQHs + MmWaavfyOH5+DIdPDVbrbCsHV2wP/l8S3jvzjQHbBRl8TqmGr3bbMGZJ4kqXtQw6c5OD56cEy9dcYwBP + +51z8zh52YhjZBBNSQhvyghuyFWTLwkycP0DsJ5RkEjLWNuSEUnJCFE4QMod/e4yoOUGh89rIt46d+sN + ul8GEKdwjIV5CSu/JfgofKmzon/k3HMMWzdhj4ngHA0AnUNuxEh5lWfKlXC7vjL5xEUjzEs7sEVFzEcE + vP6UrTe41+tAiKYyZe+6hG9JiZSnygCtIQJrVMBcWMRsSIDZnqkHdDywwU+Tl+mUWXiJDmuElJ+8SYBb + LuDDqoB3KyKmAyJeWRsA7mhn4aaw64cEZ1zE4ncRp69XDHrMCcwEBXAB0vcJMMzv1Bvc7uLAPpGDwgsU + ZvttvlYB6EwJTPkp7N2HySNgxJKuB9y6a8JTYxiDhiD6R33QD3sx8MIF/TMn+oYW0TuwgMd9VugeTkPX + M1MPOPiX/e/zH+FgAbUYRYuJAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA + EnEB89x6jgAAAo1JREFUOE+lke1LU2EYxu2v6D8IgkKIIMIg8kMtlRQjskkGc03NN1j2YpYFMYmpuTXn + 0rItU8wyQ2TqamjpUGwYCr5sJtN0tXd1O9vZjjvr6rzk9ODHbngOz/1cz/27r+c+BwCk/FewgL2rotWB + mjdreNjtxW2DF1LVEm7UT6C6ycRcE97lmu8clmrtkOtX0DjggmWZxJKLwqqXhsNF4sv0GpR6Cy5WGiC5 + /1YA4gAy1TzkLx3omfSDZuV/sRWhsRmJc1kwHEP34DRyytogrjIkIRygRDOHZwNre0oBV4DEyfJJHJd9 + hm+DSGrtvePIkGmRJ2/nIClS5TfcaZthrG4KANvxBBQd81AYZhGjeBd8xCCteY3MYi0PKKwbQ32HVVDM + Jr+9JGZ++OD0hZLaNkUx+yhMo1bGRTMPyKvuR3PPfsDHrytIvWpCdpUZngD/BDpOg44RsC3YkVvawgMu + Vxuhe/99nwOrzY0T4jGclgxh3bfB6YkEjWgkCOeqA5cqn/OA/AfDaOy0MuIfAWRm2YtT+WaIioxwbwY5 + LU7TIIJ+2GyLyC3T8YAK5TAetYyAHdreWPgZQFquCVlSIwiK5KQQQYAMeTBstuCcVMMDlPpxVDUYYbLY + BYCJOS8OHnuHQ+ldWA/wgwz4PCCDTpTU6ncBLEVeb8Q91SCCkWgS0jVkw+HsLhzJ6cAH8yIzQeYZUTe6 + +z4h/VoTM4MXvAP2w65yRR+etA7B6XYz6TYSFIEwtYFw2A8i4AYVcqLfOAKRVI3z1/lfKACwyZWbr1Bw + V49aVS+mpmcRJX5hy7+K0bEJ3KrrhKhQjcyi3eJ9APYgq1iHDKZDmrgBRy88RmqOAmcKniJTpsFZiTrZ + ecfBX3S4BezexVqUAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEQAA + CxEBf2RfkQAAAwtJREFUOE99kmtMklEYx+t7a6v5qWYfal281Lob1rqoqSU0o0wzyxRDUUmszEkgmmFR + vhiCeAsSrAwnhWihfcjpcN106lRWK2GFU4c11zQTsP69L84vUj3b/5yd/Z/nt/M85ywFsIQKRV2rL7md + IBUxNze3w+V2L3G53D1Ol6vNOevU3+az7J7ExUEB5FoTjZShpEUPeY8OZZZqyD4V4mJ7NJJKCWTmlxtS + rhI0KnexqGJfqvjaMylufsjD86/t6J6xIk0ngOR9DpL0oQgrkuEMV2w4wc73/RuAl6dVIfnVLihtuTB9 + NePt1ACGfk7g0YgB5xXXcVAxhL3iAkQl5vL+BjAlSB+C3cpEoSUeNZ8JqO3XIe9Tg133GCnl33BKYoNf + 9TEcjs02eQFK1c2ONLkVzEoWErsOIv1NGLiqy+Dcfw5WeT/Ol4xgt7wO62rDsZ+Z4fACSKqeOLJUbsTn + i3BIE4yQZibiZATSFSNIlo4iVvwR69WJWFMRDBoj1RtQpNCZMiu/gVMxjlO8BIQpE7CnMR60WjlOi62I + Fg4glENHYO4B7DrC8m5BQGh5WUQHLiidSCI+IepKKrZpouFXdxQbywSIuNqNYE469sXEUQDvIV4R3/Pl + Uu98x4IMog15ynrklKpxli/F2ltBCErjgMEmwC2s+VJU0TQqlDXaLxVrNWy+kuH5hNTCJ+qvVenaZ/s+ + jGB65jfGJ51oetmPTJEK9FQRKurbsdjLLlKPRZ4TxngANyqNRovVgQyBYnjVdubU1shUd3FVyy+1oRvl + uq65hhcDUDaYp1bvPGnZHM4e5Jc86lQ1mkE7zjMuAKZ/kaTlm47Y/EKS/av173p+k+fJH4B13Imej9/R + 0TeBlYEMIiZT4i9SNNk6escQEMqa9gDIvozmXiu4oqpOMmFQWPZ0cEUA3b1sQwQWtCWMNbrg3dW+7LxR + 2YI1QbHzN7h0UxsjkjWMPTC+RmevHc/MwxDK9Ag+nj1GZxVI/+X5BDLmZ0AplithRCYKNWRf9oDQZDtJ + 1/hsZngm/T/vD258f33XdTumAAAAAElFTkSuQmCC + + R0lGODlhGwAVAPcAANmsrP7+/tqtrdmrq9Wjo9uwsNmtrf79/dSgoP/+/tShodalpdqsrN20tN64uNqv @@ -147,8 +218,8 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAABEVJREFUWEfNV9tOlFcY/e56ZdMn6Cv4FD5AY7VWrVbFEyPtrRdNTJrGZ+g71BLjRdNo + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAABEVJREFUWEfNV9tOlFcY/e56ZdMn6Cv4FD5AY7VWrVbFEyPtrRdNTJrGZ+g71BLjRdNo bBPTtLYesCgUOXigOAKOMwNyHOBfXWvP/obNwGwghqQ7WSGBP986fN8+YPa/Wgdv1+zTX2GH7hC/wQ7/ DvvsLuzIX7DP78OOPiQewY71w44/gX0xSAzBTgzDTo4QY7Avn8NOvSDGa3Z64uTu/JH8wSTeGz8OApd/ Wsa+Uhl2prwLEXQ+8Abvjd5+4MD3wDc/N7Dv0hSsa2qHIhj7aA0B/1SAx9PAE0KiBgn9Thginr5tYjhi @@ -172,8 +243,8 @@ iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAAz9JREFUWEftl2tIk2EUxyXCEs0Ki8hkVtrKCvxQGFSmeJnm1MQuQlJiikJSU3CaZm1K + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAAz9JREFUWEftl2tIk2EUxyXCEs0Ki8hkVtrKCvxQGFSmeJnm1MQuQlJiikJSU3CaZm1K ZJhkyIRpk+UNRaRQW9GU3kRRIy+laB90rEiyqBRU1Ozy77yOvM3pPjxCHxz84GEMzm/nfc7ltbBY/fwP GUj0EboSMimP7yxJdE4SGUiei59Qds3AKSb+FJyryIqBtijNmGL6jqhbBBIYZibQ31mKP5Ma/B5RmQ0J gIkApZ3r71Tj50AMJtsszSbFXwjCgyeV56SB6/8IoDOxrOS0QEc+pj5GY/zVerNRxh1EgfQMHvAkzaKi @@ -190,41 +261,42 @@ fwG3AOBIhe+ncQAAAABJRU5ErkJggg== - + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAABWRJREFUWEfFl2tQVGUch/nuNDZ9yWb61AdrqrEZdaY+FGZjXhpKzEQhkMBrDCiKLhcB - EVTkzoYSF3FJZHUrL1wSUVdWUTSdadQ2MbVNK9BEBfG+lU//9xwXhj1rVO7omfnNnrN7zj7P+77/877n - BAQ8+a1gaEBAQbeExxxhapsmQNl+Hmv0xvZtBTxtgsBcGJMnIg5oOQ37JHtPwZ4foNkJu76HnSehSaL2 - 1Xe75bc9co69XT9fXef4EfafgdazcPAcHJD9DQdhhgXCJIplEHhqKYyKdTA6zsE++dPe23p6bsK1G3Dl - OlzugUvXoPMqXJRc6ta/U79d7YVuOe+6nK+uu3kHbt2FO/fkU/bbRGZSmoP30h0olkHgmSR4ZaFdixK4 - 8eBP/CGhZJTAaJNdi2IZBJ5dBu8WuRlf7KZFBNRFt6UF6vNRJVRjlEBUrZtZVjeKZRB4fjkEmeH9Ehlf - GeMbAr7r9o9Ezy2pC6mNhVshfhsolkHghUwdPnktfHVMxl4ucv/hH4kuqZGGEzp88XZQLIPAi6t0ePA6 - vWKvSEH9+Zd/JDqlcK1HdXjCDlAsg8CrOTr8w1Iw75UKF+v79/0jcb4Lylt1+NI6UCyDwMh8HT71c1j5 - Dfwmt5ja/CFx9hLk79HhpnpQLIPA60U6fFoZJMlYnb+iC/hD4lQHZEijFDyxERTLIPCmFKCCh5RDzGY4 - e7lf4FElTvwi4y93gIIni4hiGQTGSvcr+PQKiKiG9osDBR5F4tjPMMeqw1N2gmIZBCY8gIeuhymyf1K6 - zdf2f2qiTdaDUFkDFDy1CRTLIBAkYAUPq4Jxn8F30m0P2/6rhFqMgmR4FTxtl+wLxyAwRbpdwcM3SJHI - ilh9BI5I1z0sh+W3Nhcc+klWPEmrWvVkulWroEPSIiuiWh3tkkqZV8bILKvgy5ulh4VlEAip0eER0lUv - r4RhMl/7MyNlqVfwjN1Sa8IyCIRLkSh4pNh98gVEb4RZm6R4amGu/DZP7oxPt8gdYoPYLyHu6/653TPD - ee5zT7V7xtzTcgXPlPlAsQwCUfKnvuDRFb8zPdHGDJUkG6GSsGQ9H6fYCF9mI0Il1cZMSUjqTt5KdhEo - GZPiYnJuZ1/LFTzLLquisAwCc+U+9dXyyCIn4eHzqaqqHTTZ2cW8MSGeIeNbGTJBz0uzT2rd7oGv2ic9 - KiyDQKzM0766Pdp8ipiYZByO44OmpqaBtz9IZNhHR7U8N+0ooxa0D4CvbpEhFJZBYJHMUr7GfPba08TF - pdPcfIy6uoPYbHa2bt2vHXvHYqlj4vTlDI86zvBoPYHJ57RuVy1X8DXyvKlY3gLdkxY7iRcz74KbV3qG - RYtW0tT0LTU1TRQVWSkv36Yde8diqSc4Mltr9eiFkvh2JmZdGADPkadvk8wH3gKvqXeDoCVOljQMrPaY - 8nOYTLk0Nh6msnIbK1aUUli4UTv2jsXSQOj8Ysamuhib5uKddBdTCzv7Wq7guQdgmdSEl4D2fqBJBJuc - JMmU6bnV4ipdpKQUU1/fRkmJlYSE1WRllWrH3rFYGomKL5PK72ByXgfB+R1Elndp3e6B58tzQYYMhw+B - fompSU7SZNLQnuE2XCA9fZ2M+wFyctYzZ04iiYk52rF3qqoaiEmuJqKsi5kCjqzoImZTzwB4wSGpBemJ - hwj0S4SkOMmUJ6PF1b9Kt1fI+DdjNteKjJns7Ert2DtlZdtJyNxCrLWXuM29LNjSi2n7La3bVcsVvKgN - 8mRq/geBfomwVCd5jR1kZFRSUGAdNGvWbCQ9fwer7Pf6kt3ipvgwhgwi0C8xdGghgYEl/zojRpildfle - 8fni2/3kX8zF4G/1x54du0WrWgAAAABJRU5ErkJggg== + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAABadJREFUWEftl1lMVFcYx89r0xcf2jRp04cqBglqkYALiCAVClqkbMowwIDsy4gCFZfg + aSIaGKgjRLHaugA6NdJqjAKJSy4FAkEFBCoWquBQBEQEBGWHf883Aqm5jQyEx97kl+Ee7ve/v/vdM5Nz + GPv/mK0DXhJnPqVg2yvAFPfB/GrB/B+CBTaCqZ6ABevBdrSBhXSAhXWBhb8Ei+gDi+yXZos27v8+ZXyP + rhU9g0DfMDAwArwZBQYFQ2PA8L+gcxovejguBF4vkMD2Sp6oe4YXb4CeobcS/ULi9ZTItAx9EiRYSAJR + gwskoKjiCboOdL6GQeKl6ESvEHlFIlMydFOSonMav/7HBFj08AIJKOv4bt1zPOsHOgeALiHRPSVCHSGZ + aeicBK/VC4GY0QUSCGjgu3Qv0NoHtAmJDiFB3eia6gh1hYTok6DxK7UkMLZAAoFNfKfuJZp7gKdC4u9X + b0Xap2RIaJp28TeN5z+YBIsdn5vA4sWLVQJpGhMTE2np0qXSoq+1LTG6XjR2A4+FRHPvWxG9oFXIkNA0 + dE7jl2om8eGOhl4bGxvJ1tZWWr9+vbRhwwbJ3t5ecnBwkDZu3KiSfQXFjXliYiIqKioMlJeXIzDwZ6x2 + vIhvlMWIiC0zEEmoyxD1HpRhpbB2LYKDQxZCQnJQVVWF6upq1NTUIDU1FY6Ojvw/BY4dOwY6JiYmMDQ0 + hKQ9lUhLq0dFefe8oFrKoCzKpCMnJwebNm2SCyxZsoRnZmYaLhobG0NfXx94cg3O/KSHvkW0dh5QLWVQ + FmVOCzg5OckFxDvnWVlZhotGRkbQ2fkcR1IacCq7A1V3MS+oljIoizLpyM3NhbOzs1xATLgZAWqZXt+K + H9IfQ3OkHTcLMS+oljIoizLpyMvLg4uLi1zA1NSUa7Vaw4XUsqamx8jQNCB53zMh0Y3srIE5QTVUq81o + MmRRJmWfP38erq6ucoFly5bxtDQNurpeoK2tHXX1Dcg+UQx+QA/N4b55QbWUQVmUSdmnT5/G5s2b5QJm + ZmY8JSUFzc0taGz8C/fu1aC07D7U6quIiSpBwq6qOUE1VEsZVhpTrMthyL6TgePHT2DLli1yAXNzc37w + IEdtbT2qqh+grKzSwO075UhPv4G4uPw5QTVUSxk2uQwZ/Qwh16xw9KgWbm5ucoHly5fzvXv3i4IKlJSU + i+KSBSMxNxaq3yzwy60c8buiwdatW+UCK1as4PHxiSgquoVCQUHhbQOpaUeh9FfNmd3xe2YyKIcyKfvQ + ocNwd3eXC6xcuZKr1XHIz78quIYrVwoMbPcPA/vg4zljbmk3k0E5lEnZyckcHh4ecgELCwseERGNs2fz + cO7cRVy48KsBT/84mLgnw1VTaTSrY/Ngtu7bmQzKoUzKTkraD09PT7nAqlWreHBwKDIzT76DiyIeDrt1 + +P53GE3QqTqY2AXJsig7Pv47eHl5yQUsLS25UhmIlBTNOzgqDsCdF+DcAxhN0qUmfPFVgiyLsmNj4+Dt + 7S0XsLKy4s7OLvD1VUKh8IefXwCionbCVnEIARmluPlE/BwbScYNPT53PYyEhH0IC4tEeHgU6PUSgYFB + 8PHxkQtYW1vbC/iaNWv42rVrOS0mvLy2wdo3HZEna1HbCaM5U9yJT91/RGhoNE24Fnrn1HZ6crq5wH7W + PYFYyXA3Nw986Xsc8blPDcswY8m/24tPfC5DqQymCTe3pdm0mZ2dHXdycoXptlPYm99jWG4bS0HdID7y + vyMmmy9NuPkJiDWcitZwn/lebkm+Po5RsaAxltuPRrAo+F4v3Vy0XTtru997gRpclTcJqUnQSEwIxgVj + kP4cFYxAejQsGITU8AbSwwFoC9rBvIvn9+QyGTVUTD0psdgJicWIpXb0iGTYdtHmM7xHYqHPJbE5lVjQ + E4kFPJKYX40kNrKSEDDqyf8BThDYnt/8tWcAAAAASUVORK5CYII= - + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAACZZJREFUWEfFl2dUVFkWRhXDCJIzigTFbItSpjEHBIlFFAMCY+oxgmIYTCWhwVYEJSmI + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAACZZJREFUWEfFl2dUVFkWRhXDCJIzigTFbItSpjEHBIlFFAMCY+oxgmIYTCWhwVYEJSmI VYoBoUREQRAVxJwds20r2CYMQIFEbeWbc28JDoPMcvwzrHXWg6pX7+z3nX3vo1q3auEn3L6TULHNJyet 9rVjP9e3NvkEhVaf6lm1LqffD3+GwpbFmW9utfT573kdQPPTjnu2Nz82/S83V1t1hdhFE4c8lCCdrIxk NxUkuahB7KSBeEctxNjrYqudnvf3NGrpnGYABT5t1PK82sikHspYY90VyZNVkTmtAw5PUcTByR1xwF0F @@ -266,44 +338,13 @@ r99waPm0Vg67qWSUC23z5zD4awm6jC2FiZUMXW3LYeZQwcHMqAJiatDVphzGE2UwHF0K/aHvoNn3MToY pPHmbD/43wEa6JREQmZxW43t+e11kmSKhkehZJSJjsZUJll0ZJUJpS6ZvGE7bclNBdUtrKmoYQ9o3AcY xf+z/gXtgeyKRfIZLwAAAABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAABadJREFUWEftl1lMVFcYx89r0xcf2jRp04cqBglqkYALiCAVClqkbMowwIDsy4gCFZfg - aSIaGKgjRLHaugA6NdJqjAKJSy4FAkEFBCoWquBQBEQEBGWHf883Aqm5jQyEx97kl+Ee7ve/v/vdM5Nz - GPv/mK0DXhJnPqVg2yvAFPfB/GrB/B+CBTaCqZ6ABevBdrSBhXSAhXWBhb8Ei+gDi+yXZos27v8+ZXyP - rhU9g0DfMDAwArwZBQYFQ2PA8L+gcxovejguBF4vkMD2Sp6oe4YXb4CeobcS/ULi9ZTItAx9EiRYSAJR - gwskoKjiCboOdL6GQeKl6ESvEHlFIlMydFOSonMav/7HBFj08AIJKOv4bt1zPOsHOgeALiHRPSVCHSGZ - aeicBK/VC4GY0QUSCGjgu3Qv0NoHtAmJDiFB3eia6gh1hYTok6DxK7UkMLZAAoFNfKfuJZp7gKdC4u9X - b0Xap2RIaJp28TeN5z+YBIsdn5vA4sWLVQJpGhMTE2np0qXSoq+1LTG6XjR2A4+FRHPvWxG9oFXIkNA0 - dE7jl2om8eGOhl4bGxvJ1tZWWr9+vbRhwwbJ3t5ecnBwkDZu3KiSfQXFjXliYiIqKioMlJeXIzDwZ6x2 - vIhvlMWIiC0zEEmoyxD1HpRhpbB2LYKDQxZCQnJQVVWF6upq1NTUIDU1FY6Ojvw/BY4dOwY6JiYmMDQ0 - hKQ9lUhLq0dFefe8oFrKoCzKpCMnJwebNm2SCyxZsoRnZmYaLhobG0NfXx94cg3O/KSHvkW0dh5QLWVQ - FmVOCzg5OckFxDvnWVlZhotGRkbQ2fkcR1IacCq7A1V3MS+oljIoizLpyM3NhbOzs1xATLgZAWqZXt+K - H9IfQ3OkHTcLMS+oljIoizLpyMvLg4uLi1zA1NSUa7Vaw4XUsqamx8jQNCB53zMh0Y3srIE5QTVUq81o - MmRRJmWfP38erq6ucoFly5bxtDQNurpeoK2tHXX1Dcg+UQx+QA/N4b55QbWUQVmUSdmnT5/G5s2b5QJm - ZmY8JSUFzc0taGz8C/fu1aC07D7U6quIiSpBwq6qOUE1VEsZVhpTrMthyL6TgePHT2DLli1yAXNzc37w - IEdtbT2qqh+grKzSwO075UhPv4G4uPw5QTVUSxk2uQwZ/Qwh16xw9KgWbm5ucoHly5fzvXv3i4IKlJSU - i+KSBSMxNxaq3yzwy60c8buiwdatW+UCK1as4PHxiSgquoVCQUHhbQOpaUeh9FfNmd3xe2YyKIcyKfvQ - ocNwd3eXC6xcuZKr1XHIz78quIYrVwoMbPcPA/vg4zljbmk3k0E5lEnZyckcHh4ecgELCwseERGNs2fz - cO7cRVy48KsBT/84mLgnw1VTaTSrY/Ngtu7bmQzKoUzKTkraD09PT7nAqlWreHBwKDIzT76DiyIeDrt1 - +P53GE3QqTqY2AXJsig7Pv47eHl5yQUsLS25UhmIlBTNOzgqDsCdF+DcAxhN0qUmfPFVgiyLsmNj4+Dt - 7S0XsLKy4s7OLvD1VUKh8IefXwCionbCVnEIARmluPlE/BwbScYNPT53PYyEhH0IC4tEeHgU6PUSgYFB - 8PHxkQtYW1vbC/iaNWv42rVrOS0mvLy2wdo3HZEna1HbCaM5U9yJT91/RGhoNE24Fnrn1HZ6crq5wH7W - PYFYyXA3Nw986Xsc8blPDcswY8m/24tPfC5DqQymCTe3pdm0mZ2dHXdycoXptlPYm99jWG4bS0HdID7y - vyMmmy9NuPkJiDWcitZwn/lebkm+Po5RsaAxltuPRrAo+F4v3Vy0XTtru997gRpclTcJqUnQSEwIxgVj - kP4cFYxAejQsGITU8AbSwwFoC9rBvIvn9+QyGTVUTD0psdgJicWIpXb0iGTYdtHmM7xHYqHPJbE5lVjQ - E4kFPJKYX40kNrKSEDDqyf8BThDYnt/8tWcAAAAASUVORK5CYII= iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAA8JJREFUWEftln1M1HUcx/kjCRE4EWiwllB/XKutteqPVqtsJfjEQzYqXVSuMFM3L4sH + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAA8JJREFUWEftln1M1HUcx/kjCRE4EWiwllB/XKutteqPVqtsJfjEQzYqXVSuMFM3L4sH w+N+lE4nD00d8hAgSa6YMhK1MbHrcCytLSM2bOZIatacPcyJYFCxV+/fHXh33ulw+7n1h7e9tt/3e7f7 vu7z+Xw/94mIuPn6P0SgYK49RxiF6cEUaV2U4aM4kHl2Y50PmyX+OpyuXc7wtGhfHL6ClrI8JNBsiUCh BBj/lvGRVsaHGqfEwDGXKeCxRiDdFDjG6DeRU+bk3jjemW/vFXNMSkwW+FmvZy8LfTgX2u+/qqxyD/92 @@ -325,8 +366,8 @@ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAAt5JREFUOE990mlIFGEYwPEx61tEQfUlKoiCoMCgvnQa9KGIgm6prIgOrdUsu9Mao/uk + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAAt5JREFUOE990mlIFGEYwPEx61tEQfUlKoiCoMCgvnQa9KGIgm6prIgOrdUsu9Mao/uk Qwm0UsotK0srLzowKDvddjfLbdXWaEjUckqzVdx1/j3jTkkEDfyZYdj39z7vsGGKec1/GKmEhU9VevRS lLCeitLDqus5PPQuzLyHf1cyh5zuWiMXYD0teKS6GuB/5VZAVHYHAzY1Zv4LLCpTa79DRSO4BXor98ov 4P0KVU1QrUNuucGYFIMl9gADN+tdSPcEUS/Uhp8CvCjFcSUFZ85eXDkpeF6V4vsGHwW/8dyg37IQEn01 @@ -344,8 +385,8 @@ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAAmVJREFUOE+lU1tsi2EY5u7//57Wrqtu7dodulI7VDY26RRzmLDZuLFgF+wCcdNLFxJ1 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAAmVJREFUOE+lU1tsi2EY5u7//57Wrqtu7dodulI7VDY26RRzmLDZuLFgF+wCcdNLFxJ1 oavMeQkSMaeNYKMTyw5dpqWMOWQuiFo6P0NCikZiC0Me3/dVk7ZzIXzJ8+fL+/7v872H550OYNp/nRjB Dp4zEhzaI3C+GFwS3tdI4Iqz7eS50+S/RfRRFks/xKBwClykRcbhjJzHeZUMVzJScd2oRVeWFp2ZGlzS pOCcQmD+RoEDJYkncJwgwWeJs0OrQp85EwGrGUPz8nG/tACDJRb48nMYYZtKykh28ZwnnsBJje1aJQYs @@ -361,11 +402,27 @@ 17, 17 + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA + EnEB89x6jgAAAghJREFUOE+lk9tLk2Ecx+u/6SJC6qbsACkRkUKUB7KxuVGapB1M8iKLlo1dlGHHQVrY + ykPmheTmYW2NuSydx3awZUg0DKqli9mmNbdPe15h8XaAjV743rw8n+/v9/3yPGuBNf/1CYN0ND3uOPJ+ + xsOMx8WrEVsSWeXSgr2j9vJZ3xjR+TfEwz4SoZHMDPxTQ0SCXgK+fq6cr0B3RpWZwYTTTOKrC+2pkhSY + UYRB0wMI9lOj3v13A6fJmGXvvovl0S162xrpMTbQbbxMV5OezmYd7YaLPLx9AeP1c7Q0nhXKkm1gfWxg + MTAACw5JiS924p+trHwcIPbBTPyTJfV/zt3JjfoqeQd97ddW4deniXuqiE2UsTysJDJYyNKLZG5/DXHv + CWKTR3n7pIC6Y/vlBj3GqzDvYMVdyY/xwyy9VDDcugdV8XqedWpS8LJLhb8rj9qyfLmByJsI2vg+qiE6 + dJBF+z6UhevQlG5Naps0WcARZxHTbblUl/4qU7pIXc16KW/0eTFhWz6h3lzJ7Hc4bM3D05LNcUWOfIMO + Qz2xORPhp3tZMO3km+MAHTcLUCu30KTfJU0WcMicw9SdjVSW7JAbtBq0BMaMuO9txnt/O+8samb7FFJh + IrNYW0wWsFm3gYqi7D8MNjXUlaOvVUm6VH0I7cliqW1RmMgs1haTBZyU/B6k8xr/deYna7rBU0DWSCIA + AAAASUVORK5CYII= + + iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAAm5JREFUOE/V1N9PklEYB3D7j5oX4kYujUSwCeTCMBnzZy5/IqYU+PKC/MjUV0HBH6kY + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAAm5JREFUOE/V1N9PklEYB3D7j5oX4kYujUSwCeTCMBnzZy5/IqYU+PKC/MjUV0HBH6kY hgqJFWWOdM1y1hxUyua8SC9aF82buugmHB6/Hd/WRbr2XuRN5+y5OtvnPM95zp4zADJOdR2BpxknsQx6 wV+2rKAAR/HH+bGE/kPQ631P3O446e1ZIw/DOyQY3CKBQJJMTn4g4+MJMjq6Try+14jFNsje3jdy/P1P lNzdvUJGRzbhsMcQjf7A2PgXDHo/oYf7CLtzG2Z2E7V1r6gD6HQjwqDLtUwGBtZhZZ9ibu47BnwU69uB @@ -381,8 +438,8 @@ iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAAqJJREFUOE+11Nsz1GEcx3H9B/0j3XTRRTNNE2MoCjnFThMbOUeOG4vdikJb2ZyKqW21 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAAqJJREFUOE+11Nsz1GEcx3H9B/0j3XTRRTNNE2MoCjnFThMbOUeOG4vdikJb2ZyKqW21 hUZc2MHKMK0I01iHQgwt5Vg5LbvsmHfLjFXTr67W75lnnovfzGs+n+eZ+R4CnBz67YCO3A7Fdtva0znZ kv5nnXZ3JyoiYqfP3+u3lgcPylUfeVg7hrrpyx9p9hKqtOMUVhlIVXbt/xdK+LRhlIyyXmSqIcybVqYX N6jvmNndOyX3wKHJdXQ9P5CVtHK7SIM4qcB2a/sPa6+saRxBqx9FUtKDZWubqtZpalrH6eifR1rylj1w @@ -396,11 +453,82 @@ 4xKQjJsoHR+xHFGs4t+go2biAc5DB03uX5vZMUQuZEGBAAAAAElFTkSuQmCC + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALDgAA + Cw4BQL7hQQAAAlRJREFUOE+lk+lLVFEYxuu/6UOE5IfKFkiJkJSiXMjEUUtN0solxTLJrflghq1TaWbj + mg4hOeNuw7iUe+bMuIVEYpBNaoy51Dj315wbqXeSCLrwfjmc5/c8z8u5W4Et//UJwMYZGTBFfZgwM2Hu + 5W1PG10tz2nQFVFTnBfgflc233ho6TPGTFr7WZodx2m3Is33INlamB0t5UnBZQrzkg+7QxSAsaEuFm0W + pqyN3MiIJTdFRVbiKaa7c5jpyyAnKcSlVyZWAAY7DEhfe8lMCCElym+XuHzptK9n2cPrSONppMUc/Tug + XV8KtkaSI0TSdafyB2qk0UQSVD6bAzr0Wg9j7WOan92jvqKAOm0+tdo8dIVqqotyqdRkUXb/GtrbVykp + uCLG47eBXKG1RsPCVBPMmeSRvhhxfm5l9VMTjo8GnDPNa+fTw9XcyY5fSyIDGipv/RKPJuE0x+MYjGal + O4zF9kCWX7kWN5aM03IBx5uzvHsRQPq540pAnfYmzJpYHY7jx8AZll+H0l3uiyp4Oy+rI9fEK70qxnR+ + pEb7KwGir2Rr43tfJEtdJ1kwHiMscBuR4Xtds092FuLFjiBGKnxIDF9fslxBV6SW+y51BmNv82e+3keG + uYvtrX6YS7w4H+qtTFClycYxrcfecoQ5/UG+mU5QdTeAiLA9FKoPyc5CPG/wZujRTuJCDigB5ZpMpvq1 + DBfvxvJ0P++bI5hsCJUXJjqL2MJZiA25O4gN8voD4JmfHoM6VSVPjuv5Zl4MlrctFiY6i9jCWYhdo3wH + m/1l/3r2Ey4iunsWz150AAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA + EnEB89x6jgAAAghJREFUOE+lk9tLk2Ecx+u/6SJC6qbsACkRkUKUB7KxuVGapB1M8iKLlo1dlGHHQVrY + ykPmheTmYW2NuSydx3awZUg0DKqli9mmNbdPe15h8XaAjV743rw8n+/v9/3yPGuBNf/1CYN0ND3uOPJ+ + xsOMx8WrEVsSWeXSgr2j9vJZ3xjR+TfEwz4SoZHMDPxTQ0SCXgK+fq6cr0B3RpWZwYTTTOKrC+2pkhSY + UYRB0wMI9lOj3v13A6fJmGXvvovl0S162xrpMTbQbbxMV5OezmYd7YaLPLx9AeP1c7Q0nhXKkm1gfWxg + MTAACw5JiS924p+trHwcIPbBTPyTJfV/zt3JjfoqeQd97ddW4deniXuqiE2UsTysJDJYyNKLZG5/DXHv + CWKTR3n7pIC6Y/vlBj3GqzDvYMVdyY/xwyy9VDDcugdV8XqedWpS8LJLhb8rj9qyfLmByJsI2vg+qiE6 + dJBF+z6UhevQlG5Naps0WcARZxHTbblUl/4qU7pIXc16KW/0eTFhWz6h3lzJ7Hc4bM3D05LNcUWOfIMO + Qz2xORPhp3tZMO3km+MAHTcLUCu30KTfJU0WcMicw9SdjVSW7JAbtBq0BMaMuO9txnt/O+8samb7FFJh + IrNYW0wWsFm3gYqi7D8MNjXUlaOvVUm6VH0I7cliqW1RmMgs1haTBZyU/B6k8xr/deYna7rBU0DWSCIA + AAAASUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA + EnEB89x6jgAAAkFJREFUOE9j/P//PwNFAGQAKTgvL48RWT1ezQ0NDVKFhYUC+CzAakBrS4t2Y2Pjkqam + pjmTJ08uALI7QIZ0dXVxJyUlqYLY3d3dgmDvw0zv6OoFO621tVWytLR05Y4dO/7fvHnzzdevX38vWbLk + f3FxsUFkZGRAXV1d7+nTp+uAhu8sKiriY2jv7OavqWvSamnrYu/qmSBRWV0dOm/+/A+/f/8Gmvf//67d + u//fvHXrf2NT04KWlpZT58+f/wISP3bs2H+g94oZauvrw1evXT9ry9bty9vau47WNTQuW7Fy5f8XL178 + //z5M9gAEHjy9On/6dOn/z979iyY/+fPn/+VlZV3GGJjY98B+b+7u3v+Z2Vm/t+6ZeuvpqaW/7dv3/7/ + 5csXMH3q1Kn/J0+e/J+amvp/JdDwR48e/X/w4MH/8vLyHwxeXl5b4uMT9nFy815LSM44lV9U9jwgIPD/ + 9u3b/9+/f/9/e1vb/9ra2v+5ubn/w8Mj/wO98X/btm3/dwNdlpaWtg8ciEDgYm7rYpZf1W5kau2YZ+fg + 9L+gsPD/8uXL/ze3tP6fPmPGf01t7dtOTs4b/Pz8QYZ8TklJ+eLp6VmJEo0JmSVsIAPNLW367B0c/qek + pf2vqKr+Hxoe/tbGzn6KiYmJnampWY+Njc0caWnpBQYGBioY0QiLVkNj0xZHF7etNra2t3T1DRo8fXw1 + LS0tWQwNDdk1NDR0gUAYJR1gS22WNnaOjs4uBshyerq6xCdlYvIISRkJm4EUGwAAQOpumlguGA4AAAAA + SUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScQAA + EnEB89x6jgAAAnlJREFUOE9j/P//PwMMVFZWsv/69StSQUEhWkVFxfnz58+Mz58//3j06NGL58+fX8rN + zb34woUL3+EaQAyQAch4zZo1M1++fPkTKPb/y5cv/8+cOfO/ra3tv4GBwU5NTU1DR0dHZmT1KJqnT5/O + unTp0kygAW8+fPjw/8qVK/9Xr179v7y84r+zs/NmXV1dfS1NTdwG5Ofn88bFxYVOnTr15Nq1a/+0tLT8 + z83N++/r6/fS1NSs2tjEmA/dxRheSEtL401JSalesXLlG6Br/ufnF/wHar6lp29Q7eDkpIjXgNLSUuXq + 6uqKmbNm7Xj1+vWHjx8//p82bdr/1NTU3/6BgY9sHRwbrWztRHGGQW1trd22bdsuXrl6Fez/e/fu/Z8z + Z87/9vaO/61t7f/dPDye6xsaRmI1AGg7U0VFhfOBAwf2f/r06f/FS5f+P3z48P/1a9f+L1+27H9HV9f/ + iKioHzZ29n0OTi4iMENQwqCmpsZr1qxZ94GxAIrF/9+/f///7t27/4cPH/5fXFL8397J6bGJuWW6sak5 + G1YDmpqaZIAhP3fFihU/r1+//v/gwUP/Z8yY+T8nN/e/m7vHL2MTs0VAzZI4wwAk0djQIF1eXl7a0t62 + fcrUqQ96enr/u3p4v9HWN5luZGopjzMWOrp6GWGSHZ3dLLX1jY51dY2n+vr6/mfnl20LiklTQ9cMzgbY + BEFiPX2TJOfMnnc+Ljbuv46ByZ7ErDJZog1obG5jamzuUNyz78C6Cxcu/ldV1zjMJyhiTbQB4LBobleY + OHlK7bp16/6HhoadkJWRwUiFeL3Q0dnFXN/YqAJM2kXp6ekRhYWFLNhcAABhsoFseyG7pAAAAABJRU5E + rkJggg== + + + + 17, 17 + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALDQAA - Cw0B7QfALAAAAkNJREFUOE+d0l1IU2EYB/AZXSR0GV10bRclXWRdRB8kk5TIMV3iFgWC1FhgZbNlBNY2 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALCgAA + CwoBv0NmUwAAAkNJREFUOE+d0l1IU2EYB/AZXSR0GV10bRclXWRdRB8kk5TIMV3iFgWC1FhgZbNlBNY2 KqEwzbkMwpVzKyoWeswuXNOWy8yZ8zPXyMlcbbbvj+NZ24x/74JC7BjSgQfOxfv+zv95zpMFgKN60LW+ KH9X0ez8At/1xb8tGqc3B4KRjRuysz/lbM1rquBtpzirPRmg941Nrm6nxrpMQwmj9SOMU07cowZwsUkP geRaoPxM/YnMObbilElubGnWdL43DY7/8NEMPEwSzhiDUR8Nauor5JoeFB6vTR0S1eSwAiaLTaPr7Iu7 @@ -411,16 +539,6 @@ 1C9wTKZCftlZ3JHzEbbXsyJ/loMgOy81GO5zRbKhfSXV8QJRLYRVja4jvMMy7u4dGGzNZUVYt+t3r8Li 3KzMO7+EJyDFivwTWD601ZA1ASTJuuVJuhvycEFc8GuoawJWJNlL0gyTKv0vYOUu/AQZkMf/XhecFgAA AABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA - EnABIZuYagAAAKRJREFUOE/NlNEOgCAIRcv55P//ay8u61owJE03aavGJgInuC7XlNJi+gBoaaawPK1l - dwUwuLBpO8XgtxbHHmfc0nGH3vkU98hGACqAL+NYFzk9YP5AvIoArQGLnBEgCuSoukPEyegsmiPXivUe - +YB2gVrTN38YKCF6rf1mh1IXWmM0Aug4xYZGNulQCi0PYVrD6VNu/Vqj+w8NrS6J726b33Z4AFzeFLS3 - F5viAAAAAElFTkSuQmCC @@ -429,13 +547,23 @@ 499, 17 - - 156, 17 - R0lGODlhFAAUAPEAAAAAAP///////wAAACH5BAEAAAIALAAAAAAUABQAAAIjlI+py20AoUOxThFPdpKC 2WkfN4pguJFVeabXC8fyTNf2bRcAOw== + + + + 156, 17 + + + + iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA + Em4BzAbEXgAAAKRJREFUOE/NlNEOgCAIRcv55P//ay8u61owJE03aavGJgInuC7XlNJi+gBoaaawPK1l + dwUwuLBpO8XgtxbHHmfc0nGH3vkU98hGACqAL+NYFzk9YP5AvIoArQGLnBEgCuSoukPEyegsmiPXivUe + +YB2gVrTN38YKCF6rf1mh1IXWmM0Aug4xYZGNulQCi0PYVrD6VNu/Vqj+w8NrS6J726b33Z4AFzeFLS3 + F5viAAAAAElFTkSuQmCC diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs index 6bb4beea..219800fc 100644 --- a/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs +++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs @@ -28,1633 +28,1711 @@ namespace VEPROMS /// private void InitializeComponent() { - this.components = new System.ComponentModel.Container(); - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmVersionsProperties)); - this.ppBtnCancel = new System.Windows.Forms.Button(); - this.ppBtnOK = new System.Windows.Forms.Button(); - this.ppBtnDefaultChgBar = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxChangeBarType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.docVersionConfigBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.ppBtnDefaultFmt = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxFormat = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.formatInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.ppLblChangeBarTypeDefault = new System.Windows.Forms.Label(); - this.ppLblFormatDefault = new System.Windows.Forms.Label(); - this.ppBtnDefCbTxtTyp = new DevComponents.DotNetBar.ButtonX(); - this.ppBtnDefaultCbPos = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxChgBarTxtType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppCmbxChgBarPos = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppLblChgBarTxtTypeDefault = new System.Windows.Forms.Label(); - this.ppLblChgBarPosDefault = new System.Windows.Forms.Label(); - this.ppBtnDefCbTxt2 = new DevComponents.DotNetBar.ButtonX(); - this.ppBtnDefCbTxt1 = new DevComponents.DotNetBar.ButtonX(); - this.ppLblChgBarUserMsgTwoDefault = new System.Windows.Forms.Label(); - this.ppLblChgBarUserMsgOneDefault = new System.Windows.Forms.Label(); - this.label14 = new System.Windows.Forms.Label(); - this.ppTxbxChangeBarUserMsgOne = new System.Windows.Forms.RichTextBox(); - this.label15 = new System.Windows.Forms.Label(); - this.ppTxbxChangeBarUserMsgTwo = new System.Windows.Forms.RichTextBox(); - this.label13 = new System.Windows.Forms.Label(); - this.label12 = new System.Windows.Forms.Label(); - this.label10 = new System.Windows.Forms.Label(); - this.label11 = new System.Windows.Forms.Label(); - this.ppBtnFldrDlg = new DevComponents.DotNetBar.ButtonX(); - this.ppTxbxRoFoldLoc = new DevComponents.DotNetBar.Controls.TextBoxX(); - this.ppBtnDefaultGrfExt = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxDefROPrefix = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppBtnDefaultImgPrefix = new DevComponents.DotNetBar.ButtonX(); - this.label7 = new System.Windows.Forms.Label(); - this.ppBtnDefaultROPrefix = new DevComponents.DotNetBar.ButtonX(); - this.label8 = new System.Windows.Forms.Label(); - this.ppLblROPrefixDefault = new System.Windows.Forms.Label(); - this.ppCmbxDefImgPrefix = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppLblImagePrefixDefault = new System.Windows.Forms.Label(); - this.ppLblROFldrLocDefault = new System.Windows.Forms.Label(); - this.ppCmbxGrphFileExt = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.imageCodecInfoBindingSource = new System.Windows.Forms.BindingSource(this.components); - this.ppLblGraphicFileExtDefault = new System.Windows.Forms.Label(); - this.ppBtnResetRoVals = new System.Windows.Forms.Button(); - this.ppBtnUpRoVals = new System.Windows.Forms.Button(); - this.label6 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.ppCmbxProcSetType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.label9 = new System.Windows.Forms.Label(); - this.ppRTxtName = new System.Windows.Forms.RichTextBox(); - this.ppRTxtTitle = new System.Windows.Forms.RichTextBox(); - this.ppDTPicker = new System.Windows.Forms.DateTimePicker(); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.ppTxtBxUserID = new System.Windows.Forms.TextBox(); - this.label3 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.ppBtnPDFLoc = new DevComponents.DotNetBar.ButtonX(); - this.ppNumUpDwnOvrdPrnPenWidth = new System.Windows.Forms.NumericUpDown(); - this.label19 = new System.Windows.Forms.Label(); - this.label20 = new System.Windows.Forms.Label(); - this.ppNumUpDwnOverdPrnPenBoldWidth = new System.Windows.Forms.NumericUpDown(); - this.ppNumUpDwnOvrdPrnPenULineWidth = new System.Windows.Forms.NumericUpDown(); - this.label21 = new System.Windows.Forms.Label(); - this.ppNumUpDwnAdjPrnStartPos = new System.Windows.Forms.NumericUpDown(); - this.label22 = new System.Windows.Forms.Label(); - this.ppBtnDeftDisAutoDuplx = new DevComponents.DotNetBar.ButtonX(); - this.ppBtnDefWatermark = new DevComponents.DotNetBar.ButtonX(); - this.ppBtnDefPagination = new DevComponents.DotNetBar.ButtonX(); - this.ppCmbxWatermark = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppCmbxPagination = new DevComponents.DotNetBar.Controls.ComboBoxEx(); - this.ppLblWatermarkDefault = new System.Windows.Forms.Label(); - this.ppLblPaginationDefault = new System.Windows.Forms.Label(); - this.ppTxtBxPDFLoc = new System.Windows.Forms.TextBox(); - this.label18 = new System.Windows.Forms.Label(); - this.ppLblAutoDuplexDefault = new System.Windows.Forms.Label(); - this.ppChbxDisAutoDuplex = new System.Windows.Forms.CheckBox(); - this.label16 = new System.Windows.Forms.Label(); - this.label17 = new System.Windows.Forms.Label(); - this.ppBtnEdLibDoc = new DevComponents.DotNetBar.ButtonX(); - this.ppBtnDelLibDoc = new DevComponents.DotNetBar.ButtonX(); - this.ppBtnAddLibDoc = new DevComponents.DotNetBar.ButtonX(); - this.ppGrdLibDocList = new C1.Win.C1FlexGrid.C1FlexGrid(); - this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); - this.ppCbShwDefSettings = new DevComponents.DotNetBar.Controls.CheckBoxX(); - this.ppGpbxUserSpecCB = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.ppGpbxUserSpecTxt = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.ppLblDefSettingsInfo = new System.Windows.Forms.Label(); - this.dlgROFolder = new System.Windows.Forms.FolderBrowserDialog(); - this.tcVersions = new DevComponents.DotNetBar.TabControl(); - this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); - this.ppGpbxUpROvals = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.ppGpbxDefAccID = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.tiRefObjs = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiLibDocs = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel(); - this.tiFmtSettings = new DevComponents.DotNetBar.TabItem(this.components); - this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel(); - this.ppGrpbxPrnAdj = new DevComponents.DotNetBar.Controls.GroupPanel(); - this.tiOutputSettings = new DevComponents.DotNetBar.TabItem(this.components); - this.panVerBtns = new System.Windows.Forms.Panel(); - this.btnLibDocs = new DevComponents.DotNetBar.ButtonX(); - this.btnFmtSettings = new DevComponents.DotNetBar.ButtonX(); - this.btnOutputSettings = new DevComponents.DotNetBar.ButtonX(); - this.btnRefObjs = new DevComponents.DotNetBar.ButtonX(); - this.btnGeneral = new DevComponents.DotNetBar.ButtonX(); - ((System.ComponentModel.ISupportInitialize)(this.docVersionConfigBindingSource)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.formatInfoListBindingSource)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.imageCodecInfoBindingSource)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOverdPrnPenBoldWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenULineWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnAdjPrnStartPos)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).BeginInit(); - this.ppGpbxUserSpecCB.SuspendLayout(); - this.ppGpbxUserSpecTxt.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.tcVersions)).BeginInit(); - this.tcVersions.SuspendLayout(); - this.tabControlPanel2.SuspendLayout(); - this.ppGpbxUpROvals.SuspendLayout(); - this.ppGpbxDefAccID.SuspendLayout(); - this.tabControlPanel1.SuspendLayout(); - this.tabControlPanel5.SuspendLayout(); - this.tabControlPanel4.SuspendLayout(); - this.tabControlPanel3.SuspendLayout(); - this.ppGrpbxPrnAdj.SuspendLayout(); - this.panVerBtns.SuspendLayout(); - this.SuspendLayout(); - // - // ppBtnCancel - // - this.ppBtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.ppBtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.ppBtnCancel.Location = new System.Drawing.Point(754, 369); - this.ppBtnCancel.Name = "ppBtnCancel"; - this.ppBtnCancel.Size = new System.Drawing.Size(75, 26); - this.ppBtnCancel.TabIndex = 16; - this.ppBtnCancel.Text = "Cancel"; - this.ppBtnCancel.UseVisualStyleBackColor = true; - this.ppBtnCancel.Click += new System.EventHandler(this.btnFldrPropCancel_Click); - // - // ppBtnOK - // - this.ppBtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.ppBtnOK.Location = new System.Drawing.Point(657, 369); - this.ppBtnOK.Name = "ppBtnOK"; - this.ppBtnOK.Size = new System.Drawing.Size(75, 26); - this.ppBtnOK.TabIndex = 15; - this.ppBtnOK.Text = "OK"; - this.ppBtnOK.UseVisualStyleBackColor = true; - this.ppBtnOK.Click += new System.EventHandler(this.btnFlderPropOK_Click); - // - // ppBtnDefaultChgBar - // - this.ppBtnDefaultChgBar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultChgBar.Location = new System.Drawing.Point(353, 88); - this.ppBtnDefaultChgBar.Name = "ppBtnDefaultChgBar"; - this.ppBtnDefaultChgBar.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultChgBar, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", "This will revert the Change Bar selection back to using the parent\'s (default) se" + - "tting.\r\n\r\nCheck \"Show Default Settings\" to display the \"default\" Change Bar (bel" + - "ow the Change Bars selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 145))); - this.ppBtnDefaultChgBar.TabIndex = 48; - this.ppBtnDefaultChgBar.Text = "Default"; - this.ppBtnDefaultChgBar.ThemeAware = true; - this.ppBtnDefaultChgBar.Visible = false; - this.ppBtnDefaultChgBar.Click += new System.EventHandler(this.ppBtnDefaultChgBar_Click); - // - // ppCmbxChangeBarType - // - this.ppCmbxChangeBarType.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_ChangeBar", true)); - this.ppCmbxChangeBarType.DisplayMember = "Text"; - this.ppCmbxChangeBarType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxChangeBarType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxChangeBarType.FormattingEnabled = true; - this.ppCmbxChangeBarType.Location = new System.Drawing.Point(125, 88); - this.ppCmbxChangeBarType.Name = "ppCmbxChangeBarType"; - this.ppCmbxChangeBarType.Size = new System.Drawing.Size(222, 23); - this.ppCmbxChangeBarType.TabIndex = 47; - this.ppCmbxChangeBarType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxChangeBarType.WatermarkText = "select change bar setting"; - this.ppCmbxChangeBarType.SelectedValueChanged += new System.EventHandler(this.ppCmbxChangeBarType_SelectedValueChanged); - // - // docVersionConfigBindingSource - // - this.docVersionConfigBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.DocVersionConfig); - // - // ppBtnDefaultFmt - // - this.ppBtnDefaultFmt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultFmt.Location = new System.Drawing.Point(593, 28); - this.ppBtnDefaultFmt.Name = "ppBtnDefaultFmt"; - this.ppBtnDefaultFmt.Size = new System.Drawing.Size(50, 23); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultFmt, new DevComponents.DotNetBar.SuperTooltipInfo("Default Button", "", "This will revert the format selection back to using the parent\'s format.\r\n\r\nCheck" + - " \"Show Default Settings\" to display the \"default\" format name (below the format " + - "selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppBtnDefaultFmt.TabIndex = 46; - this.ppBtnDefaultFmt.Text = "Reset"; - this.ppBtnDefaultFmt.ThemeAware = true; - this.ppBtnDefaultFmt.Click += new System.EventHandler(this.ppBtnDefaultFmt_Click); - // - // ppCmbxFormat - // - this.ppCmbxFormat.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "FormatSelection", true)); - this.ppCmbxFormat.DataSource = this.formatInfoListBindingSource; - this.ppCmbxFormat.DisplayMember = "Description"; - this.ppCmbxFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxFormat.FormattingEnabled = true; - this.ppCmbxFormat.Location = new System.Drawing.Point(18, 28); - this.ppCmbxFormat.Name = "ppCmbxFormat"; - this.ppCmbxFormat.Size = new System.Drawing.Size(561, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxFormat, new DevComponents.DotNetBar.SuperTooltipInfo("Format Selection", "", resources.GetString("ppCmbxFormat.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCmbxFormat.TabIndex = 28; - this.ppCmbxFormat.ValueMember = "Description"; - this.ppCmbxFormat.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxFormat.WatermarkText = "Select a Format"; - this.ppCmbxFormat.SelectedValueChanged += new System.EventHandler(this.ppCmbxFormat_SelectedValueChanged); - // - // formatInfoListBindingSource - // - this.formatInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.FormatInfo); - // - // ppLblChangeBarTypeDefault - // - this.ppLblChangeBarTypeDefault.AutoSize = true; - this.ppLblChangeBarTypeDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblChangeBarTypeDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblChangeBarTypeDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.ppLblChangeBarTypeDefault.Location = new System.Drawing.Point(124, 115); - this.ppLblChangeBarTypeDefault.Name = "ppLblChangeBarTypeDefault"; - this.ppLblChangeBarTypeDefault.Size = new System.Drawing.Size(107, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblChangeBarTypeDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Change Bar setting", "", "Pressing the Default Button (to the right)\r\nwill set the Change Bar setting back " + - "to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(270, 70))); - this.ppLblChangeBarTypeDefault.TabIndex = 27; - this.ppLblChangeBarTypeDefault.Text = "(default setting)"; - // - // ppLblFormatDefault - // - this.ppLblFormatDefault.AutoSize = true; - this.ppLblFormatDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblFormatDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblFormatDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblFormatDefault.Location = new System.Drawing.Point(15, 55); - this.ppLblFormatDefault.Name = "ppLblFormatDefault"; - this.ppLblFormatDefault.Size = new System.Drawing.Size(61, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblFormatDefault, new DevComponents.DotNetBar.SuperTooltipInfo("The is the default Format setting", "", "Pressing the Reset Button (to the right)\r\nwill set the format setting back to thi" + - "s.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(255, 70))); - this.ppLblFormatDefault.TabIndex = 26; - this.ppLblFormatDefault.Text = "(default)"; - // - // ppBtnDefCbTxtTyp - // - this.ppBtnDefCbTxtTyp.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefCbTxtTyp.Location = new System.Drawing.Point(267, 67); - this.ppBtnDefCbTxtTyp.Name = "ppBtnDefCbTxtTyp"; - this.ppBtnDefCbTxtTyp.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefCbTxtTyp, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefCbTxtTyp.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(235, 150))); - this.ppBtnDefCbTxtTyp.TabIndex = 50; - this.ppBtnDefCbTxtTyp.Text = "Default"; - this.ppBtnDefCbTxtTyp.ThemeAware = true; - this.ppBtnDefCbTxtTyp.Visible = false; - this.ppBtnDefCbTxtTyp.Click += new System.EventHandler(this.ppBtnDefCbTxtTyp_Click); - // - // ppBtnDefaultCbPos - // - this.ppBtnDefaultCbPos.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultCbPos.Location = new System.Drawing.Point(267, 15); - this.ppBtnDefaultCbPos.Name = "ppBtnDefaultCbPos"; - this.ppBtnDefaultCbPos.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultCbPos, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefaultCbPos.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 145))); - this.ppBtnDefaultCbPos.TabIndex = 49; - this.ppBtnDefaultCbPos.Text = "Default"; - this.ppBtnDefaultCbPos.ThemeAware = true; - this.ppBtnDefaultCbPos.Visible = false; - this.ppBtnDefaultCbPos.Click += new System.EventHandler(this.ppBtnDefaultCbPos_Click); - // - // ppCmbxChgBarTxtType - // - this.ppCmbxChgBarTxtType.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_ChangeBarText", true)); - this.ppCmbxChgBarTxtType.DisplayMember = "Text"; - this.ppCmbxChgBarTxtType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxChgBarTxtType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxChgBarTxtType.FormattingEnabled = true; - this.ppCmbxChgBarTxtType.Location = new System.Drawing.Point(81, 68); - this.ppCmbxChgBarTxtType.Name = "ppCmbxChgBarTxtType"; - this.ppCmbxChgBarTxtType.Size = new System.Drawing.Size(180, 23); - this.ppCmbxChgBarTxtType.TabIndex = 48; - this.ppCmbxChgBarTxtType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxChgBarTxtType.WatermarkText = "select change bar text type"; - this.ppCmbxChgBarTxtType.SelectedValueChanged += new System.EventHandler(this.ppCmbxChgBarTxtType_SelectedValueChanged); - // - // ppCmbxChgBarPos - // - this.ppCmbxChgBarPos.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_ChangeBarLoc", true)); - this.ppCmbxChgBarPos.DisplayMember = "Text"; - this.ppCmbxChgBarPos.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxChgBarPos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxChgBarPos.FormattingEnabled = true; - this.ppCmbxChgBarPos.Location = new System.Drawing.Point(82, 15); - this.ppCmbxChgBarPos.Name = "ppCmbxChgBarPos"; - this.ppCmbxChgBarPos.Size = new System.Drawing.Size(179, 23); - this.ppCmbxChgBarPos.TabIndex = 48; - this.ppCmbxChgBarPos.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxChgBarPos.WatermarkText = "select change bar position"; - this.ppCmbxChgBarPos.SelectedValueChanged += new System.EventHandler(this.ppCmbxChgBarPos_SelectedValueChanged); - // - // ppLblChgBarTxtTypeDefault - // - this.ppLblChgBarTxtTypeDefault.AutoSize = true; - this.ppLblChgBarTxtTypeDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblChgBarTxtTypeDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.ppLblChgBarTxtTypeDefault.Location = new System.Drawing.Point(79, 94); - this.ppLblChgBarTxtTypeDefault.Name = "ppLblChgBarTxtTypeDefault"; - this.ppLblChgBarTxtTypeDefault.Size = new System.Drawing.Size(107, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblChgBarTxtTypeDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Change Bar Text Type", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Positi" + - "on setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); - this.ppLblChgBarTxtTypeDefault.TabIndex = 13; - this.ppLblChgBarTxtTypeDefault.Text = "(default setting)"; - // - // ppLblChgBarPosDefault - // - this.ppLblChgBarPosDefault.AutoSize = true; - this.ppLblChgBarPosDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblChgBarPosDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.ppLblChgBarPosDefault.Location = new System.Drawing.Point(84, 41); - this.ppLblChgBarPosDefault.Name = "ppLblChgBarPosDefault"; - this.ppLblChgBarPosDefault.Size = new System.Drawing.Size(107, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblChgBarPosDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Change Bar Position", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Positi" + - "on setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(300, 80))); - this.ppLblChgBarPosDefault.TabIndex = 12; - this.ppLblChgBarPosDefault.Text = "(default setting)"; - // - // ppBtnDefCbTxt2 - // - this.ppBtnDefCbTxt2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefCbTxt2.Location = new System.Drawing.Point(159, 58); - this.ppBtnDefCbTxt2.Name = "ppBtnDefCbTxt2"; - this.ppBtnDefCbTxt2.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefCbTxt2, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefCbTxt2.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 150))); - this.ppBtnDefCbTxt2.TabIndex = 50; - this.ppBtnDefCbTxt2.Text = "Default"; - this.ppBtnDefCbTxt2.ThemeAware = true; - this.ppBtnDefCbTxt2.Visible = false; - // - // ppBtnDefCbTxt1 - // - this.ppBtnDefCbTxt1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefCbTxt1.Location = new System.Drawing.Point(159, 8); - this.ppBtnDefCbTxt1.Name = "ppBtnDefCbTxt1"; - this.ppBtnDefCbTxt1.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefCbTxt1, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefCbTxt1.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 150))); - this.ppBtnDefCbTxt1.TabIndex = 49; - this.ppBtnDefCbTxt1.Text = "Default"; - this.ppBtnDefCbTxt1.ThemeAware = true; - this.ppBtnDefCbTxt1.Visible = false; - // - // ppLblChgBarUserMsgTwoDefault - // - this.ppLblChgBarUserMsgTwoDefault.AutoSize = true; - this.ppLblChgBarUserMsgTwoDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblChgBarUserMsgTwoDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.ppLblChgBarUserMsgTwoDefault.Location = new System.Drawing.Point(88, 81); - this.ppLblChgBarUserMsgTwoDefault.Name = "ppLblChgBarUserMsgTwoDefault"; - this.ppLblChgBarUserMsgTwoDefault.Size = new System.Drawing.Size(61, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblChgBarUserMsgTwoDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Message Line Two", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Messag" + - "e Line Two setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); - this.ppLblChgBarUserMsgTwoDefault.TabIndex = 7; - this.ppLblChgBarUserMsgTwoDefault.Text = "(default)"; - // - // ppLblChgBarUserMsgOneDefault - // - this.ppLblChgBarUserMsgOneDefault.AutoSize = true; - this.ppLblChgBarUserMsgOneDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblChgBarUserMsgOneDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); - this.ppLblChgBarUserMsgOneDefault.Location = new System.Drawing.Point(88, 35); - this.ppLblChgBarUserMsgOneDefault.Name = "ppLblChgBarUserMsgOneDefault"; - this.ppLblChgBarUserMsgOneDefault.Size = new System.Drawing.Size(61, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblChgBarUserMsgOneDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Message Line One", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Messag" + - "e Line One setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.ppLblChgBarUserMsgOneDefault.TabIndex = 6; - this.ppLblChgBarUserMsgOneDefault.Text = "(default)"; - // - // label14 - // - this.label14.AutoSize = true; - this.label14.Location = new System.Drawing.Point(22, 11); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(63, 17); - this.label14.TabIndex = 4; - this.label14.Text = "Line one"; - // - // ppTxbxChangeBarUserMsgOne - // - this.ppTxbxChangeBarUserMsgOne.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_UserCBMess1", true)); - this.ppTxbxChangeBarUserMsgOne.Location = new System.Drawing.Point(91, 8); - this.ppTxbxChangeBarUserMsgOne.Multiline = false; - this.ppTxbxChangeBarUserMsgOne.Name = "ppTxbxChangeBarUserMsgOne"; - this.ppTxbxChangeBarUserMsgOne.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppTxbxChangeBarUserMsgOne, new DevComponents.DotNetBar.SuperTooltipInfo("User Defined Message", "", "This message will appear on all change bars", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppTxbxChangeBarUserMsgOne.TabIndex = 1; - this.ppTxbxChangeBarUserMsgOne.Text = ""; - this.ppTxbxChangeBarUserMsgOne.TextChanged += new System.EventHandler(this.ppTxbxChangeBarUserMsgOne_TextChanged); - // - // label15 - // - this.label15.AutoSize = true; - this.label15.Location = new System.Drawing.Point(22, 61); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(60, 17); - this.label15.TabIndex = 5; - this.label15.Text = "Line two"; - // - // ppTxbxChangeBarUserMsgTwo - // - this.ppTxbxChangeBarUserMsgTwo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_UserCBMess2", true)); - this.ppTxbxChangeBarUserMsgTwo.Location = new System.Drawing.Point(91, 58); - this.ppTxbxChangeBarUserMsgTwo.Multiline = false; - this.ppTxbxChangeBarUserMsgTwo.Name = "ppTxbxChangeBarUserMsgTwo"; - this.ppTxbxChangeBarUserMsgTwo.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppTxbxChangeBarUserMsgTwo, new DevComponents.DotNetBar.SuperTooltipInfo("User Defined Message", "", "This message will appear on all change bars", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppTxbxChangeBarUserMsgTwo.TabIndex = 2; - this.ppTxbxChangeBarUserMsgTwo.Text = ""; - this.ppTxbxChangeBarUserMsgTwo.TextChanged += new System.EventHandler(this.ppTxbxChangeBarUserMsgTwo_TextChanged); - // - // label13 - // - this.label13.AutoSize = true; - this.label13.Location = new System.Drawing.Point(6, 70); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(71, 17); - this.label13.TabIndex = 8; - this.label13.Text = "Text Type"; - // - // label12 - // - this.label12.AutoSize = true; - this.label12.Location = new System.Drawing.Point(20, 17); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(58, 17); - this.label12.TabIndex = 9; - this.label12.Text = "Position"; - // - // label10 - // - this.label10.AutoSize = true; - this.label10.BackColor = System.Drawing.Color.Transparent; - this.label10.Location = new System.Drawing.Point(15, 8); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(52, 17); - this.label10.TabIndex = 19; - this.label10.Text = "Format"; - // - // label11 - // - this.label11.AutoSize = true; - this.label11.BackColor = System.Drawing.Color.Transparent; - this.label11.Location = new System.Drawing.Point(29, 91); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(90, 17); - this.label11.TabIndex = 3; - this.label11.Text = "Change Bars"; - // - // ppBtnFldrDlg - // - this.ppBtnFldrDlg.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnFldrDlg.Image = ((System.Drawing.Image)(resources.GetObject("ppBtnFldrDlg.Image"))); - this.ppBtnFldrDlg.Location = new System.Drawing.Point(625, 18); - this.ppBtnFldrDlg.Name = "ppBtnFldrDlg"; - this.ppBtnFldrDlg.Size = new System.Drawing.Size(22, 23); - this.ppBtnFldrDlg.TabIndex = 44; - this.ppBtnFldrDlg.Click += new System.EventHandler(this.ppBtnFldrDlg_Click); - // - // ppTxbxRoFoldLoc - // - // - // - // - this.ppTxbxRoFoldLoc.Border.Class = "TextBoxBorder"; - this.ppTxbxRoFoldLoc.Location = new System.Drawing.Point(88, 18); - this.ppTxbxRoFoldLoc.Name = "ppTxbxRoFoldLoc"; - this.ppTxbxRoFoldLoc.Size = new System.Drawing.Size(531, 22); - this.ppTxbxRoFoldLoc.TabIndex = 43; - this.ppTxbxRoFoldLoc.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppTxbxRoFoldLoc.WatermarkText = "Enter Path to default RO folder"; - this.ppTxbxRoFoldLoc.TextChanged += new System.EventHandler(this.ppTxbxRoFoldLoc_TextChanged); - // - // ppBtnDefaultGrfExt - // - this.ppBtnDefaultGrfExt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultGrfExt.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppBtnDefaultGrfExt.Location = new System.Drawing.Point(477, 80); - this.ppBtnDefaultGrfExt.Name = "ppBtnDefaultGrfExt"; - this.ppBtnDefaultGrfExt.Size = new System.Drawing.Size(53, 23); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultGrfExt, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefaultGrfExt.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(265, 150))); - this.ppBtnDefaultGrfExt.TabIndex = 42; - this.ppBtnDefaultGrfExt.Text = "Default"; - this.ppBtnDefaultGrfExt.ThemeAware = true; - this.ppBtnDefaultGrfExt.Visible = false; - this.ppBtnDefaultGrfExt.Click += new System.EventHandler(this.ppBtnDefaultGrfExt_Click); - // - // ppCmbxDefROPrefix - // - this.ppCmbxDefROPrefix.DisplayMember = "Text"; - this.ppCmbxDefROPrefix.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxDefROPrefix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxDefROPrefix.FormattingEnabled = true; - this.ppCmbxDefROPrefix.Location = new System.Drawing.Point(15, 22); - this.ppCmbxDefROPrefix.Name = "ppCmbxDefROPrefix"; - this.ppCmbxDefROPrefix.Size = new System.Drawing.Size(251, 23); - this.ppCmbxDefROPrefix.TabIndex = 26; - this.ppCmbxDefROPrefix.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxDefROPrefix.WatermarkText = "Select RO Prefix"; - this.ppCmbxDefROPrefix.SelectedValueChanged += new System.EventHandler(this.ppCmbxDefROPrefix_SelectedValueChanged); - // - // ppBtnDefaultImgPrefix - // - this.ppBtnDefaultImgPrefix.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultImgPrefix.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppBtnDefaultImgPrefix.Location = new System.Drawing.Point(272, 94); - this.ppBtnDefaultImgPrefix.Name = "ppBtnDefaultImgPrefix"; - this.ppBtnDefaultImgPrefix.Size = new System.Drawing.Size(55, 23); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultImgPrefix, new DevComponents.DotNetBar.SuperTooltipInfo("Default Image Prefix", "", "Reset back to the default Image Prefix shown in italics", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppBtnDefaultImgPrefix.TabIndex = 40; - this.ppBtnDefaultImgPrefix.Text = "Default"; - this.ppBtnDefaultImgPrefix.ThemeAware = true; - this.ppBtnDefaultImgPrefix.Visible = false; - this.ppBtnDefaultImgPrefix.Click += new System.EventHandler(this.ppBtnDefaultImgPrefix_Click); - // - // label7 - // - this.label7.AutoSize = true; - this.label7.BackColor = System.Drawing.Color.Transparent; - this.label7.Location = new System.Drawing.Point(12, 3); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(117, 17); - this.label7.TabIndex = 15; - this.label7.Text = "Default RO Prefix"; - // - // ppBtnDefaultROPrefix - // - this.ppBtnDefaultROPrefix.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefaultROPrefix.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppBtnDefaultROPrefix.Location = new System.Drawing.Point(272, 22); - this.ppBtnDefaultROPrefix.Name = "ppBtnDefaultROPrefix"; - this.ppBtnDefaultROPrefix.Size = new System.Drawing.Size(53, 23); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultROPrefix, new DevComponents.DotNetBar.SuperTooltipInfo("Default RO Prefix", "", "Reset back to the default RO Prefix shown in italics", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppBtnDefaultROPrefix.TabIndex = 39; - this.ppBtnDefaultROPrefix.Text = "Default"; - this.ppBtnDefaultROPrefix.ThemeAware = true; - this.ppBtnDefaultROPrefix.Visible = false; - this.ppBtnDefaultROPrefix.Click += new System.EventHandler(this.ppBtnDefaultROPrefix_Click); - // - // label8 - // - this.label8.AutoSize = true; - this.label8.BackColor = System.Drawing.Color.Transparent; - this.label8.Location = new System.Drawing.Point(12, 75); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(134, 17); - this.label8.TabIndex = 17; - this.label8.Text = "Default Image Prefix"; - // - // ppLblROPrefixDefault - // - this.ppLblROPrefixDefault.AutoSize = true; - this.ppLblROPrefixDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblROPrefixDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblROPrefixDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblROPrefixDefault.Location = new System.Drawing.Point(12, 48); - this.ppLblROPrefixDefault.Name = "ppLblROPrefixDefault"; - this.ppLblROPrefixDefault.Size = new System.Drawing.Size(61, 17); - this.ppLblROPrefixDefault.TabIndex = 22; - this.ppLblROPrefixDefault.Text = "(default)"; - // - // ppCmbxDefImgPrefix - // - this.ppCmbxDefImgPrefix.DisplayMember = "Text"; - this.ppCmbxDefImgPrefix.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxDefImgPrefix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxDefImgPrefix.FormattingEnabled = true; - this.ppCmbxDefImgPrefix.Location = new System.Drawing.Point(15, 94); - this.ppCmbxDefImgPrefix.Name = "ppCmbxDefImgPrefix"; - this.ppCmbxDefImgPrefix.Size = new System.Drawing.Size(251, 23); - this.ppCmbxDefImgPrefix.TabIndex = 27; - this.ppCmbxDefImgPrefix.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxDefImgPrefix.WatermarkText = "Select Image Prefix"; - this.ppCmbxDefImgPrefix.SelectedValueChanged += new System.EventHandler(this.ppCmbxDefImgPrefix_SelectedValueChanged); - // - // ppLblImagePrefixDefault - // - this.ppLblImagePrefixDefault.AutoSize = true; - this.ppLblImagePrefixDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblImagePrefixDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblImagePrefixDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblImagePrefixDefault.Location = new System.Drawing.Point(12, 120); - this.ppLblImagePrefixDefault.Name = "ppLblImagePrefixDefault"; - this.ppLblImagePrefixDefault.Size = new System.Drawing.Size(61, 17); - this.ppLblImagePrefixDefault.TabIndex = 23; - this.ppLblImagePrefixDefault.Text = "(default)"; - // - // ppLblROFldrLocDefault - // - this.ppLblROFldrLocDefault.AutoSize = true; - this.ppLblROFldrLocDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblROFldrLocDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblROFldrLocDefault.ForeColor = System.Drawing.SystemColors.ControlDarkDark; - this.ppLblROFldrLocDefault.Location = new System.Drawing.Point(93, 43); - this.ppLblROFldrLocDefault.Name = "ppLblROFldrLocDefault"; - this.ppLblROFldrLocDefault.Size = new System.Drawing.Size(371, 17); - this.ppLblROFldrLocDefault.TabIndex = 38; - this.ppLblROFldrLocDefault.Text = "(..\\RO ) - not visible right know... there is no default saved"; - this.ppLblROFldrLocDefault.Visible = false; - // - // ppCmbxGrphFileExt - // - this.ppCmbxGrphFileExt.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Graphics_defaultext", true)); - this.ppCmbxGrphFileExt.DataSource = this.imageCodecInfoBindingSource; - this.ppCmbxGrphFileExt.DisplayMember = "FilenameExtension"; - this.ppCmbxGrphFileExt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxGrphFileExt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxGrphFileExt.FormattingEnabled = true; - this.ppCmbxGrphFileExt.Location = new System.Drawing.Point(217, 80); - this.ppCmbxGrphFileExt.Name = "ppCmbxGrphFileExt"; - this.ppCmbxGrphFileExt.Size = new System.Drawing.Size(254, 23); - this.ppCmbxGrphFileExt.TabIndex = 25; - this.ppCmbxGrphFileExt.ValueMember = "FormatDescription"; - this.ppCmbxGrphFileExt.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxGrphFileExt.WatermarkText = "Select Graphic File Extension"; - this.ppCmbxGrphFileExt.SelectedValueChanged += new System.EventHandler(this.ppCmbxGrphFileExt_SelectedValueChanged); - // - // imageCodecInfoBindingSource - // - this.imageCodecInfoBindingSource.DataSource = typeof(System.Drawing.Imaging.ImageCodecInfo); - // - // ppLblGraphicFileExtDefault - // - this.ppLblGraphicFileExtDefault.AutoSize = true; - this.ppLblGraphicFileExtDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblGraphicFileExtDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblGraphicFileExtDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblGraphicFileExtDefault.Location = new System.Drawing.Point(216, 106); - this.ppLblGraphicFileExtDefault.Name = "ppLblGraphicFileExtDefault"; - this.ppLblGraphicFileExtDefault.Size = new System.Drawing.Size(61, 17); - this.ppLblGraphicFileExtDefault.TabIndex = 21; - this.ppLblGraphicFileExtDefault.Text = "(default)"; - // - // ppBtnResetRoVals - // - this.ppBtnResetRoVals.Location = new System.Drawing.Point(37, 104); - this.ppBtnResetRoVals.Name = "ppBtnResetRoVals"; - this.ppBtnResetRoVals.Size = new System.Drawing.Size(72, 77); - this.ppBtnResetRoVals.TabIndex = 20; - this.ppBtnResetRoVals.Text = "Reset to Previous Values"; - this.ppBtnResetRoVals.UseVisualStyleBackColor = true; - this.ppBtnResetRoVals.Visible = false; - // - // ppBtnUpRoVals - // - this.ppBtnUpRoVals.Location = new System.Drawing.Point(37, 25); - this.ppBtnUpRoVals.Name = "ppBtnUpRoVals"; - this.ppBtnUpRoVals.Size = new System.Drawing.Size(67, 77); - this.superTooltip1.SetSuperTooltip(this.ppBtnUpRoVals, new DevComponents.DotNetBar.SuperTooltipInfo("Update Referenced Objects Values", "", "This button will update all of the Referenced Objects Values in all of the proced" + - "ures in this procedure set.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); - this.ppBtnUpRoVals.TabIndex = 19; - this.ppBtnUpRoVals.Text = "Update RO Values"; - this.ppBtnUpRoVals.UseVisualStyleBackColor = true; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.BackColor = System.Drawing.Color.Transparent; - this.label6.Location = new System.Drawing.Point(12, 21); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(73, 17); - this.label6.TabIndex = 12; - this.label6.Text = "RO Folder"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.BackColor = System.Drawing.Color.Transparent; - this.label5.Location = new System.Drawing.Point(62, 80); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(149, 17); - this.label5.TabIndex = 7; - this.label5.Text = "Graphic File Extension"; - // - // ppCmbxProcSetType - // - this.ppCmbxProcSetType.DisplayMember = "Text"; - this.ppCmbxProcSetType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxProcSetType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxProcSetType.FormattingEnabled = true; - this.ppCmbxProcSetType.Location = new System.Drawing.Point(229, 259); - this.ppCmbxProcSetType.Name = "ppCmbxProcSetType"; - this.ppCmbxProcSetType.Size = new System.Drawing.Size(176, 23); - this.ppCmbxProcSetType.TabIndex = 17; - this.ppCmbxProcSetType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxProcSetType.WatermarkText = "select procedure set type"; - // - // label9 - // - this.label9.AutoSize = true; - this.label9.BackColor = System.Drawing.Color.Transparent; - this.label9.Location = new System.Drawing.Point(28, 261); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(195, 17); - this.label9.TabIndex = 16; - this.label9.Text = "Procedure Set Type (version)"; - // - // ppRTxtName - // - this.ppRTxtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Name", true)); - this.ppRTxtName.Location = new System.Drawing.Point(74, 19); - this.ppRTxtName.Multiline = false; - this.ppRTxtName.Name = "ppRTxtName"; - this.ppRTxtName.Size = new System.Drawing.Size(279, 22); - this.ppRTxtName.TabIndex = 14; - this.ppRTxtName.Text = ""; - // - // ppRTxtTitle - // - this.ppRTxtTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Title", true)); - this.ppRTxtTitle.Location = new System.Drawing.Point(75, 70); - this.ppRTxtTitle.Name = "ppRTxtTitle"; - this.ppRTxtTitle.Size = new System.Drawing.Size(541, 60); - this.ppRTxtTitle.TabIndex = 13; - this.ppRTxtTitle.Text = ""; - this.ppRTxtTitle.Visible = false; - // - // ppDTPicker - // - this.ppDTPicker.CustomFormat = "MM\'/\'dd\'/\'yyyy hh\':\'mm:ss tt"; - this.ppDTPicker.Enabled = false; - this.ppDTPicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom; - this.ppDTPicker.Location = new System.Drawing.Point(106, 151); - this.ppDTPicker.Name = "ppDTPicker"; - this.ppDTPicker.Size = new System.Drawing.Size(172, 22); - this.ppDTPicker.TabIndex = 12; - this.ppDTPicker.Visible = false; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Transparent; - this.label1.Location = new System.Drawing.Point(34, 73); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(35, 17); - this.label1.TabIndex = 3; - this.label1.Text = "Title"; - this.label1.Visible = false; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.BackColor = System.Drawing.Color.Transparent; - this.label2.Location = new System.Drawing.Point(23, 22); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(45, 17); - this.label2.TabIndex = 4; - this.label2.Text = "Name"; - // - // ppTxtBxUserID - // - this.ppTxtBxUserID.Enabled = false; - this.ppTxtBxUserID.Location = new System.Drawing.Point(95, 208); - this.ppTxtBxUserID.Name = "ppTxtBxUserID"; - this.ppTxtBxUserID.Size = new System.Drawing.Size(154, 22); - this.ppTxtBxUserID.TabIndex = 10; - this.ppTxtBxUserID.Visible = false; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.BackColor = System.Drawing.Color.Transparent; - this.label3.Location = new System.Drawing.Point(34, 211); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(55, 17); - this.label3.TabIndex = 5; - this.label3.Text = "User ID"; - this.label3.Visible = false; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.BackColor = System.Drawing.Color.Transparent; - this.label4.Location = new System.Drawing.Point(27, 154); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(73, 17); - this.label4.TabIndex = 6; - this.label4.Text = "Date/Time"; - this.label4.Visible = false; - // - // ppBtnPDFLoc - // - this.ppBtnPDFLoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnPDFLoc.Image = ((System.Drawing.Image)(resources.GetObject("ppBtnPDFLoc.Image"))); - this.ppBtnPDFLoc.Location = new System.Drawing.Point(617, 15); - this.ppBtnPDFLoc.Name = "ppBtnPDFLoc"; - this.ppBtnPDFLoc.Size = new System.Drawing.Size(22, 23); - this.ppBtnPDFLoc.TabIndex = 64; - // - // ppNumUpDwnOvrdPrnPenWidth - // - this.ppNumUpDwnOvrdPrnPenWidth.Location = new System.Drawing.Point(234, 15); - this.ppNumUpDwnOvrdPrnPenWidth.Name = "ppNumUpDwnOvrdPrnPenWidth"; - this.ppNumUpDwnOvrdPrnPenWidth.Size = new System.Drawing.Size(47, 22); - this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnOvrdPrnPenWidth, new DevComponents.DotNetBar.SuperTooltipInfo("Normal Pen Width", "", "This will allow you to override pen width used for normal text and line drawing.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppNumUpDwnOvrdPrnPenWidth.TabIndex = 1; - // - // label19 - // - this.label19.AutoSize = true; - this.label19.BackColor = System.Drawing.Color.Transparent; - this.label19.Location = new System.Drawing.Point(6, 17); - this.label19.Name = "label19"; - this.label19.Size = new System.Drawing.Size(222, 17); - this.label19.TabIndex = 0; - this.label19.Text = "Override Normal Pen Width (dots)"; - // - // label20 - // - this.label20.AutoSize = true; - this.label20.BackColor = System.Drawing.Color.Transparent; - this.label20.Location = new System.Drawing.Point(6, 60); - this.label20.Name = "label20"; - this.label20.Size = new System.Drawing.Size(205, 17); - this.label20.TabIndex = 2; - this.label20.Text = "Override Bold Pen Width (dots)"; - // - // ppNumUpDwnOverdPrnPenBoldWidth - // - this.ppNumUpDwnOverdPrnPenBoldWidth.Location = new System.Drawing.Point(234, 58); - this.ppNumUpDwnOverdPrnPenBoldWidth.Name = "ppNumUpDwnOverdPrnPenBoldWidth"; - this.ppNumUpDwnOverdPrnPenBoldWidth.Size = new System.Drawing.Size(47, 22); - this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnOverdPrnPenBoldWidth, new DevComponents.DotNetBar.SuperTooltipInfo("Bold Pen Width", "", "This will allow you to override the width used for bold text.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppNumUpDwnOverdPrnPenBoldWidth.TabIndex = 3; - // - // ppNumUpDwnOvrdPrnPenULineWidth - // - this.ppNumUpDwnOvrdPrnPenULineWidth.Location = new System.Drawing.Point(560, 15); - this.ppNumUpDwnOvrdPrnPenULineWidth.Name = "ppNumUpDwnOvrdPrnPenULineWidth"; - this.ppNumUpDwnOvrdPrnPenULineWidth.Size = new System.Drawing.Size(47, 22); - this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnOvrdPrnPenULineWidth, new DevComponents.DotNetBar.SuperTooltipInfo("Underline Thickness", "", "This will allow you to change the thickness of the uderline.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppNumUpDwnOvrdPrnPenULineWidth.TabIndex = 5; - // - // label21 - // - this.label21.AutoSize = true; - this.label21.BackColor = System.Drawing.Color.Transparent; - this.label21.Location = new System.Drawing.Point(317, 17); - this.label21.Name = "label21"; - this.label21.Size = new System.Drawing.Size(237, 17); - this.label21.TabIndex = 4; - this.label21.Text = "Override Underline Thickness (dots)"; - // - // ppNumUpDwnAdjPrnStartPos - // - this.ppNumUpDwnAdjPrnStartPos.Location = new System.Drawing.Point(560, 58); - this.ppNumUpDwnAdjPrnStartPos.Maximum = new decimal(new int[] { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmVersionsProperties)); + this.ppBtnCancel = new System.Windows.Forms.Button(); + this.ppBtnOK = new System.Windows.Forms.Button(); + this.ppBtnDefaultChgBar = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxChangeBarType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.docVersionConfigBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.ppBtnDefaultFmt = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxFormat = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.formatInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.ppLblChangeBarTypeDefault = new System.Windows.Forms.Label(); + this.ppLblFormatDefault = new System.Windows.Forms.Label(); + this.ppBtnDefCbTxtTyp = new DevComponents.DotNetBar.ButtonX(); + this.ppBtnDefaultCbPos = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxChgBarTxtType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppCmbxChgBarPos = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppLblChgBarTxtTypeDefault = new System.Windows.Forms.Label(); + this.ppLblChgBarPosDefault = new System.Windows.Forms.Label(); + this.ppBtnDefCbTxt2 = new DevComponents.DotNetBar.ButtonX(); + this.ppBtnDefCbTxt1 = new DevComponents.DotNetBar.ButtonX(); + this.ppLblChgBarUserMsgTwoDefault = new System.Windows.Forms.Label(); + this.ppLblChgBarUserMsgOneDefault = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.ppTxbxChangeBarUserMsgOne = new System.Windows.Forms.RichTextBox(); + this.label15 = new System.Windows.Forms.Label(); + this.ppTxbxChangeBarUserMsgTwo = new System.Windows.Forms.RichTextBox(); + this.label13 = new System.Windows.Forms.Label(); + this.label12 = new System.Windows.Forms.Label(); + this.label10 = new System.Windows.Forms.Label(); + this.label11 = new System.Windows.Forms.Label(); + this.ppBtnFldrDlg = new DevComponents.DotNetBar.ButtonX(); + this.ppTxbxRoFoldLoc = new DevComponents.DotNetBar.Controls.TextBoxX(); + this.ppBtnDefaultGrfExt = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxDefROPrefix = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppBtnDefaultImgPrefix = new DevComponents.DotNetBar.ButtonX(); + this.label7 = new System.Windows.Forms.Label(); + this.ppBtnDefaultROPrefix = new DevComponents.DotNetBar.ButtonX(); + this.label8 = new System.Windows.Forms.Label(); + this.ppLblROPrefixDefault = new System.Windows.Forms.Label(); + this.ppCmbxDefImgPrefix = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppLblImagePrefixDefault = new System.Windows.Forms.Label(); + this.ppLblROFldrLocDefault = new System.Windows.Forms.Label(); + this.ppCmbxGrphFileExt = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.imageCodecInfoBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.ppLblGraphicFileExtDefault = new System.Windows.Forms.Label(); + this.ppBtnResetRoVals = new System.Windows.Forms.Button(); + this.ppBtnUpRoVals = new System.Windows.Forms.Button(); + this.label6 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.ppCmbxProcSetType = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.label9 = new System.Windows.Forms.Label(); + this.ppRTxtName = new System.Windows.Forms.RichTextBox(); + this.ppRTxtTitle = new System.Windows.Forms.RichTextBox(); + this.ppDTPicker = new System.Windows.Forms.DateTimePicker(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.ppTxtBxUserID = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.ppBtnPDFLoc = new DevComponents.DotNetBar.ButtonX(); + this.ppNumUpDwnOvrdPrnPenWidth = new System.Windows.Forms.NumericUpDown(); + this.label19 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.ppNumUpDwnOverdPrnPenBoldWidth = new System.Windows.Forms.NumericUpDown(); + this.ppNumUpDwnOvrdPrnPenULineWidth = new System.Windows.Forms.NumericUpDown(); + this.label21 = new System.Windows.Forms.Label(); + this.ppNumUpDwnAdjPrnStartPos = new System.Windows.Forms.NumericUpDown(); + this.label22 = new System.Windows.Forms.Label(); + this.ppBtnDeftDisAutoDuplx = new DevComponents.DotNetBar.ButtonX(); + this.ppBtnDefWatermark = new DevComponents.DotNetBar.ButtonX(); + this.ppBtnDefPagination = new DevComponents.DotNetBar.ButtonX(); + this.ppCmbxWatermark = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppCmbxPagination = new DevComponents.DotNetBar.Controls.ComboBoxEx(); + this.ppLblWatermarkDefault = new System.Windows.Forms.Label(); + this.ppLblPaginationDefault = new System.Windows.Forms.Label(); + this.ppTxtBxPDFLoc = new System.Windows.Forms.TextBox(); + this.label18 = new System.Windows.Forms.Label(); + this.ppLblAutoDuplexDefault = new System.Windows.Forms.Label(); + this.ppChbxDisAutoDuplex = new System.Windows.Forms.CheckBox(); + this.label16 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.ppGrdLibDocList = new C1.Win.C1FlexGrid.C1FlexGrid(); + this.documentInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components); + this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip(); + this.ppCbShwDefSettings = new DevComponents.DotNetBar.Controls.CheckBoxX(); + this.ppGpbxUserSpecCB = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.ppGpbxUserSpecTxt = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.ppLblDefSettingsInfo = new System.Windows.Forms.Label(); + this.dlgROFolder = new System.Windows.Forms.FolderBrowserDialog(); + this.tcVersions = new DevComponents.DotNetBar.TabControl(); + this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiLibDocs = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel(); + this.tiFmtSettings = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel(); + this.ppGrpbxPrnAdj = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.tiOutputSettings = new DevComponents.DotNetBar.TabItem(this.components); + this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel(); + this.ppGpbxUpROvals = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.ppGpbxDefAccID = new DevComponents.DotNetBar.Controls.GroupPanel(); + this.tiRefObjs = new DevComponents.DotNetBar.TabItem(this.components); + this.panVerBtns = new System.Windows.Forms.Panel(); + this.btnLibDocs = new DevComponents.DotNetBar.ButtonX(); + this.btnFmtSettings = new DevComponents.DotNetBar.ButtonX(); + this.btnOutputSettings = new DevComponents.DotNetBar.ButtonX(); + this.btnRefObjs = new DevComponents.DotNetBar.ButtonX(); + this.btnGeneral = new DevComponents.DotNetBar.ButtonX(); + ((System.ComponentModel.ISupportInitialize)(this.docVersionConfigBindingSource)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.formatInfoListBindingSource)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.imageCodecInfoBindingSource)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenWidth)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOverdPrnPenBoldWidth)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenULineWidth)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnAdjPrnStartPos)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.documentInfoListBindingSource)).BeginInit(); + this.ppGpbxUserSpecCB.SuspendLayout(); + this.ppGpbxUserSpecTxt.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tcVersions)).BeginInit(); + this.tcVersions.SuspendLayout(); + this.tabControlPanel5.SuspendLayout(); + this.tabControlPanel1.SuspendLayout(); + this.tabControlPanel4.SuspendLayout(); + this.tabControlPanel3.SuspendLayout(); + this.ppGrpbxPrnAdj.SuspendLayout(); + this.tabControlPanel2.SuspendLayout(); + this.ppGpbxUpROvals.SuspendLayout(); + this.ppGpbxDefAccID.SuspendLayout(); + this.panVerBtns.SuspendLayout(); + this.SuspendLayout(); + // + // ppBtnCancel + // + this.ppBtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.ppBtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.ppBtnCancel.Location = new System.Drawing.Point(566, 300); + this.ppBtnCancel.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnCancel.Name = "ppBtnCancel"; + this.ppBtnCancel.Size = new System.Drawing.Size(56, 21); + this.ppBtnCancel.TabIndex = 16; + this.ppBtnCancel.Text = "Cancel"; + this.ppBtnCancel.UseVisualStyleBackColor = true; + this.ppBtnCancel.Click += new System.EventHandler(this.btnFldrPropCancel_Click); + // + // ppBtnOK + // + this.ppBtnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.ppBtnOK.Location = new System.Drawing.Point(493, 300); + this.ppBtnOK.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnOK.Name = "ppBtnOK"; + this.ppBtnOK.Size = new System.Drawing.Size(56, 21); + this.ppBtnOK.TabIndex = 15; + this.ppBtnOK.Text = "OK"; + this.ppBtnOK.UseVisualStyleBackColor = true; + this.ppBtnOK.Click += new System.EventHandler(this.btnFlderPropOK_Click); + // + // ppBtnDefaultChgBar + // + this.ppBtnDefaultChgBar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultChgBar.Location = new System.Drawing.Point(265, 72); + this.ppBtnDefaultChgBar.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultChgBar.Name = "ppBtnDefaultChgBar"; + this.ppBtnDefaultChgBar.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultChgBar, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", "This will revert the Change Bar selection back to using the parent\'s (default) se" + + "tting.\r\n\r\nCheck \"Show Default Settings\" to display the \"default\" Change Bar (bel" + + "ow the Change Bars selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(250, 145))); + this.ppBtnDefaultChgBar.TabIndex = 48; + this.ppBtnDefaultChgBar.Text = "Default"; + this.ppBtnDefaultChgBar.ThemeAware = true; + this.ppBtnDefaultChgBar.Visible = false; + this.ppBtnDefaultChgBar.Click += new System.EventHandler(this.ppBtnDefaultChgBar_Click); + // + // ppCmbxChangeBarType + // + this.ppCmbxChangeBarType.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_ChangeBar", true)); + this.ppCmbxChangeBarType.DisplayMember = "Text"; + this.ppCmbxChangeBarType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxChangeBarType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxChangeBarType.FormattingEnabled = true; + this.ppCmbxChangeBarType.Location = new System.Drawing.Point(94, 72); + this.ppCmbxChangeBarType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxChangeBarType.Name = "ppCmbxChangeBarType"; + this.ppCmbxChangeBarType.Size = new System.Drawing.Size(168, 21); + this.ppCmbxChangeBarType.TabIndex = 47; + this.ppCmbxChangeBarType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxChangeBarType.WatermarkText = "select change bar setting"; + this.ppCmbxChangeBarType.SelectedValueChanged += new System.EventHandler(this.ppCmbxChangeBarType_SelectedValueChanged); + // + // docVersionConfigBindingSource + // + this.docVersionConfigBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.DocVersionConfig); + // + // ppBtnDefaultFmt + // + this.ppBtnDefaultFmt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultFmt.Location = new System.Drawing.Point(445, 23); + this.ppBtnDefaultFmt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultFmt.Name = "ppBtnDefaultFmt"; + this.ppBtnDefaultFmt.Size = new System.Drawing.Size(38, 19); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultFmt, new DevComponents.DotNetBar.SuperTooltipInfo("Default Button", "", "This will revert the format selection back to using the parent\'s format.\r\n\r\nCheck" + + " \"Show Default Settings\" to display the \"default\" format name (below the format " + + "selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppBtnDefaultFmt.TabIndex = 46; + this.ppBtnDefaultFmt.Text = "Reset"; + this.ppBtnDefaultFmt.ThemeAware = true; + this.ppBtnDefaultFmt.Click += new System.EventHandler(this.ppBtnDefaultFmt_Click); + // + // ppCmbxFormat + // + this.ppCmbxFormat.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "FormatSelection", true)); + this.ppCmbxFormat.DataSource = this.formatInfoListBindingSource; + this.ppCmbxFormat.DisplayMember = "Description"; + this.ppCmbxFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxFormat.FormattingEnabled = true; + this.ppCmbxFormat.Location = new System.Drawing.Point(14, 23); + this.ppCmbxFormat.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxFormat.Name = "ppCmbxFormat"; + this.ppCmbxFormat.Size = new System.Drawing.Size(422, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxFormat, new DevComponents.DotNetBar.SuperTooltipInfo("Format Selection", "", resources.GetString("ppCmbxFormat.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCmbxFormat.TabIndex = 28; + this.ppCmbxFormat.ValueMember = "Description"; + this.ppCmbxFormat.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxFormat.WatermarkText = "Select a Format"; + this.ppCmbxFormat.SelectedValueChanged += new System.EventHandler(this.ppCmbxFormat_SelectedValueChanged); + // + // formatInfoListBindingSource + // + this.formatInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.FormatInfo); + // + // ppLblChangeBarTypeDefault + // + this.ppLblChangeBarTypeDefault.AutoSize = true; + this.ppLblChangeBarTypeDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblChangeBarTypeDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblChangeBarTypeDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ppLblChangeBarTypeDefault.Location = new System.Drawing.Point(93, 93); + this.ppLblChangeBarTypeDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblChangeBarTypeDefault.Name = "ppLblChangeBarTypeDefault"; + this.ppLblChangeBarTypeDefault.Size = new System.Drawing.Size(79, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblChangeBarTypeDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Change Bar setting", "", "Pressing the Default Button (to the right)\r\nwill set the Change Bar setting back " + + "to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(270, 70))); + this.ppLblChangeBarTypeDefault.TabIndex = 27; + this.ppLblChangeBarTypeDefault.Text = "(default setting)"; + // + // ppLblFormatDefault + // + this.ppLblFormatDefault.AutoSize = true; + this.ppLblFormatDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblFormatDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblFormatDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblFormatDefault.Location = new System.Drawing.Point(11, 45); + this.ppLblFormatDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblFormatDefault.Name = "ppLblFormatDefault"; + this.ppLblFormatDefault.Size = new System.Drawing.Size(45, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblFormatDefault, new DevComponents.DotNetBar.SuperTooltipInfo("The is the default Format setting", "", "Pressing the Reset Button (to the right)\r\nwill set the format setting back to thi" + + "s.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(255, 70))); + this.ppLblFormatDefault.TabIndex = 26; + this.ppLblFormatDefault.Text = "(default)"; + // + // ppBtnDefCbTxtTyp + // + this.ppBtnDefCbTxtTyp.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefCbTxtTyp.Location = new System.Drawing.Point(200, 54); + this.ppBtnDefCbTxtTyp.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefCbTxtTyp.Name = "ppBtnDefCbTxtTyp"; + this.ppBtnDefCbTxtTyp.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefCbTxtTyp, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefCbTxtTyp.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(235, 150))); + this.ppBtnDefCbTxtTyp.TabIndex = 50; + this.ppBtnDefCbTxtTyp.Text = "Default"; + this.ppBtnDefCbTxtTyp.ThemeAware = true; + this.ppBtnDefCbTxtTyp.Visible = false; + this.ppBtnDefCbTxtTyp.Click += new System.EventHandler(this.ppBtnDefCbTxtTyp_Click); + // + // ppBtnDefaultCbPos + // + this.ppBtnDefaultCbPos.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultCbPos.Location = new System.Drawing.Point(200, 12); + this.ppBtnDefaultCbPos.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultCbPos.Name = "ppBtnDefaultCbPos"; + this.ppBtnDefaultCbPos.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultCbPos, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefaultCbPos.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 145))); + this.ppBtnDefaultCbPos.TabIndex = 49; + this.ppBtnDefaultCbPos.Text = "Default"; + this.ppBtnDefaultCbPos.ThemeAware = true; + this.ppBtnDefaultCbPos.Visible = false; + this.ppBtnDefaultCbPos.Click += new System.EventHandler(this.ppBtnDefaultCbPos_Click); + // + // ppCmbxChgBarTxtType + // + this.ppCmbxChgBarTxtType.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_ChangeBarText", true)); + this.ppCmbxChgBarTxtType.DisplayMember = "Text"; + this.ppCmbxChgBarTxtType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxChgBarTxtType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxChgBarTxtType.FormattingEnabled = true; + this.ppCmbxChgBarTxtType.Location = new System.Drawing.Point(61, 55); + this.ppCmbxChgBarTxtType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxChgBarTxtType.Name = "ppCmbxChgBarTxtType"; + this.ppCmbxChgBarTxtType.Size = new System.Drawing.Size(136, 21); + this.ppCmbxChgBarTxtType.TabIndex = 48; + this.ppCmbxChgBarTxtType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxChgBarTxtType.WatermarkText = "select change bar text type"; + this.ppCmbxChgBarTxtType.SelectedValueChanged += new System.EventHandler(this.ppCmbxChgBarTxtType_SelectedValueChanged); + // + // ppCmbxChgBarPos + // + this.ppCmbxChgBarPos.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_ChangeBarLoc", true)); + this.ppCmbxChgBarPos.DisplayMember = "Text"; + this.ppCmbxChgBarPos.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxChgBarPos.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxChgBarPos.FormattingEnabled = true; + this.ppCmbxChgBarPos.Location = new System.Drawing.Point(62, 12); + this.ppCmbxChgBarPos.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxChgBarPos.Name = "ppCmbxChgBarPos"; + this.ppCmbxChgBarPos.Size = new System.Drawing.Size(135, 21); + this.ppCmbxChgBarPos.TabIndex = 48; + this.ppCmbxChgBarPos.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxChgBarPos.WatermarkText = "select change bar position"; + this.ppCmbxChgBarPos.SelectedValueChanged += new System.EventHandler(this.ppCmbxChgBarPos_SelectedValueChanged); + // + // ppLblChgBarTxtTypeDefault + // + this.ppLblChgBarTxtTypeDefault.AutoSize = true; + this.ppLblChgBarTxtTypeDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblChgBarTxtTypeDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ppLblChgBarTxtTypeDefault.Location = new System.Drawing.Point(59, 76); + this.ppLblChgBarTxtTypeDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblChgBarTxtTypeDefault.Name = "ppLblChgBarTxtTypeDefault"; + this.ppLblChgBarTxtTypeDefault.Size = new System.Drawing.Size(79, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblChgBarTxtTypeDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Change Bar Text Type", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Positi" + + "on setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); + this.ppLblChgBarTxtTypeDefault.TabIndex = 13; + this.ppLblChgBarTxtTypeDefault.Text = "(default setting)"; + // + // ppLblChgBarPosDefault + // + this.ppLblChgBarPosDefault.AutoSize = true; + this.ppLblChgBarPosDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblChgBarPosDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ppLblChgBarPosDefault.Location = new System.Drawing.Point(63, 33); + this.ppLblChgBarPosDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblChgBarPosDefault.Name = "ppLblChgBarPosDefault"; + this.ppLblChgBarPosDefault.Size = new System.Drawing.Size(79, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblChgBarPosDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Change Bar Position", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Positi" + + "on setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(300, 80))); + this.ppLblChgBarPosDefault.TabIndex = 12; + this.ppLblChgBarPosDefault.Text = "(default setting)"; + // + // ppBtnDefCbTxt2 + // + this.ppBtnDefCbTxt2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefCbTxt2.Location = new System.Drawing.Point(119, 47); + this.ppBtnDefCbTxt2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefCbTxt2.Name = "ppBtnDefCbTxt2"; + this.ppBtnDefCbTxt2.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefCbTxt2, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefCbTxt2.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 150))); + this.ppBtnDefCbTxt2.TabIndex = 50; + this.ppBtnDefCbTxt2.Text = "Default"; + this.ppBtnDefCbTxt2.ThemeAware = true; + this.ppBtnDefCbTxt2.Visible = false; + // + // ppBtnDefCbTxt1 + // + this.ppBtnDefCbTxt1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefCbTxt1.Location = new System.Drawing.Point(119, 6); + this.ppBtnDefCbTxt1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefCbTxt1.Name = "ppBtnDefCbTxt1"; + this.ppBtnDefCbTxt1.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefCbTxt1, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefCbTxt1.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 150))); + this.ppBtnDefCbTxt1.TabIndex = 49; + this.ppBtnDefCbTxt1.Text = "Default"; + this.ppBtnDefCbTxt1.ThemeAware = true; + this.ppBtnDefCbTxt1.Visible = false; + // + // ppLblChgBarUserMsgTwoDefault + // + this.ppLblChgBarUserMsgTwoDefault.AutoSize = true; + this.ppLblChgBarUserMsgTwoDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblChgBarUserMsgTwoDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ppLblChgBarUserMsgTwoDefault.Location = new System.Drawing.Point(66, 66); + this.ppLblChgBarUserMsgTwoDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblChgBarUserMsgTwoDefault.Name = "ppLblChgBarUserMsgTwoDefault"; + this.ppLblChgBarUserMsgTwoDefault.Size = new System.Drawing.Size(45, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblChgBarUserMsgTwoDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Message Line Two", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Messag" + + "e Line Two setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); + this.ppLblChgBarUserMsgTwoDefault.TabIndex = 7; + this.ppLblChgBarUserMsgTwoDefault.Text = "(default)"; + // + // ppLblChgBarUserMsgOneDefault + // + this.ppLblChgBarUserMsgOneDefault.AutoSize = true; + this.ppLblChgBarUserMsgOneDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblChgBarUserMsgOneDefault.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64))))); + this.ppLblChgBarUserMsgOneDefault.Location = new System.Drawing.Point(66, 28); + this.ppLblChgBarUserMsgOneDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblChgBarUserMsgOneDefault.Name = "ppLblChgBarUserMsgOneDefault"; + this.ppLblChgBarUserMsgOneDefault.Size = new System.Drawing.Size(45, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblChgBarUserMsgOneDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Custom Message Line One", "", "Pressing the Default Button (to the right) will set the Cusotom Change Bar Messag" + + "e Line One setting back to this.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.ppLblChgBarUserMsgOneDefault.TabIndex = 6; + this.ppLblChgBarUserMsgOneDefault.Text = "(default)"; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(16, 9); + this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(48, 13); + this.label14.TabIndex = 4; + this.label14.Text = "Line one"; + // + // ppTxbxChangeBarUserMsgOne + // + this.ppTxbxChangeBarUserMsgOne.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_UserCBMess1", true)); + this.ppTxbxChangeBarUserMsgOne.Location = new System.Drawing.Point(68, 6); + this.ppTxbxChangeBarUserMsgOne.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppTxbxChangeBarUserMsgOne.Multiline = false; + this.ppTxbxChangeBarUserMsgOne.Name = "ppTxbxChangeBarUserMsgOne"; + this.ppTxbxChangeBarUserMsgOne.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppTxbxChangeBarUserMsgOne, new DevComponents.DotNetBar.SuperTooltipInfo("User Defined Message", "", "This message will appear on all change bars", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppTxbxChangeBarUserMsgOne.TabIndex = 1; + this.ppTxbxChangeBarUserMsgOne.Text = ""; + this.ppTxbxChangeBarUserMsgOne.TextChanged += new System.EventHandler(this.ppTxbxChangeBarUserMsgOne_TextChanged); + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Location = new System.Drawing.Point(16, 50); + this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(47, 13); + this.label15.TabIndex = 5; + this.label15.Text = "Line two"; + // + // ppTxbxChangeBarUserMsgTwo + // + this.ppTxbxChangeBarUserMsgTwo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_UserCBMess2", true)); + this.ppTxbxChangeBarUserMsgTwo.Location = new System.Drawing.Point(68, 47); + this.ppTxbxChangeBarUserMsgTwo.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppTxbxChangeBarUserMsgTwo.Multiline = false; + this.ppTxbxChangeBarUserMsgTwo.Name = "ppTxbxChangeBarUserMsgTwo"; + this.ppTxbxChangeBarUserMsgTwo.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppTxbxChangeBarUserMsgTwo, new DevComponents.DotNetBar.SuperTooltipInfo("User Defined Message", "", "This message will appear on all change bars", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppTxbxChangeBarUserMsgTwo.TabIndex = 2; + this.ppTxbxChangeBarUserMsgTwo.Text = ""; + this.ppTxbxChangeBarUserMsgTwo.TextChanged += new System.EventHandler(this.ppTxbxChangeBarUserMsgTwo_TextChanged); + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Location = new System.Drawing.Point(4, 57); + this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(55, 13); + this.label13.TabIndex = 8; + this.label13.Text = "Text Type"; + // + // label12 + // + this.label12.AutoSize = true; + this.label12.Location = new System.Drawing.Point(15, 14); + this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(44, 13); + this.label12.TabIndex = 9; + this.label12.Text = "Position"; + // + // label10 + // + this.label10.AutoSize = true; + this.label10.BackColor = System.Drawing.Color.Transparent; + this.label10.Location = new System.Drawing.Point(11, 6); + this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(39, 13); + this.label10.TabIndex = 19; + this.label10.Text = "Format"; + // + // label11 + // + this.label11.AutoSize = true; + this.label11.BackColor = System.Drawing.Color.Transparent; + this.label11.Location = new System.Drawing.Point(22, 74); + this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(68, 13); + this.label11.TabIndex = 3; + this.label11.Text = "Change Bars"; + // + // ppBtnFldrDlg + // + this.ppBtnFldrDlg.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnFldrDlg.Image = ((System.Drawing.Image)(resources.GetObject("ppBtnFldrDlg.Image"))); + this.ppBtnFldrDlg.Location = new System.Drawing.Point(469, 15); + this.ppBtnFldrDlg.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnFldrDlg.Name = "ppBtnFldrDlg"; + this.ppBtnFldrDlg.Size = new System.Drawing.Size(16, 19); + this.ppBtnFldrDlg.TabIndex = 44; + this.ppBtnFldrDlg.Click += new System.EventHandler(this.ppBtnFldrDlg_Click); + // + // ppTxbxRoFoldLoc + // + // + // + // + this.ppTxbxRoFoldLoc.Border.Class = "TextBoxBorder"; + this.ppTxbxRoFoldLoc.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "RODefaults_ropath", true)); + this.ppTxbxRoFoldLoc.Location = new System.Drawing.Point(66, 15); + this.ppTxbxRoFoldLoc.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppTxbxRoFoldLoc.Name = "ppTxbxRoFoldLoc"; + this.ppTxbxRoFoldLoc.Size = new System.Drawing.Size(398, 20); + this.ppTxbxRoFoldLoc.TabIndex = 43; + this.ppTxbxRoFoldLoc.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppTxbxRoFoldLoc.WatermarkText = "Enter Path to default RO folder"; + this.ppTxbxRoFoldLoc.TextChanged += new System.EventHandler(this.ppTxbxRoFoldLoc_TextChanged); + // + // ppBtnDefaultGrfExt + // + this.ppBtnDefaultGrfExt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultGrfExt.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppBtnDefaultGrfExt.Location = new System.Drawing.Point(358, 65); + this.ppBtnDefaultGrfExt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultGrfExt.Name = "ppBtnDefaultGrfExt"; + this.ppBtnDefaultGrfExt.Size = new System.Drawing.Size(40, 19); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultGrfExt, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDefaultGrfExt.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(265, 150))); + this.ppBtnDefaultGrfExt.TabIndex = 42; + this.ppBtnDefaultGrfExt.Text = "Default"; + this.ppBtnDefaultGrfExt.ThemeAware = true; + this.ppBtnDefaultGrfExt.Visible = false; + this.ppBtnDefaultGrfExt.Click += new System.EventHandler(this.ppBtnDefaultGrfExt_Click); + // + // ppCmbxDefROPrefix + // + this.ppCmbxDefROPrefix.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "RODefaults_setpointprefix", true)); + this.ppCmbxDefROPrefix.DisplayMember = "Text"; + this.ppCmbxDefROPrefix.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxDefROPrefix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxDefROPrefix.FormattingEnabled = true; + this.ppCmbxDefROPrefix.Location = new System.Drawing.Point(11, 18); + this.ppCmbxDefROPrefix.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxDefROPrefix.Name = "ppCmbxDefROPrefix"; + this.ppCmbxDefROPrefix.Size = new System.Drawing.Size(189, 21); + this.ppCmbxDefROPrefix.TabIndex = 26; + this.ppCmbxDefROPrefix.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxDefROPrefix.WatermarkText = "Select RO Prefix"; + this.ppCmbxDefROPrefix.SelectedValueChanged += new System.EventHandler(this.ppCmbxDefROPrefix_SelectedValueChanged); + // + // ppBtnDefaultImgPrefix + // + this.ppBtnDefaultImgPrefix.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultImgPrefix.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppBtnDefaultImgPrefix.Location = new System.Drawing.Point(204, 76); + this.ppBtnDefaultImgPrefix.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultImgPrefix.Name = "ppBtnDefaultImgPrefix"; + this.ppBtnDefaultImgPrefix.Size = new System.Drawing.Size(41, 19); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultImgPrefix, new DevComponents.DotNetBar.SuperTooltipInfo("Default Image Prefix", "", "Reset back to the default Image Prefix shown in italics", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppBtnDefaultImgPrefix.TabIndex = 40; + this.ppBtnDefaultImgPrefix.Text = "Default"; + this.ppBtnDefaultImgPrefix.ThemeAware = true; + this.ppBtnDefaultImgPrefix.Visible = false; + this.ppBtnDefaultImgPrefix.Click += new System.EventHandler(this.ppBtnDefaultImgPrefix_Click); + // + // label7 + // + this.label7.AutoSize = true; + this.label7.BackColor = System.Drawing.Color.Transparent; + this.label7.Location = new System.Drawing.Point(9, 2); + this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(89, 13); + this.label7.TabIndex = 15; + this.label7.Text = "Default RO Prefix"; + // + // ppBtnDefaultROPrefix + // + this.ppBtnDefaultROPrefix.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefaultROPrefix.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppBtnDefaultROPrefix.Location = new System.Drawing.Point(204, 18); + this.ppBtnDefaultROPrefix.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefaultROPrefix.Name = "ppBtnDefaultROPrefix"; + this.ppBtnDefaultROPrefix.Size = new System.Drawing.Size(40, 19); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefaultROPrefix, new DevComponents.DotNetBar.SuperTooltipInfo("Default RO Prefix", "", "Reset back to the default RO Prefix shown in italics", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppBtnDefaultROPrefix.TabIndex = 39; + this.ppBtnDefaultROPrefix.Text = "Default"; + this.ppBtnDefaultROPrefix.ThemeAware = true; + this.ppBtnDefaultROPrefix.Visible = false; + this.ppBtnDefaultROPrefix.Click += new System.EventHandler(this.ppBtnDefaultROPrefix_Click); + // + // label8 + // + this.label8.AutoSize = true; + this.label8.BackColor = System.Drawing.Color.Transparent; + this.label8.Location = new System.Drawing.Point(9, 61); + this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(102, 13); + this.label8.TabIndex = 17; + this.label8.Text = "Default Image Prefix"; + // + // ppLblROPrefixDefault + // + this.ppLblROPrefixDefault.AutoSize = true; + this.ppLblROPrefixDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblROPrefixDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblROPrefixDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblROPrefixDefault.Location = new System.Drawing.Point(9, 39); + this.ppLblROPrefixDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblROPrefixDefault.Name = "ppLblROPrefixDefault"; + this.ppLblROPrefixDefault.Size = new System.Drawing.Size(45, 13); + this.ppLblROPrefixDefault.TabIndex = 22; + this.ppLblROPrefixDefault.Text = "(default)"; + // + // ppCmbxDefImgPrefix + // + this.ppCmbxDefImgPrefix.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "RODefaults_graphicsprefix", true)); + this.ppCmbxDefImgPrefix.DisplayMember = "Text"; + this.ppCmbxDefImgPrefix.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxDefImgPrefix.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxDefImgPrefix.FormattingEnabled = true; + this.ppCmbxDefImgPrefix.Location = new System.Drawing.Point(11, 76); + this.ppCmbxDefImgPrefix.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxDefImgPrefix.Name = "ppCmbxDefImgPrefix"; + this.ppCmbxDefImgPrefix.Size = new System.Drawing.Size(189, 21); + this.ppCmbxDefImgPrefix.TabIndex = 27; + this.ppCmbxDefImgPrefix.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxDefImgPrefix.WatermarkText = "Select Image Prefix"; + this.ppCmbxDefImgPrefix.SelectedValueChanged += new System.EventHandler(this.ppCmbxDefImgPrefix_SelectedValueChanged); + // + // ppLblImagePrefixDefault + // + this.ppLblImagePrefixDefault.AutoSize = true; + this.ppLblImagePrefixDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblImagePrefixDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblImagePrefixDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblImagePrefixDefault.Location = new System.Drawing.Point(9, 98); + this.ppLblImagePrefixDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblImagePrefixDefault.Name = "ppLblImagePrefixDefault"; + this.ppLblImagePrefixDefault.Size = new System.Drawing.Size(45, 13); + this.ppLblImagePrefixDefault.TabIndex = 23; + this.ppLblImagePrefixDefault.Text = "(default)"; + // + // ppLblROFldrLocDefault + // + this.ppLblROFldrLocDefault.AutoSize = true; + this.ppLblROFldrLocDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblROFldrLocDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblROFldrLocDefault.ForeColor = System.Drawing.SystemColors.ControlDarkDark; + this.ppLblROFldrLocDefault.Location = new System.Drawing.Point(70, 35); + this.ppLblROFldrLocDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblROFldrLocDefault.Name = "ppLblROFldrLocDefault"; + this.ppLblROFldrLocDefault.Size = new System.Drawing.Size(279, 13); + this.ppLblROFldrLocDefault.TabIndex = 38; + this.ppLblROFldrLocDefault.Text = "(..\\RO ) - not visible right know... there is no default saved"; + this.ppLblROFldrLocDefault.Visible = false; + // + // ppCmbxGrphFileExt + // + this.ppCmbxGrphFileExt.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Graphics_defaultext", true)); + this.ppCmbxGrphFileExt.DataSource = this.imageCodecInfoBindingSource; + this.ppCmbxGrphFileExt.DisplayMember = "FilenameExtension"; + this.ppCmbxGrphFileExt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxGrphFileExt.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxGrphFileExt.FormattingEnabled = true; + this.ppCmbxGrphFileExt.Location = new System.Drawing.Point(163, 65); + this.ppCmbxGrphFileExt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxGrphFileExt.Name = "ppCmbxGrphFileExt"; + this.ppCmbxGrphFileExt.Size = new System.Drawing.Size(192, 21); + this.ppCmbxGrphFileExt.TabIndex = 25; + this.ppCmbxGrphFileExt.ValueMember = "FormatDescription"; + this.ppCmbxGrphFileExt.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxGrphFileExt.WatermarkText = "Select Graphic File Extension"; + this.ppCmbxGrphFileExt.SelectedValueChanged += new System.EventHandler(this.ppCmbxGrphFileExt_SelectedValueChanged); + // + // imageCodecInfoBindingSource + // + this.imageCodecInfoBindingSource.DataSource = typeof(System.Drawing.Imaging.ImageCodecInfo); + // + // ppLblGraphicFileExtDefault + // + this.ppLblGraphicFileExtDefault.AutoSize = true; + this.ppLblGraphicFileExtDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblGraphicFileExtDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblGraphicFileExtDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblGraphicFileExtDefault.Location = new System.Drawing.Point(162, 86); + this.ppLblGraphicFileExtDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblGraphicFileExtDefault.Name = "ppLblGraphicFileExtDefault"; + this.ppLblGraphicFileExtDefault.Size = new System.Drawing.Size(45, 13); + this.ppLblGraphicFileExtDefault.TabIndex = 21; + this.ppLblGraphicFileExtDefault.Text = "(default)"; + // + // ppBtnResetRoVals + // + this.ppBtnResetRoVals.Location = new System.Drawing.Point(28, 84); + this.ppBtnResetRoVals.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnResetRoVals.Name = "ppBtnResetRoVals"; + this.ppBtnResetRoVals.Size = new System.Drawing.Size(54, 63); + this.ppBtnResetRoVals.TabIndex = 20; + this.ppBtnResetRoVals.Text = "Reset to Previous Values"; + this.ppBtnResetRoVals.UseVisualStyleBackColor = true; + this.ppBtnResetRoVals.Visible = false; + // + // ppBtnUpRoVals + // + this.ppBtnUpRoVals.Location = new System.Drawing.Point(28, 20); + this.ppBtnUpRoVals.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnUpRoVals.Name = "ppBtnUpRoVals"; + this.ppBtnUpRoVals.Size = new System.Drawing.Size(50, 63); + this.superTooltip1.SetSuperTooltip(this.ppBtnUpRoVals, new DevComponents.DotNetBar.SuperTooltipInfo("Update Referenced Objects Values", "", "This button will update all of the Referenced Objects Values in all of the proced" + + "ures in this procedure set.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray)); + this.ppBtnUpRoVals.TabIndex = 19; + this.ppBtnUpRoVals.Text = "Update RO Values"; + this.ppBtnUpRoVals.UseVisualStyleBackColor = true; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.BackColor = System.Drawing.Color.Transparent; + this.label6.Location = new System.Drawing.Point(9, 17); + this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(55, 13); + this.label6.TabIndex = 12; + this.label6.Text = "RO Folder"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.BackColor = System.Drawing.Color.Transparent; + this.label5.Location = new System.Drawing.Point(46, 65); + this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(112, 13); + this.label5.TabIndex = 7; + this.label5.Text = "Graphic File Extension"; + // + // ppCmbxProcSetType + // + this.ppCmbxProcSetType.DisplayMember = "Text"; + this.ppCmbxProcSetType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxProcSetType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxProcSetType.FormattingEnabled = true; + this.ppCmbxProcSetType.Location = new System.Drawing.Point(172, 210); + this.ppCmbxProcSetType.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxProcSetType.Name = "ppCmbxProcSetType"; + this.ppCmbxProcSetType.Size = new System.Drawing.Size(133, 21); + this.ppCmbxProcSetType.TabIndex = 17; + this.ppCmbxProcSetType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxProcSetType.WatermarkText = "select procedure set type"; + // + // label9 + // + this.label9.AutoSize = true; + this.label9.BackColor = System.Drawing.Color.Transparent; + this.label9.Location = new System.Drawing.Point(21, 212); + this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(145, 13); + this.label9.TabIndex = 16; + this.label9.Text = "Procedure Set Type (version)"; + // + // ppRTxtName + // + this.ppRTxtName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Name", true)); + this.ppRTxtName.Location = new System.Drawing.Point(56, 15); + this.ppRTxtName.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppRTxtName.Multiline = false; + this.ppRTxtName.Name = "ppRTxtName"; + this.ppRTxtName.Size = new System.Drawing.Size(210, 19); + this.ppRTxtName.TabIndex = 14; + this.ppRTxtName.Text = ""; + // + // ppRTxtTitle + // + this.ppRTxtTitle.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Title", true)); + this.ppRTxtTitle.Location = new System.Drawing.Point(56, 57); + this.ppRTxtTitle.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppRTxtTitle.Name = "ppRTxtTitle"; + this.ppRTxtTitle.Size = new System.Drawing.Size(407, 50); + this.ppRTxtTitle.TabIndex = 13; + this.ppRTxtTitle.Text = ""; + this.ppRTxtTitle.Visible = false; + // + // ppDTPicker + // + this.ppDTPicker.CustomFormat = "MM\'/\'dd\'/\'yyyy hh\':\'mm:ss tt"; + this.ppDTPicker.Enabled = false; + this.ppDTPicker.Format = System.Windows.Forms.DateTimePickerFormat.Custom; + this.ppDTPicker.Location = new System.Drawing.Point(80, 123); + this.ppDTPicker.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppDTPicker.Name = "ppDTPicker"; + this.ppDTPicker.Size = new System.Drawing.Size(130, 20); + this.ppDTPicker.TabIndex = 12; + this.ppDTPicker.Visible = false; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Transparent; + this.label1.Location = new System.Drawing.Point(26, 59); + this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(27, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Title"; + this.label1.Visible = false; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.BackColor = System.Drawing.Color.Transparent; + this.label2.Location = new System.Drawing.Point(17, 18); + this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(35, 13); + this.label2.TabIndex = 4; + this.label2.Text = "Name"; + // + // ppTxtBxUserID + // + this.ppTxtBxUserID.Enabled = false; + this.ppTxtBxUserID.Location = new System.Drawing.Point(71, 169); + this.ppTxtBxUserID.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppTxtBxUserID.Name = "ppTxtBxUserID"; + this.ppTxtBxUserID.Size = new System.Drawing.Size(116, 20); + this.ppTxtBxUserID.TabIndex = 10; + this.ppTxtBxUserID.Visible = false; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.BackColor = System.Drawing.Color.Transparent; + this.label3.Location = new System.Drawing.Point(26, 171); + this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(43, 13); + this.label3.TabIndex = 5; + this.label3.Text = "User ID"; + this.label3.Visible = false; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.BackColor = System.Drawing.Color.Transparent; + this.label4.Location = new System.Drawing.Point(20, 125); + this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(58, 13); + this.label4.TabIndex = 6; + this.label4.Text = "Date/Time"; + this.label4.Visible = false; + // + // ppBtnPDFLoc + // + this.ppBtnPDFLoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnPDFLoc.Image = ((System.Drawing.Image)(resources.GetObject("ppBtnPDFLoc.Image"))); + this.ppBtnPDFLoc.Location = new System.Drawing.Point(463, 12); + this.ppBtnPDFLoc.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnPDFLoc.Name = "ppBtnPDFLoc"; + this.ppBtnPDFLoc.Size = new System.Drawing.Size(16, 19); + this.ppBtnPDFLoc.TabIndex = 64; + // + // ppNumUpDwnOvrdPrnPenWidth + // + this.ppNumUpDwnOvrdPrnPenWidth.Location = new System.Drawing.Point(176, 12); + this.ppNumUpDwnOvrdPrnPenWidth.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppNumUpDwnOvrdPrnPenWidth.Name = "ppNumUpDwnOvrdPrnPenWidth"; + this.ppNumUpDwnOvrdPrnPenWidth.Size = new System.Drawing.Size(35, 20); + this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnOvrdPrnPenWidth, new DevComponents.DotNetBar.SuperTooltipInfo("Normal Pen Width", "", "This will allow you to override pen width used for normal text and line drawing.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppNumUpDwnOvrdPrnPenWidth.TabIndex = 1; + // + // label19 + // + this.label19.AutoSize = true; + this.label19.BackColor = System.Drawing.Color.Transparent; + this.label19.Location = new System.Drawing.Point(4, 14); + this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(165, 13); + this.label19.TabIndex = 0; + this.label19.Text = "Override Normal Pen Width (dots)"; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.BackColor = System.Drawing.Color.Transparent; + this.label20.Location = new System.Drawing.Point(4, 49); + this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(153, 13); + this.label20.TabIndex = 2; + this.label20.Text = "Override Bold Pen Width (dots)"; + // + // ppNumUpDwnOverdPrnPenBoldWidth + // + this.ppNumUpDwnOverdPrnPenBoldWidth.Location = new System.Drawing.Point(176, 47); + this.ppNumUpDwnOverdPrnPenBoldWidth.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppNumUpDwnOverdPrnPenBoldWidth.Name = "ppNumUpDwnOverdPrnPenBoldWidth"; + this.ppNumUpDwnOverdPrnPenBoldWidth.Size = new System.Drawing.Size(35, 20); + this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnOverdPrnPenBoldWidth, new DevComponents.DotNetBar.SuperTooltipInfo("Bold Pen Width", "", "This will allow you to override the width used for bold text.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppNumUpDwnOverdPrnPenBoldWidth.TabIndex = 3; + // + // ppNumUpDwnOvrdPrnPenULineWidth + // + this.ppNumUpDwnOvrdPrnPenULineWidth.Location = new System.Drawing.Point(420, 12); + this.ppNumUpDwnOvrdPrnPenULineWidth.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppNumUpDwnOvrdPrnPenULineWidth.Name = "ppNumUpDwnOvrdPrnPenULineWidth"; + this.ppNumUpDwnOvrdPrnPenULineWidth.Size = new System.Drawing.Size(35, 20); + this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnOvrdPrnPenULineWidth, new DevComponents.DotNetBar.SuperTooltipInfo("Underline Thickness", "", "This will allow you to change the thickness of the uderline.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppNumUpDwnOvrdPrnPenULineWidth.TabIndex = 5; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.BackColor = System.Drawing.Color.Transparent; + this.label21.Location = new System.Drawing.Point(238, 14); + this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(176, 13); + this.label21.TabIndex = 4; + this.label21.Text = "Override Underline Thickness (dots)"; + // + // ppNumUpDwnAdjPrnStartPos + // + this.ppNumUpDwnAdjPrnStartPos.Location = new System.Drawing.Point(420, 47); + this.ppNumUpDwnAdjPrnStartPos.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppNumUpDwnAdjPrnStartPos.Maximum = new decimal(new int[] { 500, 0, 0, 0}); - this.ppNumUpDwnAdjPrnStartPos.Name = "ppNumUpDwnAdjPrnStartPos"; - this.ppNumUpDwnAdjPrnStartPos.Size = new System.Drawing.Size(47, 22); - this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnAdjPrnStartPos, new DevComponents.DotNetBar.SuperTooltipInfo("Starting Print Position", "", "Allows you to move the starting point on the page of where text and boarder begin" + - " printing.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppNumUpDwnAdjPrnStartPos.TabIndex = 7; - // - // label22 - // - this.label22.AutoSize = true; - this.label22.BackColor = System.Drawing.Color.Transparent; - this.label22.Location = new System.Drawing.Point(326, 60); - this.label22.Name = "label22"; - this.label22.Size = new System.Drawing.Size(228, 17); - this.label22.TabIndex = 6; - this.label22.Text = "Adjust Starting Print Position (dots)"; - // - // ppBtnDeftDisAutoDuplx - // - this.ppBtnDeftDisAutoDuplx.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDeftDisAutoDuplx.Location = new System.Drawing.Point(238, 257); - this.ppBtnDeftDisAutoDuplx.Name = "ppBtnDeftDisAutoDuplx"; - this.ppBtnDeftDisAutoDuplx.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDeftDisAutoDuplx, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDeftDisAutoDuplx.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(255, 150))); - this.ppBtnDeftDisAutoDuplx.TabIndex = 62; - this.ppBtnDeftDisAutoDuplx.Text = "Default"; - this.ppBtnDeftDisAutoDuplx.ThemeAware = true; - this.ppBtnDeftDisAutoDuplx.Visible = false; - // - // ppBtnDefWatermark - // - this.ppBtnDefWatermark.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefWatermark.Location = new System.Drawing.Point(592, 53); - this.ppBtnDefWatermark.Name = "ppBtnDefWatermark"; - this.ppBtnDefWatermark.Size = new System.Drawing.Size(54, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefWatermark, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", "This will revert the watermark selection back to using the parent\'s (default) set" + - "ting.\r\n\r\nCheck \"Show Default Settings\" to display the \"default\" watermark (below" + - " the Watermark selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(255, 145))); - this.ppBtnDefWatermark.TabIndex = 61; - this.ppBtnDefWatermark.Text = "Default"; - this.ppBtnDefWatermark.ThemeAware = true; - this.ppBtnDefWatermark.Visible = false; - this.ppBtnDefWatermark.Click += new System.EventHandler(this.ppBtnDefWatermark_Click); - // - // ppBtnDefPagination - // - this.ppBtnDefPagination.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDefPagination.Location = new System.Drawing.Point(257, 53); - this.ppBtnDefPagination.Name = "ppBtnDefPagination"; - this.ppBtnDefPagination.Size = new System.Drawing.Size(58, 24); - this.superTooltip1.SetSuperTooltip(this.ppBtnDefPagination, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", "This will revert the pagination selection back to using the parent\'s (default) se" + - "tting.\r\n\r\nCheck \"Show Default Settings\" to display the \"default\" Pagination (bel" + - "ow the Pagination selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(255, 145))); - this.ppBtnDefPagination.TabIndex = 60; - this.ppBtnDefPagination.Text = "Default"; - this.ppBtnDefPagination.ThemeAware = true; - this.ppBtnDefPagination.Visible = false; - this.ppBtnDefPagination.Click += new System.EventHandler(this.ppBtnDefPagination_Click); - // - // ppCmbxWatermark - // - this.ppCmbxWatermark.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_Watermark", true)); - this.ppCmbxWatermark.DisplayMember = "Text"; - this.ppCmbxWatermark.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxWatermark.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxWatermark.FormattingEnabled = true; - this.ppCmbxWatermark.Location = new System.Drawing.Point(420, 53); - this.ppCmbxWatermark.Name = "ppCmbxWatermark"; - this.ppCmbxWatermark.Size = new System.Drawing.Size(167, 23); - this.ppCmbxWatermark.TabIndex = 59; - this.ppCmbxWatermark.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxWatermark.WatermarkText = "select watermark option"; - this.ppCmbxWatermark.SelectedValueChanged += new System.EventHandler(this.ppCmbxWatermark_SelectedValueChanged); - // - // ppCmbxPagination - // - this.ppCmbxPagination.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_Pagination", true)); - this.ppCmbxPagination.DisplayMember = "Text"; - this.ppCmbxPagination.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; - this.ppCmbxPagination.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; - this.ppCmbxPagination.FormattingEnabled = true; - this.ppCmbxPagination.Location = new System.Drawing.Point(88, 53); - this.ppCmbxPagination.Name = "ppCmbxPagination"; - this.ppCmbxPagination.Size = new System.Drawing.Size(163, 23); - this.superTooltip1.SetSuperTooltip(this.ppCmbxPagination, new DevComponents.DotNetBar.SuperTooltipInfo("Procedure Pagination", "", resources.GetString("ppCmbxPagination.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(400, 220))); - this.ppCmbxPagination.TabIndex = 58; - this.ppCmbxPagination.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppCmbxPagination.WatermarkText = "select pagination option"; - this.ppCmbxPagination.SelectedValueChanged += new System.EventHandler(this.ppCmbxPagination_SelectedValueChanged); - // - // ppLblWatermarkDefault - // - this.ppLblWatermarkDefault.AutoSize = true; - this.ppLblWatermarkDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblWatermarkDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblWatermarkDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblWatermarkDefault.Location = new System.Drawing.Point(413, 80); - this.ppLblWatermarkDefault.Name = "ppLblWatermarkDefault"; - this.ppLblWatermarkDefault.Size = new System.Drawing.Size(61, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblWatermarkDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Watermark settings", "", "Pressing the Default Button (to the right)\r\nwill reset the watermark setting back" + - " to \r\nthis default.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); - this.ppLblWatermarkDefault.TabIndex = 57; - this.ppLblWatermarkDefault.Text = "(default)"; - // - // ppLblPaginationDefault - // - this.ppLblPaginationDefault.AutoSize = true; - this.ppLblPaginationDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblPaginationDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblPaginationDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblPaginationDefault.Location = new System.Drawing.Point(85, 80); - this.ppLblPaginationDefault.Name = "ppLblPaginationDefault"; - this.ppLblPaginationDefault.Size = new System.Drawing.Size(61, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblPaginationDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Pagination settings", "", "Pressing the Default Button (to the right)\r\nwill reset the pagination setting bac" + - "k to \r\nthis default.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); - this.ppLblPaginationDefault.TabIndex = 56; - this.ppLblPaginationDefault.Text = "(default)"; - // - // ppTxtBxPDFLoc - // - this.ppTxtBxPDFLoc.Location = new System.Drawing.Point(107, 15); - this.ppTxtBxPDFLoc.Name = "ppTxtBxPDFLoc"; - this.ppTxtBxPDFLoc.Size = new System.Drawing.Size(504, 22); - this.ppTxtBxPDFLoc.TabIndex = 55; - // - // label18 - // - this.label18.AutoSize = true; - this.label18.BackColor = System.Drawing.Color.Transparent; - this.label18.Location = new System.Drawing.Point(8, 15); - this.label18.Name = "label18"; - this.label18.Size = new System.Drawing.Size(93, 17); - this.label18.TabIndex = 54; - this.label18.Text = "PDF Location"; - // - // ppLblAutoDuplexDefault - // - this.ppLblAutoDuplexDefault.AutoSize = true; - this.ppLblAutoDuplexDefault.BackColor = System.Drawing.Color.Transparent; - this.ppLblAutoDuplexDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblAutoDuplexDefault.ForeColor = System.Drawing.Color.Gray; - this.ppLblAutoDuplexDefault.Location = new System.Drawing.Point(43, 281); - this.ppLblAutoDuplexDefault.Name = "ppLblAutoDuplexDefault"; - this.ppLblAutoDuplexDefault.Size = new System.Drawing.Size(86, 17); - this.superTooltip1.SetSuperTooltip(this.ppLblAutoDuplexDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the Automatic Duplex default setting", "", "Pressing the Default Button (to the right)\r\nwill reset the Automatic Duplex setti" + - "ng back\r\nto this default.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); - this.ppLblAutoDuplexDefault.TabIndex = 53; - this.ppLblAutoDuplexDefault.Text = "(default ON)"; - // - // ppChbxDisAutoDuplex - // - this.ppChbxDisAutoDuplex.AutoSize = true; - this.ppChbxDisAutoDuplex.BackColor = System.Drawing.Color.Transparent; - this.ppChbxDisAutoDuplex.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.docVersionConfigBindingSource, "Print_DisableDuplex", true)); - this.ppChbxDisAutoDuplex.Location = new System.Drawing.Point(23, 257); - this.ppChbxDisAutoDuplex.Name = "ppChbxDisAutoDuplex"; - this.ppChbxDisAutoDuplex.Size = new System.Drawing.Size(209, 21); - this.superTooltip1.SetSuperTooltip(this.ppChbxDisAutoDuplex, new DevComponents.DotNetBar.SuperTooltipInfo("Disable Automatic Duplex", "", "Checking this box will turn OFF the automatic duplexing used in some formats for " + - "Foldout pages.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); - this.ppChbxDisAutoDuplex.TabIndex = 52; - this.ppChbxDisAutoDuplex.Text = "Disable Automatic Duplexing"; - this.ppChbxDisAutoDuplex.UseVisualStyleBackColor = false; - this.ppChbxDisAutoDuplex.CheckedChanged += new System.EventHandler(this.ppChbxDisAutoDuplex_CheckedChanged); - // - // label16 - // - this.label16.AutoSize = true; - this.label16.BackColor = System.Drawing.Color.Transparent; - this.label16.Location = new System.Drawing.Point(5, 56); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(75, 17); - this.label16.TabIndex = 28; - this.label16.Text = "Pagination"; - // - // label17 - // - this.label17.AutoSize = true; - this.label17.BackColor = System.Drawing.Color.Transparent; - this.label17.Location = new System.Drawing.Point(333, 56); - this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(77, 17); - this.label17.TabIndex = 27; - this.label17.Text = "Watermark"; - // - // ppBtnEdLibDoc - // - this.ppBtnEdLibDoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnEdLibDoc.Location = new System.Drawing.Point(269, 281); - this.ppBtnEdLibDoc.Name = "ppBtnEdLibDoc"; - this.ppBtnEdLibDoc.Size = new System.Drawing.Size(72, 23); - this.ppBtnEdLibDoc.TabIndex = 3; - this.ppBtnEdLibDoc.Text = "Edit"; - // - // ppBtnDelLibDoc - // - this.ppBtnDelLibDoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnDelLibDoc.Location = new System.Drawing.Point(129, 281); - this.ppBtnDelLibDoc.Name = "ppBtnDelLibDoc"; - this.ppBtnDelLibDoc.Size = new System.Drawing.Size(75, 23); - this.ppBtnDelLibDoc.TabIndex = 2; - this.ppBtnDelLibDoc.Text = "Delete"; - // - // ppBtnAddLibDoc - // - this.ppBtnAddLibDoc.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.ppBtnAddLibDoc.Location = new System.Drawing.Point(25, 281); - this.ppBtnAddLibDoc.Name = "ppBtnAddLibDoc"; - this.ppBtnAddLibDoc.Size = new System.Drawing.Size(75, 23); - this.ppBtnAddLibDoc.TabIndex = 1; - this.ppBtnAddLibDoc.Text = "Add"; - // - // ppGrdLibDocList - // - this.ppGrdLibDocList.ColumnInfo = "3,0,0,0,0,95,Columns:0{Caption:\"Number\";}\t1{Width:274;Caption:\"Title\";}\t2{Width:2" + - "31;Caption:\"Comment\";}\t"; - this.ppGrdLibDocList.Location = new System.Drawing.Point(15, 15); - this.ppGrdLibDocList.Name = "ppGrdLibDocList"; - this.ppGrdLibDocList.Rows.DefaultSize = 19; - this.ppGrdLibDocList.Size = new System.Drawing.Size(628, 240); - this.ppGrdLibDocList.TabIndex = 0; - // - // superTooltip1 - // - this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; - // - // ppCbShwDefSettings - // - this.ppCbShwDefSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.ppCbShwDefSettings.Location = new System.Drawing.Point(12, 382); - this.ppCbShwDefSettings.Name = "ppCbShwDefSettings"; - this.ppCbShwDefSettings.Size = new System.Drawing.Size(152, 22); - this.superTooltip1.SetSuperTooltip(this.ppCbShwDefSettings, new DevComponents.DotNetBar.SuperTooltipInfo("Show Default Settings", "", "When checked, the default (parent\'s) setting will appear below the overridden sel" + - "ection.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); - this.ppCbShwDefSettings.TabIndex = 26; - this.ppCbShwDefSettings.Text = "Show Default Settings"; - this.ppCbShwDefSettings.CheckedChanged += new System.EventHandler(this.tabpage_Enter); - // - // ppGpbxUserSpecCB - // - this.ppGpbxUserSpecCB.BackColor = System.Drawing.Color.Transparent; - this.ppGpbxUserSpecCB.CanvasColor = System.Drawing.SystemColors.Control; - this.ppGpbxUserSpecCB.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.ppGpbxUserSpecCB.Controls.Add(this.ppGpbxUserSpecTxt); - this.ppGpbxUserSpecCB.Controls.Add(this.ppBtnDefCbTxtTyp); - this.ppGpbxUserSpecCB.Controls.Add(this.ppCmbxChgBarPos); - this.ppGpbxUserSpecCB.Controls.Add(this.ppBtnDefaultCbPos); - this.ppGpbxUserSpecCB.Controls.Add(this.label12); - this.ppGpbxUserSpecCB.Controls.Add(this.ppCmbxChgBarTxtType); - this.ppGpbxUserSpecCB.Controls.Add(this.label13); - this.ppGpbxUserSpecCB.Controls.Add(this.ppLblChgBarPosDefault); - this.ppGpbxUserSpecCB.Controls.Add(this.ppLblChgBarTxtTypeDefault); - this.ppGpbxUserSpecCB.Location = new System.Drawing.Point(22, 144); - this.ppGpbxUserSpecCB.Name = "ppGpbxUserSpecCB"; - this.ppGpbxUserSpecCB.Size = new System.Drawing.Size(621, 160); - // - // - // - this.ppGpbxUserSpecCB.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.ppGpbxUserSpecCB.Style.BackColorGradientAngle = 90; - this.ppGpbxUserSpecCB.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.ppGpbxUserSpecCB.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecCB.Style.BorderBottomWidth = 1; - this.ppGpbxUserSpecCB.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.ppGpbxUserSpecCB.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecCB.Style.BorderLeftWidth = 1; - this.ppGpbxUserSpecCB.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecCB.Style.BorderRightWidth = 1; - this.ppGpbxUserSpecCB.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecCB.Style.BorderTopWidth = 1; - this.ppGpbxUserSpecCB.Style.CornerDiameter = 4; - this.ppGpbxUserSpecCB.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.ppGpbxUserSpecCB.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.ppGpbxUserSpecCB.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.ppGpbxUserSpecCB.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - this.superTooltip1.SetSuperTooltip(this.ppGpbxUserSpecCB, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bar Override Settings", "", resources.GetString("ppGpbxUserSpecCB.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(230, 155))); - this.ppGpbxUserSpecCB.TabIndex = 49; - this.ppGpbxUserSpecCB.Text = "Change Bar Override Settings"; - // - // ppGpbxUserSpecTxt - // - this.ppGpbxUserSpecTxt.CanvasColor = System.Drawing.SystemColors.Control; - this.ppGpbxUserSpecTxt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.ppGpbxUserSpecTxt.Controls.Add(this.ppBtnDefCbTxt2); - this.ppGpbxUserSpecTxt.Controls.Add(this.label14); - this.ppGpbxUserSpecTxt.Controls.Add(this.ppBtnDefCbTxt1); - this.ppGpbxUserSpecTxt.Controls.Add(this.ppTxbxChangeBarUserMsgTwo); - this.ppGpbxUserSpecTxt.Controls.Add(this.ppLblChgBarUserMsgTwoDefault); - this.ppGpbxUserSpecTxt.Controls.Add(this.label15); - this.ppGpbxUserSpecTxt.Controls.Add(this.ppLblChgBarUserMsgOneDefault); - this.ppGpbxUserSpecTxt.Controls.Add(this.ppTxbxChangeBarUserMsgOne); - this.ppGpbxUserSpecTxt.Location = new System.Drawing.Point(356, 7); - this.ppGpbxUserSpecTxt.Name = "ppGpbxUserSpecTxt"; - this.ppGpbxUserSpecTxt.Size = new System.Drawing.Size(246, 127); - // - // - // - this.ppGpbxUserSpecTxt.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.ppGpbxUserSpecTxt.Style.BackColorGradientAngle = 90; - this.ppGpbxUserSpecTxt.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.ppGpbxUserSpecTxt.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecTxt.Style.BorderBottomWidth = 1; - this.ppGpbxUserSpecTxt.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.ppGpbxUserSpecTxt.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecTxt.Style.BorderLeftWidth = 1; - this.ppGpbxUserSpecTxt.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecTxt.Style.BorderRightWidth = 1; - this.ppGpbxUserSpecTxt.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUserSpecTxt.Style.BorderTopWidth = 1; - this.ppGpbxUserSpecTxt.Style.CornerDiameter = 4; - this.ppGpbxUserSpecTxt.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.ppGpbxUserSpecTxt.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.ppGpbxUserSpecTxt.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.ppGpbxUserSpecTxt.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - this.ppGpbxUserSpecTxt.TabIndex = 51; - this.ppGpbxUserSpecTxt.Text = "Custom Change Bar Message"; - // - // ppLblDefSettingsInfo - // - this.ppLblDefSettingsInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.ppLblDefSettingsInfo.AutoSize = true; - this.ppLblDefSettingsInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ppLblDefSettingsInfo.Location = new System.Drawing.Point(9, 362); - this.ppLblDefSettingsInfo.Name = "ppLblDefSettingsInfo"; - this.ppLblDefSettingsInfo.Size = new System.Drawing.Size(205, 17); - this.ppLblDefSettingsInfo.TabIndex = 25; - this.ppLblDefSettingsInfo.Text = "* Default values shown in italics"; - // - // dlgROFolder - // - this.dlgROFolder.RootFolder = System.Environment.SpecialFolder.MyComputer; - // - // tcVersions - // - this.tcVersions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Right))); - this.tcVersions.BackColor = System.Drawing.Color.Transparent; - this.tcVersions.CanReorderTabs = true; - this.tcVersions.Controls.Add(this.tabControlPanel3); - this.tcVersions.Controls.Add(this.tabControlPanel2); - this.tcVersions.Controls.Add(this.tabControlPanel1); - this.tcVersions.Controls.Add(this.tabControlPanel5); - this.tcVersions.Controls.Add(this.tabControlPanel4); - this.tcVersions.Location = new System.Drawing.Point(174, 4); - this.tcVersions.Name = "tcVersions"; - this.tcVersions.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold); - this.tcVersions.SelectedTabIndex = 0; - this.tcVersions.Size = new System.Drawing.Size(657, 345); - this.tcVersions.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Dock; - this.tcVersions.TabIndex = 28; - this.tcVersions.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; - this.tcVersions.Tabs.Add(this.tiGeneral); - this.tcVersions.Tabs.Add(this.tiRefObjs); - this.tcVersions.Tabs.Add(this.tiOutputSettings); - this.tcVersions.Tabs.Add(this.tiFmtSettings); - this.tcVersions.Tabs.Add(this.tiLibDocs); - this.tcVersions.TabsVisible = false; - this.tcVersions.Text = "tabControl1"; - // - // tabControlPanel2 - // - this.tabControlPanel2.Controls.Add(this.ppGpbxUpROvals); - this.tabControlPanel2.Controls.Add(this.ppGpbxDefAccID); - this.tabControlPanel2.Controls.Add(this.ppBtnFldrDlg); - this.tabControlPanel2.Controls.Add(this.ppTxbxRoFoldLoc); - this.tabControlPanel2.Controls.Add(this.label5); - this.tabControlPanel2.Controls.Add(this.ppBtnDefaultGrfExt); - this.tabControlPanel2.Controls.Add(this.label6); - this.tabControlPanel2.Controls.Add(this.ppLblROFldrLocDefault); - this.tabControlPanel2.Controls.Add(this.ppLblGraphicFileExtDefault); - this.tabControlPanel2.Controls.Add(this.ppCmbxGrphFileExt); - this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel2.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel2.Name = "tabControlPanel2"; - this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel2.Size = new System.Drawing.Size(657, 321); - 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.tiRefObjs; - this.tabControlPanel2.Click += new System.EventHandler(this.tabpage_Enter); - // - // ppGpbxUpROvals - // - this.ppGpbxUpROvals.BackColor = System.Drawing.Color.Transparent; - this.ppGpbxUpROvals.CanvasColor = System.Drawing.SystemColors.Control; - this.ppGpbxUpROvals.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.ppGpbxUpROvals.Controls.Add(this.ppBtnResetRoVals); - this.ppGpbxUpROvals.Controls.Add(this.ppBtnUpRoVals); - this.ppGpbxUpROvals.Location = new System.Drawing.Point(437, 139); - this.ppGpbxUpROvals.Name = "ppGpbxUpROvals"; - this.ppGpbxUpROvals.Size = new System.Drawing.Size(150, 154); - // - // - // - this.ppGpbxUpROvals.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.ppGpbxUpROvals.Style.BackColorGradientAngle = 90; - this.ppGpbxUpROvals.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.ppGpbxUpROvals.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUpROvals.Style.BorderBottomWidth = 1; - this.ppGpbxUpROvals.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.ppGpbxUpROvals.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUpROvals.Style.BorderLeftWidth = 1; - this.ppGpbxUpROvals.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUpROvals.Style.BorderRightWidth = 1; - this.ppGpbxUpROvals.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxUpROvals.Style.BorderTopWidth = 1; - this.ppGpbxUpROvals.Style.CornerDiameter = 4; - this.ppGpbxUpROvals.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.ppGpbxUpROvals.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.ppGpbxUpROvals.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.ppGpbxUpROvals.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - this.ppGpbxUpROvals.TabIndex = 46; - this.ppGpbxUpROvals.Text = "RO Values"; - // - // ppGpbxDefAccID - // - this.ppGpbxDefAccID.BackColor = System.Drawing.Color.Transparent; - this.ppGpbxDefAccID.CanvasColor = System.Drawing.SystemColors.Control; - this.ppGpbxDefAccID.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.ppGpbxDefAccID.Controls.Add(this.ppCmbxDefROPrefix); - this.ppGpbxDefAccID.Controls.Add(this.label7); - this.ppGpbxDefAccID.Controls.Add(this.ppBtnDefaultImgPrefix); - this.ppGpbxDefAccID.Controls.Add(this.ppLblImagePrefixDefault); - this.ppGpbxDefAccID.Controls.Add(this.ppCmbxDefImgPrefix); - this.ppGpbxDefAccID.Controls.Add(this.ppBtnDefaultROPrefix); - this.ppGpbxDefAccID.Controls.Add(this.ppLblROPrefixDefault); - this.ppGpbxDefAccID.Controls.Add(this.label8); - this.ppGpbxDefAccID.Location = new System.Drawing.Point(22, 137); - this.ppGpbxDefAccID.Name = "ppGpbxDefAccID"; - this.ppGpbxDefAccID.Size = new System.Drawing.Size(349, 169); - // - // - // - this.ppGpbxDefAccID.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.ppGpbxDefAccID.Style.BackColorGradientAngle = 90; - this.ppGpbxDefAccID.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.ppGpbxDefAccID.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxDefAccID.Style.BorderBottomWidth = 1; - this.ppGpbxDefAccID.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.ppGpbxDefAccID.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxDefAccID.Style.BorderLeftWidth = 1; - this.ppGpbxDefAccID.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxDefAccID.Style.BorderRightWidth = 1; - this.ppGpbxDefAccID.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGpbxDefAccID.Style.BorderTopWidth = 1; - this.ppGpbxDefAccID.Style.CornerDiameter = 4; - this.ppGpbxDefAccID.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.ppGpbxDefAccID.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.ppGpbxDefAccID.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.ppGpbxDefAccID.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - this.ppGpbxDefAccID.TabIndex = 45; - this.ppGpbxDefAccID.Text = "Default Accessory Page ID"; - // - // tiRefObjs - // - this.tiRefObjs.AttachedControl = this.tabControlPanel2; - this.tiRefObjs.Name = "tiRefObjs"; - this.tiRefObjs.Text = "Referenced Objects"; - // - // tabControlPanel1 - // - this.tabControlPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.tabControlPanel1.Controls.Add(this.ppCmbxProcSetType); - this.tabControlPanel1.Controls.Add(this.ppRTxtName); - this.tabControlPanel1.Controls.Add(this.label9); - this.tabControlPanel1.Controls.Add(this.label4); - this.tabControlPanel1.Controls.Add(this.label3); - this.tabControlPanel1.Controls.Add(this.ppRTxtTitle); - this.tabControlPanel1.Controls.Add(this.ppTxtBxUserID); - this.tabControlPanel1.Controls.Add(this.ppDTPicker); - this.tabControlPanel1.Controls.Add(this.label2); - this.tabControlPanel1.Controls.Add(this.label1); - this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel1.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel1.Name = "tabControlPanel1"; - this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel1.Size = new System.Drawing.Size(657, 321); - this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))); - this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227))))); - this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199))))); - this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) - | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel1.Style.GradientAngle = 90; - this.tabControlPanel1.TabIndex = 1; - this.tabControlPanel1.TabItem = this.tiGeneral; - // - // tiGeneral - // - this.tiGeneral.AttachedControl = this.tabControlPanel1; - this.tiGeneral.Name = "tiGeneral"; - this.tiGeneral.Text = "General"; - // - // tabControlPanel5 - // - this.tabControlPanel5.Controls.Add(this.ppBtnEdLibDoc); - this.tabControlPanel5.Controls.Add(this.ppGrdLibDocList); - this.tabControlPanel5.Controls.Add(this.ppBtnDelLibDoc); - this.tabControlPanel5.Controls.Add(this.ppBtnAddLibDoc); - this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel5.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel5.Name = "tabControlPanel5"; - this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel5.Size = new System.Drawing.Size(657, 321); - this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))); - this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227))))); - this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199))))); - this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) - | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel5.Style.GradientAngle = 90; - this.tabControlPanel5.TabIndex = 5; - this.tabControlPanel5.TabItem = this.tiLibDocs; - // - // tiLibDocs - // - this.tiLibDocs.AttachedControl = this.tabControlPanel5; - this.tiLibDocs.Name = "tiLibDocs"; - this.tiLibDocs.Text = "Library Documents"; - // - // tabControlPanel4 - // - this.tabControlPanel4.Controls.Add(this.ppGpbxUserSpecCB); - this.tabControlPanel4.Controls.Add(this.ppBtnDefaultChgBar); - this.tabControlPanel4.Controls.Add(this.ppCmbxFormat); - this.tabControlPanel4.Controls.Add(this.ppCmbxChangeBarType); - this.tabControlPanel4.Controls.Add(this.label11); - this.tabControlPanel4.Controls.Add(this.ppBtnDefaultFmt); - this.tabControlPanel4.Controls.Add(this.label10); - this.tabControlPanel4.Controls.Add(this.ppLblChangeBarTypeDefault); - this.tabControlPanel4.Controls.Add(this.ppLblFormatDefault); - this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel4.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel4.Name = "tabControlPanel4"; - this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel4.Size = new System.Drawing.Size(657, 321); - 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.tabControlPanel4.TabIndex = 4; - this.tabControlPanel4.TabItem = this.tiFmtSettings; - this.tabControlPanel4.Click += new System.EventHandler(this.tabpage_Enter); - // - // tiFmtSettings - // - this.tiFmtSettings.AttachedControl = this.tabControlPanel4; - this.tiFmtSettings.Name = "tiFmtSettings"; - this.tiFmtSettings.Text = "Format Settings"; - // - // tabControlPanel3 - // - this.tabControlPanel3.Controls.Add(this.ppGrpbxPrnAdj); - this.tabControlPanel3.Controls.Add(this.ppBtnPDFLoc); - this.tabControlPanel3.Controls.Add(this.label18); - this.tabControlPanel3.Controls.Add(this.label17); - this.tabControlPanel3.Controls.Add(this.ppBtnDeftDisAutoDuplx); - this.tabControlPanel3.Controls.Add(this.label16); - this.tabControlPanel3.Controls.Add(this.ppBtnDefWatermark); - this.tabControlPanel3.Controls.Add(this.ppChbxDisAutoDuplex); - this.tabControlPanel3.Controls.Add(this.ppBtnDefPagination); - this.tabControlPanel3.Controls.Add(this.ppLblAutoDuplexDefault); - this.tabControlPanel3.Controls.Add(this.ppCmbxWatermark); - this.tabControlPanel3.Controls.Add(this.ppTxtBxPDFLoc); - this.tabControlPanel3.Controls.Add(this.ppCmbxPagination); - this.tabControlPanel3.Controls.Add(this.ppLblPaginationDefault); - this.tabControlPanel3.Controls.Add(this.ppLblWatermarkDefault); - this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill; - this.tabControlPanel3.Location = new System.Drawing.Point(0, 24); - this.tabControlPanel3.Name = "tabControlPanel3"; - this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1); - this.tabControlPanel3.Size = new System.Drawing.Size(657, 321); - this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))); - this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227))))); - this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; - this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199))))); - this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) - | DevComponents.DotNetBar.eBorderSide.Bottom))); - this.tabControlPanel3.Style.GradientAngle = 90; - this.tabControlPanel3.TabIndex = 3; - this.tabControlPanel3.TabItem = this.tiOutputSettings; - this.tabControlPanel3.Click += new System.EventHandler(this.tabpage_Enter); - // - // ppGrpbxPrnAdj - // - this.ppGrpbxPrnAdj.BackColor = System.Drawing.Color.Transparent; - this.ppGrpbxPrnAdj.CanvasColor = System.Drawing.SystemColors.Control; - this.ppGrpbxPrnAdj.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; - this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnOvrdPrnPenWidth); - this.ppGrpbxPrnAdj.Controls.Add(this.label19); - this.ppGrpbxPrnAdj.Controls.Add(this.label22); - this.ppGrpbxPrnAdj.Controls.Add(this.label20); - this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnAdjPrnStartPos); - this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnOverdPrnPenBoldWidth); - this.ppGrpbxPrnAdj.Controls.Add(this.label21); - this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnOvrdPrnPenULineWidth); - this.ppGrpbxPrnAdj.Location = new System.Drawing.Point(16, 112); - this.ppGrpbxPrnAdj.Name = "ppGrpbxPrnAdj"; - this.ppGrpbxPrnAdj.Size = new System.Drawing.Size(623, 120); - // - // - // - this.ppGrpbxPrnAdj.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; - this.ppGrpbxPrnAdj.Style.BackColorGradientAngle = 90; - this.ppGrpbxPrnAdj.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; - this.ppGrpbxPrnAdj.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGrpbxPrnAdj.Style.BorderBottomWidth = 1; - this.ppGrpbxPrnAdj.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; - this.ppGrpbxPrnAdj.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGrpbxPrnAdj.Style.BorderLeftWidth = 1; - this.ppGrpbxPrnAdj.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGrpbxPrnAdj.Style.BorderRightWidth = 1; - this.ppGrpbxPrnAdj.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; - this.ppGrpbxPrnAdj.Style.BorderTopWidth = 1; - this.ppGrpbxPrnAdj.Style.CornerDiameter = 4; - this.ppGrpbxPrnAdj.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; - this.ppGrpbxPrnAdj.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; - this.ppGrpbxPrnAdj.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; - this.ppGrpbxPrnAdj.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; - this.ppGrpbxPrnAdj.TabIndex = 65; - this.ppGrpbxPrnAdj.Text = "Printer Adjustments"; - // - // tiOutputSettings - // - this.tiOutputSettings.AttachedControl = this.tabControlPanel3; - this.tiOutputSettings.Name = "tiOutputSettings"; - this.tiOutputSettings.Text = "Output Settings"; - // - // panVerBtns - // - this.panVerBtns.BackColor = System.Drawing.Color.Transparent; - this.panVerBtns.Controls.Add(this.btnLibDocs); - this.panVerBtns.Controls.Add(this.btnFmtSettings); - this.panVerBtns.Controls.Add(this.btnOutputSettings); - this.panVerBtns.Controls.Add(this.btnRefObjs); - this.panVerBtns.Controls.Add(this.btnGeneral); - this.panVerBtns.Location = new System.Drawing.Point(7, 3); - this.panVerBtns.Name = "panVerBtns"; - this.panVerBtns.Size = new System.Drawing.Size(157, 344); - this.panVerBtns.TabIndex = 27; - // - // btnLibDocs - // - this.btnLibDocs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnLibDocs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnLibDocs.Dock = System.Windows.Forms.DockStyle.Top; - this.btnLibDocs.Location = new System.Drawing.Point(0, 89); - this.btnLibDocs.Name = "btnLibDocs"; - this.btnLibDocs.Size = new System.Drawing.Size(157, 23); - this.btnLibDocs.TabIndex = 4; - this.btnLibDocs.Text = "Library Documents"; - this.btnLibDocs.Click += new System.EventHandler(this.btnLibDocs_Click); - // - // btnFmtSettings - // - this.btnFmtSettings.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnFmtSettings.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnFmtSettings.Dock = System.Windows.Forms.DockStyle.Top; - this.btnFmtSettings.Location = new System.Drawing.Point(0, 66); - this.btnFmtSettings.Name = "btnFmtSettings"; - this.btnFmtSettings.Size = new System.Drawing.Size(157, 23); - this.btnFmtSettings.TabIndex = 3; - this.btnFmtSettings.Text = "Format Settings"; - this.btnFmtSettings.Click += new System.EventHandler(this.btnFmtSettings_Click); - // - // btnOutputSettings - // - this.btnOutputSettings.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnOutputSettings.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnOutputSettings.Dock = System.Windows.Forms.DockStyle.Top; - this.btnOutputSettings.Location = new System.Drawing.Point(0, 43); - this.btnOutputSettings.Name = "btnOutputSettings"; - this.btnOutputSettings.Size = new System.Drawing.Size(157, 23); - this.btnOutputSettings.TabIndex = 2; - this.btnOutputSettings.Text = "Output Settings"; - this.btnOutputSettings.Click += new System.EventHandler(this.btnOutputSettings_Click); - // - // btnRefObjs - // - this.btnRefObjs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnRefObjs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnRefObjs.Dock = System.Windows.Forms.DockStyle.Top; - this.btnRefObjs.Location = new System.Drawing.Point(0, 23); - this.btnRefObjs.Name = "btnRefObjs"; - this.btnRefObjs.Size = new System.Drawing.Size(157, 20); - this.btnRefObjs.TabIndex = 1; - this.btnRefObjs.Text = "Referenced Objects"; - this.btnRefObjs.Click += new System.EventHandler(this.btnRefObjs_Click); - // - // btnGeneral - // - this.btnGeneral.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; - this.btnGeneral.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; - this.btnGeneral.Dock = System.Windows.Forms.DockStyle.Top; - this.btnGeneral.Location = new System.Drawing.Point(0, 0); - this.btnGeneral.Name = "btnGeneral"; - this.btnGeneral.Size = new System.Drawing.Size(157, 23); - this.btnGeneral.TabIndex = 0; - this.btnGeneral.Text = "General"; - this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click); - // - // frmVersionsProperties - // - this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.CaptionFont = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.ClientSize = new System.Drawing.Size(837, 402); - this.Controls.Add(this.panVerBtns); - this.Controls.Add(this.tcVersions); - this.Controls.Add(this.ppCbShwDefSettings); - this.Controls.Add(this.ppLblDefSettingsInfo); - this.Controls.Add(this.ppBtnCancel); - this.Controls.Add(this.ppBtnOK); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; - this.Name = "frmVersionsProperties"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "Versions Properties"; - this.Load += new System.EventHandler(this.frmVersionsProperties_Load); - ((System.ComponentModel.ISupportInitialize)(this.docVersionConfigBindingSource)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.formatInfoListBindingSource)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.imageCodecInfoBindingSource)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenWidth)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOverdPrnPenBoldWidth)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenULineWidth)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnAdjPrnStartPos)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).EndInit(); - this.ppGpbxUserSpecCB.ResumeLayout(false); - this.ppGpbxUserSpecCB.PerformLayout(); - this.ppGpbxUserSpecTxt.ResumeLayout(false); - this.ppGpbxUserSpecTxt.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.tcVersions)).EndInit(); - this.tcVersions.ResumeLayout(false); - this.tabControlPanel2.ResumeLayout(false); - this.tabControlPanel2.PerformLayout(); - this.ppGpbxUpROvals.ResumeLayout(false); - this.ppGpbxDefAccID.ResumeLayout(false); - this.ppGpbxDefAccID.PerformLayout(); - this.tabControlPanel1.ResumeLayout(false); - this.tabControlPanel1.PerformLayout(); - this.tabControlPanel5.ResumeLayout(false); - this.tabControlPanel4.ResumeLayout(false); - this.tabControlPanel4.PerformLayout(); - this.tabControlPanel3.ResumeLayout(false); - this.tabControlPanel3.PerformLayout(); - this.ppGrpbxPrnAdj.ResumeLayout(false); - this.ppGrpbxPrnAdj.PerformLayout(); - this.panVerBtns.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); + this.ppNumUpDwnAdjPrnStartPos.Name = "ppNumUpDwnAdjPrnStartPos"; + this.ppNumUpDwnAdjPrnStartPos.Size = new System.Drawing.Size(35, 20); + this.superTooltip1.SetSuperTooltip(this.ppNumUpDwnAdjPrnStartPos, new DevComponents.DotNetBar.SuperTooltipInfo("Starting Print Position", "", "Allows you to move the starting point on the page of where text and boarder begin" + + " printing.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppNumUpDwnAdjPrnStartPos.TabIndex = 7; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.BackColor = System.Drawing.Color.Transparent; + this.label22.Location = new System.Drawing.Point(244, 49); + this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(168, 13); + this.label22.TabIndex = 6; + this.label22.Text = "Adjust Starting Print Position (dots)"; + // + // ppBtnDeftDisAutoDuplx + // + this.ppBtnDeftDisAutoDuplx.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDeftDisAutoDuplx.Location = new System.Drawing.Point(178, 209); + this.ppBtnDeftDisAutoDuplx.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDeftDisAutoDuplx.Name = "ppBtnDeftDisAutoDuplx"; + this.ppBtnDeftDisAutoDuplx.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDeftDisAutoDuplx, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", resources.GetString("ppBtnDeftDisAutoDuplx.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(255, 150))); + this.ppBtnDeftDisAutoDuplx.TabIndex = 62; + this.ppBtnDeftDisAutoDuplx.Text = "Default"; + this.ppBtnDeftDisAutoDuplx.ThemeAware = true; + this.ppBtnDeftDisAutoDuplx.Visible = false; + // + // ppBtnDefWatermark + // + this.ppBtnDefWatermark.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefWatermark.Location = new System.Drawing.Point(444, 43); + this.ppBtnDefWatermark.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefWatermark.Name = "ppBtnDefWatermark"; + this.ppBtnDefWatermark.Size = new System.Drawing.Size(40, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefWatermark, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", "This will revert the watermark selection back to using the parent\'s (default) set" + + "ting.\r\n\r\nCheck \"Show Default Settings\" to display the \"default\" watermark (below" + + " the Watermark selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(255, 145))); + this.ppBtnDefWatermark.TabIndex = 61; + this.ppBtnDefWatermark.Text = "Default"; + this.ppBtnDefWatermark.ThemeAware = true; + this.ppBtnDefWatermark.Visible = false; + this.ppBtnDefWatermark.Click += new System.EventHandler(this.ppBtnDefWatermark_Click); + // + // ppBtnDefPagination + // + this.ppBtnDefPagination.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.ppBtnDefPagination.Location = new System.Drawing.Point(193, 43); + this.ppBtnDefPagination.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppBtnDefPagination.Name = "ppBtnDefPagination"; + this.ppBtnDefPagination.Size = new System.Drawing.Size(44, 20); + this.superTooltip1.SetSuperTooltip(this.ppBtnDefPagination, new DevComponents.DotNetBar.SuperTooltipInfo("The Default Button", "", "This will revert the pagination selection back to using the parent\'s (default) se" + + "tting.\r\n\r\nCheck \"Show Default Settings\" to display the \"default\" Pagination (bel" + + "ow the Pagination selection box).", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(255, 145))); + this.ppBtnDefPagination.TabIndex = 60; + this.ppBtnDefPagination.Text = "Default"; + this.ppBtnDefPagination.ThemeAware = true; + this.ppBtnDefPagination.Visible = false; + this.ppBtnDefPagination.Click += new System.EventHandler(this.ppBtnDefPagination_Click); + // + // ppCmbxWatermark + // + this.ppCmbxWatermark.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_Watermark", true)); + this.ppCmbxWatermark.DisplayMember = "Text"; + this.ppCmbxWatermark.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxWatermark.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxWatermark.FormattingEnabled = true; + this.ppCmbxWatermark.Location = new System.Drawing.Point(315, 43); + this.ppCmbxWatermark.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxWatermark.Name = "ppCmbxWatermark"; + this.ppCmbxWatermark.Size = new System.Drawing.Size(126, 21); + this.ppCmbxWatermark.TabIndex = 59; + this.ppCmbxWatermark.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxWatermark.WatermarkText = "select watermark option"; + this.ppCmbxWatermark.SelectedValueChanged += new System.EventHandler(this.ppCmbxWatermark_SelectedValueChanged); + // + // ppCmbxPagination + // + this.ppCmbxPagination.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.docVersionConfigBindingSource, "Print_Pagination", true)); + this.ppCmbxPagination.DisplayMember = "Text"; + this.ppCmbxPagination.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; + this.ppCmbxPagination.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.ppCmbxPagination.FormattingEnabled = true; + this.ppCmbxPagination.Location = new System.Drawing.Point(66, 43); + this.ppCmbxPagination.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCmbxPagination.Name = "ppCmbxPagination"; + this.ppCmbxPagination.Size = new System.Drawing.Size(123, 21); + this.superTooltip1.SetSuperTooltip(this.ppCmbxPagination, new DevComponents.DotNetBar.SuperTooltipInfo("Procedure Pagination", "", resources.GetString("ppCmbxPagination.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(400, 220))); + this.ppCmbxPagination.TabIndex = 58; + this.ppCmbxPagination.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppCmbxPagination.WatermarkText = "select pagination option"; + this.ppCmbxPagination.SelectedValueChanged += new System.EventHandler(this.ppCmbxPagination_SelectedValueChanged); + // + // ppLblWatermarkDefault + // + this.ppLblWatermarkDefault.AutoSize = true; + this.ppLblWatermarkDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblWatermarkDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblWatermarkDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblWatermarkDefault.Location = new System.Drawing.Point(310, 65); + this.ppLblWatermarkDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblWatermarkDefault.Name = "ppLblWatermarkDefault"; + this.ppLblWatermarkDefault.Size = new System.Drawing.Size(45, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblWatermarkDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Watermark settings", "", "Pressing the Default Button (to the right)\r\nwill reset the watermark setting back" + + " to \r\nthis default.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); + this.ppLblWatermarkDefault.TabIndex = 57; + this.ppLblWatermarkDefault.Text = "(default)"; + // + // ppLblPaginationDefault + // + this.ppLblPaginationDefault.AutoSize = true; + this.ppLblPaginationDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblPaginationDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblPaginationDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblPaginationDefault.Location = new System.Drawing.Point(64, 65); + this.ppLblPaginationDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblPaginationDefault.Name = "ppLblPaginationDefault"; + this.ppLblPaginationDefault.Size = new System.Drawing.Size(45, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblPaginationDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the default Pagination settings", "", "Pressing the Default Button (to the right)\r\nwill reset the pagination setting bac" + + "k to \r\nthis default.\r\n", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); + this.ppLblPaginationDefault.TabIndex = 56; + this.ppLblPaginationDefault.Text = "(default)"; + // + // ppTxtBxPDFLoc + // + this.ppTxtBxPDFLoc.Location = new System.Drawing.Point(80, 12); + this.ppTxtBxPDFLoc.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppTxtBxPDFLoc.Name = "ppTxtBxPDFLoc"; + this.ppTxtBxPDFLoc.Size = new System.Drawing.Size(379, 20); + this.ppTxtBxPDFLoc.TabIndex = 55; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.BackColor = System.Drawing.Color.Transparent; + this.label18.Location = new System.Drawing.Point(6, 12); + this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(72, 13); + this.label18.TabIndex = 54; + this.label18.Text = "PDF Location"; + // + // ppLblAutoDuplexDefault + // + this.ppLblAutoDuplexDefault.AutoSize = true; + this.ppLblAutoDuplexDefault.BackColor = System.Drawing.Color.Transparent; + this.ppLblAutoDuplexDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblAutoDuplexDefault.ForeColor = System.Drawing.Color.Gray; + this.ppLblAutoDuplexDefault.Location = new System.Drawing.Point(32, 228); + this.ppLblAutoDuplexDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblAutoDuplexDefault.Name = "ppLblAutoDuplexDefault"; + this.ppLblAutoDuplexDefault.Size = new System.Drawing.Size(64, 13); + this.superTooltip1.SetSuperTooltip(this.ppLblAutoDuplexDefault, new DevComponents.DotNetBar.SuperTooltipInfo("This is the Automatic Duplex default setting", "", "Pressing the Default Button (to the right)\r\nwill reset the Automatic Duplex setti" + + "ng back\r\nto this default.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); + this.ppLblAutoDuplexDefault.TabIndex = 53; + this.ppLblAutoDuplexDefault.Text = "(default ON)"; + // + // ppChbxDisAutoDuplex + // + this.ppChbxDisAutoDuplex.AutoSize = true; + this.ppChbxDisAutoDuplex.BackColor = System.Drawing.Color.Transparent; + this.ppChbxDisAutoDuplex.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.docVersionConfigBindingSource, "Print_DisableDuplex", true)); + this.ppChbxDisAutoDuplex.Location = new System.Drawing.Point(17, 209); + this.ppChbxDisAutoDuplex.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppChbxDisAutoDuplex.Name = "ppChbxDisAutoDuplex"; + this.ppChbxDisAutoDuplex.Size = new System.Drawing.Size(161, 17); + this.superTooltip1.SetSuperTooltip(this.ppChbxDisAutoDuplex, new DevComponents.DotNetBar.SuperTooltipInfo("Disable Automatic Duplex", "", "Checking this box will turn OFF the automatic duplexing used in some formats for " + + "Foldout pages.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(0, 0))); + this.ppChbxDisAutoDuplex.TabIndex = 52; + this.ppChbxDisAutoDuplex.Text = "Disable Automatic Duplexing"; + this.ppChbxDisAutoDuplex.UseVisualStyleBackColor = false; + this.ppChbxDisAutoDuplex.CheckedChanged += new System.EventHandler(this.ppChbxDisAutoDuplex_CheckedChanged); + // + // label16 + // + this.label16.AutoSize = true; + this.label16.BackColor = System.Drawing.Color.Transparent; + this.label16.Location = new System.Drawing.Point(4, 46); + this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(57, 13); + this.label16.TabIndex = 28; + this.label16.Text = "Pagination"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.BackColor = System.Drawing.Color.Transparent; + this.label17.Location = new System.Drawing.Point(250, 46); + this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(59, 13); + this.label17.TabIndex = 27; + this.label17.Text = "Watermark"; + // + // ppGrdLibDocList + // + this.ppGrdLibDocList.AutoGenerateColumns = false; + this.ppGrdLibDocList.ColumnInfo = resources.GetString("ppGrdLibDocList.ColumnInfo"); + this.ppGrdLibDocList.DataSource = this.documentInfoListBindingSource; + this.ppGrdLibDocList.ExtendLastCol = true; + this.ppGrdLibDocList.Location = new System.Drawing.Point(11, 12); + this.ppGrdLibDocList.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGrdLibDocList.Name = "ppGrdLibDocList"; + this.ppGrdLibDocList.Rows.Count = 1; + this.ppGrdLibDocList.Rows.DefaultSize = 19; + this.ppGrdLibDocList.Size = new System.Drawing.Size(472, 196); + this.ppGrdLibDocList.TabIndex = 0; + // + // documentInfoListBindingSource + // + this.documentInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.DocumentInfo); + // + // superTooltip1 + // + this.superTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; + // + // ppCbShwDefSettings + // + this.ppCbShwDefSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.ppCbShwDefSettings.Location = new System.Drawing.Point(9, 310); + this.ppCbShwDefSettings.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppCbShwDefSettings.Name = "ppCbShwDefSettings"; + this.ppCbShwDefSettings.Size = new System.Drawing.Size(154, 18); + this.superTooltip1.SetSuperTooltip(this.ppCbShwDefSettings, new DevComponents.DotNetBar.SuperTooltipInfo("Show Default Settings", "", "When checked, the default (parent\'s) setting will appear below the overridden sel" + + "ection.", null, null, DevComponents.DotNetBar.eTooltipColor.System)); + this.ppCbShwDefSettings.TabIndex = 26; + this.ppCbShwDefSettings.Text = "Show Default Settings"; + this.ppCbShwDefSettings.CheckedChanged += new System.EventHandler(this.tabpage_Enter); + // + // ppGpbxUserSpecCB + // + this.ppGpbxUserSpecCB.BackColor = System.Drawing.Color.Transparent; + this.ppGpbxUserSpecCB.CanvasColor = System.Drawing.SystemColors.Control; + this.ppGpbxUserSpecCB.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.ppGpbxUserSpecCB.Controls.Add(this.ppGpbxUserSpecTxt); + this.ppGpbxUserSpecCB.Controls.Add(this.ppBtnDefCbTxtTyp); + this.ppGpbxUserSpecCB.Controls.Add(this.ppCmbxChgBarPos); + this.ppGpbxUserSpecCB.Controls.Add(this.ppBtnDefaultCbPos); + this.ppGpbxUserSpecCB.Controls.Add(this.label12); + this.ppGpbxUserSpecCB.Controls.Add(this.ppCmbxChgBarTxtType); + this.ppGpbxUserSpecCB.Controls.Add(this.label13); + this.ppGpbxUserSpecCB.Controls.Add(this.ppLblChgBarPosDefault); + this.ppGpbxUserSpecCB.Controls.Add(this.ppLblChgBarTxtTypeDefault); + this.ppGpbxUserSpecCB.Location = new System.Drawing.Point(16, 117); + this.ppGpbxUserSpecCB.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGpbxUserSpecCB.Name = "ppGpbxUserSpecCB"; + this.ppGpbxUserSpecCB.Size = new System.Drawing.Size(466, 130); + // + // + // + this.ppGpbxUserSpecCB.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.ppGpbxUserSpecCB.Style.BackColorGradientAngle = 90; + this.ppGpbxUserSpecCB.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.ppGpbxUserSpecCB.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecCB.Style.BorderBottomWidth = 1; + this.ppGpbxUserSpecCB.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.ppGpbxUserSpecCB.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecCB.Style.BorderLeftWidth = 1; + this.ppGpbxUserSpecCB.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecCB.Style.BorderRightWidth = 1; + this.ppGpbxUserSpecCB.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecCB.Style.BorderTopWidth = 1; + this.ppGpbxUserSpecCB.Style.CornerDiameter = 4; + this.ppGpbxUserSpecCB.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.ppGpbxUserSpecCB.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.ppGpbxUserSpecCB.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.ppGpbxUserSpecCB.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + this.superTooltip1.SetSuperTooltip(this.ppGpbxUserSpecCB, new DevComponents.DotNetBar.SuperTooltipInfo("Change Bar Override Settings", "", resources.GetString("ppGpbxUserSpecCB.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(230, 155))); + this.ppGpbxUserSpecCB.TabIndex = 49; + this.ppGpbxUserSpecCB.Text = "Change Bar Override Settings"; + // + // ppGpbxUserSpecTxt + // + this.ppGpbxUserSpecTxt.CanvasColor = System.Drawing.SystemColors.Control; + this.ppGpbxUserSpecTxt.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.ppGpbxUserSpecTxt.Controls.Add(this.ppBtnDefCbTxt2); + this.ppGpbxUserSpecTxt.Controls.Add(this.label14); + this.ppGpbxUserSpecTxt.Controls.Add(this.ppBtnDefCbTxt1); + this.ppGpbxUserSpecTxt.Controls.Add(this.ppTxbxChangeBarUserMsgTwo); + this.ppGpbxUserSpecTxt.Controls.Add(this.ppLblChgBarUserMsgTwoDefault); + this.ppGpbxUserSpecTxt.Controls.Add(this.label15); + this.ppGpbxUserSpecTxt.Controls.Add(this.ppLblChgBarUserMsgOneDefault); + this.ppGpbxUserSpecTxt.Controls.Add(this.ppTxbxChangeBarUserMsgOne); + this.ppGpbxUserSpecTxt.Location = new System.Drawing.Point(267, 6); + this.ppGpbxUserSpecTxt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGpbxUserSpecTxt.Name = "ppGpbxUserSpecTxt"; + this.ppGpbxUserSpecTxt.Size = new System.Drawing.Size(184, 103); + // + // + // + this.ppGpbxUserSpecTxt.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.ppGpbxUserSpecTxt.Style.BackColorGradientAngle = 90; + this.ppGpbxUserSpecTxt.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.ppGpbxUserSpecTxt.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecTxt.Style.BorderBottomWidth = 1; + this.ppGpbxUserSpecTxt.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.ppGpbxUserSpecTxt.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecTxt.Style.BorderLeftWidth = 1; + this.ppGpbxUserSpecTxt.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecTxt.Style.BorderRightWidth = 1; + this.ppGpbxUserSpecTxt.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUserSpecTxt.Style.BorderTopWidth = 1; + this.ppGpbxUserSpecTxt.Style.CornerDiameter = 4; + this.ppGpbxUserSpecTxt.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.ppGpbxUserSpecTxt.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.ppGpbxUserSpecTxt.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.ppGpbxUserSpecTxt.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + this.ppGpbxUserSpecTxt.TabIndex = 51; + this.ppGpbxUserSpecTxt.Text = "Custom Change Bar Message"; + // + // ppLblDefSettingsInfo + // + this.ppLblDefSettingsInfo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.ppLblDefSettingsInfo.AutoSize = true; + this.ppLblDefSettingsInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ppLblDefSettingsInfo.Location = new System.Drawing.Point(7, 294); + this.ppLblDefSettingsInfo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); + this.ppLblDefSettingsInfo.Name = "ppLblDefSettingsInfo"; + this.ppLblDefSettingsInfo.Size = new System.Drawing.Size(156, 13); + this.ppLblDefSettingsInfo.TabIndex = 25; + this.ppLblDefSettingsInfo.Text = "* Default values shown in italics"; + // + // dlgROFolder + // + this.dlgROFolder.RootFolder = System.Environment.SpecialFolder.MyComputer; + // + // tcVersions + // + this.tcVersions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Right))); + this.tcVersions.BackColor = System.Drawing.Color.Transparent; + this.tcVersions.CanReorderTabs = true; + this.tcVersions.Controls.Add(this.tabControlPanel1); + this.tcVersions.Controls.Add(this.tabControlPanel5); + this.tcVersions.Controls.Add(this.tabControlPanel4); + this.tcVersions.Controls.Add(this.tabControlPanel3); + this.tcVersions.Controls.Add(this.tabControlPanel2); + this.tcVersions.Location = new System.Drawing.Point(130, 3); + this.tcVersions.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tcVersions.Name = "tcVersions"; + this.tcVersions.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold); + this.tcVersions.SelectedTabIndex = 0; + this.tcVersions.Size = new System.Drawing.Size(493, 280); + this.tcVersions.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Dock; + this.tcVersions.TabIndex = 28; + this.tcVersions.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox; + this.tcVersions.Tabs.Add(this.tiGeneral); + this.tcVersions.Tabs.Add(this.tiRefObjs); + this.tcVersions.Tabs.Add(this.tiOutputSettings); + this.tcVersions.Tabs.Add(this.tiFmtSettings); + this.tcVersions.Tabs.Add(this.tiLibDocs); + this.tcVersions.TabsVisible = false; + this.tcVersions.Text = "tabControl1"; + // + // tabControlPanel5 + // + this.tabControlPanel5.AutoScroll = true; + this.tabControlPanel5.Controls.Add(this.ppGrdLibDocList); + this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel5.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel5.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel5.Name = "tabControlPanel5"; + this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel5.Size = new System.Drawing.Size(493, 258); + this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + | DevComponents.DotNetBar.eBorderSide.Bottom))); + this.tabControlPanel5.Style.GradientAngle = 90; + this.tabControlPanel5.TabIndex = 5; + this.tabControlPanel5.TabItem = this.tiLibDocs; + // + // tiLibDocs + // + this.tiLibDocs.AttachedControl = this.tabControlPanel5; + this.tiLibDocs.Name = "tiLibDocs"; + this.tiLibDocs.Text = "Library Documents"; + // + // tabControlPanel1 + // + this.tabControlPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.tabControlPanel1.Controls.Add(this.ppCmbxProcSetType); + this.tabControlPanel1.Controls.Add(this.ppRTxtName); + this.tabControlPanel1.Controls.Add(this.label9); + this.tabControlPanel1.Controls.Add(this.label4); + this.tabControlPanel1.Controls.Add(this.label3); + this.tabControlPanel1.Controls.Add(this.ppRTxtTitle); + this.tabControlPanel1.Controls.Add(this.ppTxtBxUserID); + this.tabControlPanel1.Controls.Add(this.ppDTPicker); + this.tabControlPanel1.Controls.Add(this.label2); + this.tabControlPanel1.Controls.Add(this.label1); + this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel1.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel1.Name = "tabControlPanel1"; + this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel1.Size = new System.Drawing.Size(493, 258); + this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + | DevComponents.DotNetBar.eBorderSide.Bottom))); + this.tabControlPanel1.Style.GradientAngle = 90; + this.tabControlPanel1.TabIndex = 1; + this.tabControlPanel1.TabItem = this.tiGeneral; + // + // tiGeneral + // + this.tiGeneral.AttachedControl = this.tabControlPanel1; + this.tiGeneral.Name = "tiGeneral"; + this.tiGeneral.Text = "General"; + // + // tabControlPanel4 + // + this.tabControlPanel4.Controls.Add(this.ppGpbxUserSpecCB); + this.tabControlPanel4.Controls.Add(this.ppBtnDefaultChgBar); + this.tabControlPanel4.Controls.Add(this.ppCmbxFormat); + this.tabControlPanel4.Controls.Add(this.ppCmbxChangeBarType); + this.tabControlPanel4.Controls.Add(this.label11); + this.tabControlPanel4.Controls.Add(this.ppBtnDefaultFmt); + this.tabControlPanel4.Controls.Add(this.label10); + this.tabControlPanel4.Controls.Add(this.ppLblChangeBarTypeDefault); + this.tabControlPanel4.Controls.Add(this.ppLblFormatDefault); + this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel4.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel4.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel4.Name = "tabControlPanel4"; + this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel4.Size = new System.Drawing.Size(493, 258); + this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + 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.tabControlPanel4.TabIndex = 4; + this.tabControlPanel4.TabItem = this.tiFmtSettings; + this.tabControlPanel4.Click += new System.EventHandler(this.tabpage_Enter); + // + // tiFmtSettings + // + this.tiFmtSettings.AttachedControl = this.tabControlPanel4; + this.tiFmtSettings.Name = "tiFmtSettings"; + this.tiFmtSettings.Text = "Format Settings"; + // + // tabControlPanel3 + // + this.tabControlPanel3.Controls.Add(this.ppGrpbxPrnAdj); + this.tabControlPanel3.Controls.Add(this.ppBtnPDFLoc); + this.tabControlPanel3.Controls.Add(this.label18); + this.tabControlPanel3.Controls.Add(this.label17); + this.tabControlPanel3.Controls.Add(this.ppBtnDeftDisAutoDuplx); + this.tabControlPanel3.Controls.Add(this.label16); + this.tabControlPanel3.Controls.Add(this.ppBtnDefWatermark); + this.tabControlPanel3.Controls.Add(this.ppChbxDisAutoDuplex); + this.tabControlPanel3.Controls.Add(this.ppBtnDefPagination); + this.tabControlPanel3.Controls.Add(this.ppLblAutoDuplexDefault); + this.tabControlPanel3.Controls.Add(this.ppCmbxWatermark); + this.tabControlPanel3.Controls.Add(this.ppTxtBxPDFLoc); + this.tabControlPanel3.Controls.Add(this.ppCmbxPagination); + this.tabControlPanel3.Controls.Add(this.ppLblPaginationDefault); + this.tabControlPanel3.Controls.Add(this.ppLblWatermarkDefault); + this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel3.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel3.Name = "tabControlPanel3"; + this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel3.Size = new System.Drawing.Size(493, 258); + this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right) + | DevComponents.DotNetBar.eBorderSide.Bottom))); + this.tabControlPanel3.Style.GradientAngle = 90; + this.tabControlPanel3.TabIndex = 3; + this.tabControlPanel3.TabItem = this.tiOutputSettings; + this.tabControlPanel3.Click += new System.EventHandler(this.tabpage_Enter); + // + // ppGrpbxPrnAdj + // + this.ppGrpbxPrnAdj.BackColor = System.Drawing.Color.Transparent; + this.ppGrpbxPrnAdj.CanvasColor = System.Drawing.SystemColors.Control; + this.ppGrpbxPrnAdj.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnOvrdPrnPenWidth); + this.ppGrpbxPrnAdj.Controls.Add(this.label19); + this.ppGrpbxPrnAdj.Controls.Add(this.label22); + this.ppGrpbxPrnAdj.Controls.Add(this.label20); + this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnAdjPrnStartPos); + this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnOverdPrnPenBoldWidth); + this.ppGrpbxPrnAdj.Controls.Add(this.label21); + this.ppGrpbxPrnAdj.Controls.Add(this.ppNumUpDwnOvrdPrnPenULineWidth); + this.ppGrpbxPrnAdj.Location = new System.Drawing.Point(12, 91); + this.ppGrpbxPrnAdj.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGrpbxPrnAdj.Name = "ppGrpbxPrnAdj"; + this.ppGrpbxPrnAdj.Size = new System.Drawing.Size(467, 98); + // + // + // + this.ppGrpbxPrnAdj.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.ppGrpbxPrnAdj.Style.BackColorGradientAngle = 90; + this.ppGrpbxPrnAdj.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.ppGrpbxPrnAdj.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGrpbxPrnAdj.Style.BorderBottomWidth = 1; + this.ppGrpbxPrnAdj.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.ppGrpbxPrnAdj.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGrpbxPrnAdj.Style.BorderLeftWidth = 1; + this.ppGrpbxPrnAdj.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGrpbxPrnAdj.Style.BorderRightWidth = 1; + this.ppGrpbxPrnAdj.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGrpbxPrnAdj.Style.BorderTopWidth = 1; + this.ppGrpbxPrnAdj.Style.CornerDiameter = 4; + this.ppGrpbxPrnAdj.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.ppGrpbxPrnAdj.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.ppGrpbxPrnAdj.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.ppGrpbxPrnAdj.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + this.ppGrpbxPrnAdj.TabIndex = 65; + this.ppGrpbxPrnAdj.Text = "Printer Adjustments"; + // + // tiOutputSettings + // + this.tiOutputSettings.AttachedControl = this.tabControlPanel3; + this.tiOutputSettings.Name = "tiOutputSettings"; + this.tiOutputSettings.Text = "Output Settings"; + // + // tabControlPanel2 + // + this.tabControlPanel2.Controls.Add(this.ppGpbxUpROvals); + this.tabControlPanel2.Controls.Add(this.ppGpbxDefAccID); + this.tabControlPanel2.Controls.Add(this.ppBtnFldrDlg); + this.tabControlPanel2.Controls.Add(this.ppTxbxRoFoldLoc); + this.tabControlPanel2.Controls.Add(this.label5); + this.tabControlPanel2.Controls.Add(this.ppBtnDefaultGrfExt); + this.tabControlPanel2.Controls.Add(this.label6); + this.tabControlPanel2.Controls.Add(this.ppLblROFldrLocDefault); + this.tabControlPanel2.Controls.Add(this.ppLblGraphicFileExtDefault); + this.tabControlPanel2.Controls.Add(this.ppCmbxGrphFileExt); + this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill; + this.tabControlPanel2.Location = new System.Drawing.Point(0, 22); + this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.tabControlPanel2.Name = "tabControlPanel2"; + this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1); + this.tabControlPanel2.Size = new System.Drawing.Size(493, 258); + this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(247)))), ((int)(((byte)(247))))); + this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(195)))), ((int)(((byte)(195))))); + this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine; + this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(70)))), ((int)(((byte)(70))))); + 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.tiRefObjs; + this.tabControlPanel2.Click += new System.EventHandler(this.tabpage_Enter); + // + // ppGpbxUpROvals + // + this.ppGpbxUpROvals.BackColor = System.Drawing.Color.Transparent; + this.ppGpbxUpROvals.CanvasColor = System.Drawing.SystemColors.Control; + this.ppGpbxUpROvals.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.ppGpbxUpROvals.Controls.Add(this.ppBtnResetRoVals); + this.ppGpbxUpROvals.Controls.Add(this.ppBtnUpRoVals); + this.ppGpbxUpROvals.Location = new System.Drawing.Point(328, 113); + this.ppGpbxUpROvals.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGpbxUpROvals.Name = "ppGpbxUpROvals"; + this.ppGpbxUpROvals.Size = new System.Drawing.Size(112, 125); + // + // + // + this.ppGpbxUpROvals.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.ppGpbxUpROvals.Style.BackColorGradientAngle = 90; + this.ppGpbxUpROvals.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.ppGpbxUpROvals.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUpROvals.Style.BorderBottomWidth = 1; + this.ppGpbxUpROvals.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.ppGpbxUpROvals.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUpROvals.Style.BorderLeftWidth = 1; + this.ppGpbxUpROvals.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUpROvals.Style.BorderRightWidth = 1; + this.ppGpbxUpROvals.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxUpROvals.Style.BorderTopWidth = 1; + this.ppGpbxUpROvals.Style.CornerDiameter = 4; + this.ppGpbxUpROvals.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.ppGpbxUpROvals.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.ppGpbxUpROvals.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.ppGpbxUpROvals.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + this.ppGpbxUpROvals.TabIndex = 46; + this.ppGpbxUpROvals.Text = "RO Values"; + // + // ppGpbxDefAccID + // + this.ppGpbxDefAccID.BackColor = System.Drawing.Color.Transparent; + this.ppGpbxDefAccID.CanvasColor = System.Drawing.SystemColors.Control; + this.ppGpbxDefAccID.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007; + this.ppGpbxDefAccID.Controls.Add(this.ppCmbxDefROPrefix); + this.ppGpbxDefAccID.Controls.Add(this.label7); + this.ppGpbxDefAccID.Controls.Add(this.ppBtnDefaultImgPrefix); + this.ppGpbxDefAccID.Controls.Add(this.ppLblImagePrefixDefault); + this.ppGpbxDefAccID.Controls.Add(this.ppCmbxDefImgPrefix); + this.ppGpbxDefAccID.Controls.Add(this.ppBtnDefaultROPrefix); + this.ppGpbxDefAccID.Controls.Add(this.ppLblROPrefixDefault); + this.ppGpbxDefAccID.Controls.Add(this.label8); + this.ppGpbxDefAccID.Location = new System.Drawing.Point(16, 111); + this.ppGpbxDefAccID.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.ppGpbxDefAccID.Name = "ppGpbxDefAccID"; + this.ppGpbxDefAccID.Size = new System.Drawing.Size(262, 137); + // + // + // + this.ppGpbxDefAccID.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2; + this.ppGpbxDefAccID.Style.BackColorGradientAngle = 90; + this.ppGpbxDefAccID.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground; + this.ppGpbxDefAccID.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxDefAccID.Style.BorderBottomWidth = 1; + this.ppGpbxDefAccID.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder; + this.ppGpbxDefAccID.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxDefAccID.Style.BorderLeftWidth = 1; + this.ppGpbxDefAccID.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxDefAccID.Style.BorderRightWidth = 1; + this.ppGpbxDefAccID.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid; + this.ppGpbxDefAccID.Style.BorderTopWidth = 1; + this.ppGpbxDefAccID.Style.CornerDiameter = 4; + this.ppGpbxDefAccID.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded; + this.ppGpbxDefAccID.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center; + this.ppGpbxDefAccID.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText; + this.ppGpbxDefAccID.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near; + this.ppGpbxDefAccID.TabIndex = 45; + this.ppGpbxDefAccID.Text = "Default Accessory Page ID"; + // + // tiRefObjs + // + this.tiRefObjs.AttachedControl = this.tabControlPanel2; + this.tiRefObjs.Name = "tiRefObjs"; + this.tiRefObjs.Text = "Referenced Objects"; + // + // panVerBtns + // + this.panVerBtns.BackColor = System.Drawing.Color.Transparent; + this.panVerBtns.Controls.Add(this.btnLibDocs); + this.panVerBtns.Controls.Add(this.btnFmtSettings); + this.panVerBtns.Controls.Add(this.btnOutputSettings); + this.panVerBtns.Controls.Add(this.btnRefObjs); + this.panVerBtns.Controls.Add(this.btnGeneral); + this.panVerBtns.Location = new System.Drawing.Point(5, 2); + this.panVerBtns.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.panVerBtns.Name = "panVerBtns"; + this.panVerBtns.Size = new System.Drawing.Size(118, 280); + this.panVerBtns.TabIndex = 27; + // + // btnLibDocs + // + this.btnLibDocs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnLibDocs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnLibDocs.Dock = System.Windows.Forms.DockStyle.Top; + this.btnLibDocs.Location = new System.Drawing.Point(0, 73); + this.btnLibDocs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnLibDocs.Name = "btnLibDocs"; + this.btnLibDocs.Size = new System.Drawing.Size(118, 19); + this.btnLibDocs.TabIndex = 4; + this.btnLibDocs.Text = "Library Documents"; + this.btnLibDocs.Click += new System.EventHandler(this.btnLibDocs_Click); + // + // btnFmtSettings + // + this.btnFmtSettings.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnFmtSettings.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnFmtSettings.Dock = System.Windows.Forms.DockStyle.Top; + this.btnFmtSettings.Location = new System.Drawing.Point(0, 54); + this.btnFmtSettings.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnFmtSettings.Name = "btnFmtSettings"; + this.btnFmtSettings.Size = new System.Drawing.Size(118, 19); + this.btnFmtSettings.TabIndex = 3; + this.btnFmtSettings.Text = "Format Settings"; + this.btnFmtSettings.Click += new System.EventHandler(this.btnFmtSettings_Click); + // + // btnOutputSettings + // + this.btnOutputSettings.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnOutputSettings.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnOutputSettings.Dock = System.Windows.Forms.DockStyle.Top; + this.btnOutputSettings.Location = new System.Drawing.Point(0, 35); + this.btnOutputSettings.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnOutputSettings.Name = "btnOutputSettings"; + this.btnOutputSettings.Size = new System.Drawing.Size(118, 19); + this.btnOutputSettings.TabIndex = 2; + this.btnOutputSettings.Text = "Output Settings"; + this.btnOutputSettings.Click += new System.EventHandler(this.btnOutputSettings_Click); + // + // btnRefObjs + // + this.btnRefObjs.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnRefObjs.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnRefObjs.Dock = System.Windows.Forms.DockStyle.Top; + this.btnRefObjs.Location = new System.Drawing.Point(0, 19); + this.btnRefObjs.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnRefObjs.Name = "btnRefObjs"; + this.btnRefObjs.Size = new System.Drawing.Size(118, 16); + this.btnRefObjs.TabIndex = 1; + this.btnRefObjs.Text = "Referenced Objects"; + this.btnRefObjs.Click += new System.EventHandler(this.btnRefObjs_Click); + // + // btnGeneral + // + this.btnGeneral.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton; + this.btnGeneral.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground; + this.btnGeneral.Dock = System.Windows.Forms.DockStyle.Top; + this.btnGeneral.Location = new System.Drawing.Point(0, 0); + this.btnGeneral.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.btnGeneral.Name = "btnGeneral"; + this.btnGeneral.Size = new System.Drawing.Size(118, 19); + this.btnGeneral.TabIndex = 0; + this.btnGeneral.Text = "General"; + this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click); + // + // frmVersionsProperties + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.CaptionFont = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ClientSize = new System.Drawing.Size(628, 327); + this.Controls.Add(this.panVerBtns); + this.Controls.Add(this.tcVersions); + this.Controls.Add(this.ppCbShwDefSettings); + this.Controls.Add(this.ppLblDefSettingsInfo); + this.Controls.Add(this.ppBtnCancel); + this.Controls.Add(this.ppBtnOK); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); + this.Name = "frmVersionsProperties"; + this.ShowIcon = false; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Versions Properties"; + this.Load += new System.EventHandler(this.frmVersionsProperties_Load); + ((System.ComponentModel.ISupportInitialize)(this.docVersionConfigBindingSource)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.formatInfoListBindingSource)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.imageCodecInfoBindingSource)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenWidth)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOverdPrnPenBoldWidth)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnOvrdPrnPenULineWidth)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppNumUpDwnAdjPrnStartPos)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.documentInfoListBindingSource)).EndInit(); + this.ppGpbxUserSpecCB.ResumeLayout(false); + this.ppGpbxUserSpecCB.PerformLayout(); + this.ppGpbxUserSpecTxt.ResumeLayout(false); + this.ppGpbxUserSpecTxt.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.tcVersions)).EndInit(); + this.tcVersions.ResumeLayout(false); + this.tabControlPanel5.ResumeLayout(false); + this.tabControlPanel1.ResumeLayout(false); + this.tabControlPanel1.PerformLayout(); + this.tabControlPanel4.ResumeLayout(false); + this.tabControlPanel4.PerformLayout(); + this.tabControlPanel3.ResumeLayout(false); + this.tabControlPanel3.PerformLayout(); + this.ppGrpbxPrnAdj.ResumeLayout(false); + this.ppGrpbxPrnAdj.PerformLayout(); + this.tabControlPanel2.ResumeLayout(false); + this.tabControlPanel2.PerformLayout(); + this.ppGpbxUpROvals.ResumeLayout(false); + this.ppGpbxDefAccID.ResumeLayout(false); + this.ppGpbxDefAccID.PerformLayout(); + this.panVerBtns.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -1705,9 +1783,6 @@ namespace VEPROMS private System.Windows.Forms.Label ppLblChgBarUserMsgTwoDefault; private System.Windows.Forms.Label ppLblChgBarUserMsgOneDefault; private C1.Win.C1FlexGrid.C1FlexGrid ppGrdLibDocList; - private DevComponents.DotNetBar.ButtonX ppBtnEdLibDoc; - private DevComponents.DotNetBar.ButtonX ppBtnDelLibDoc; - private DevComponents.DotNetBar.ButtonX ppBtnAddLibDoc; private System.Windows.Forms.BindingSource formatInfoListBindingSource; private DevComponents.DotNetBar.Controls.ComboBoxEx ppCmbxGrphFileExt; private DevComponents.DotNetBar.Controls.ComboBoxEx ppCmbxDefROPrefix; @@ -1769,5 +1844,6 @@ namespace VEPROMS private DevComponents.DotNetBar.ButtonX btnOutputSettings; private DevComponents.DotNetBar.ButtonX btnRefObjs; private DevComponents.DotNetBar.ButtonX btnGeneral; + private System.Windows.Forms.BindingSource documentInfoListBindingSource; } } \ No newline at end of file diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs index 0dba4cb5..663b7c0f 100644 --- a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs +++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs @@ -19,6 +19,7 @@ namespace VEPROMS { // Default values private string _DefaultFormatName = null; + private string _DefaultROPath = null; private string _DefaultROGraficFileExtension = null; private string _DefaultROPrefix = null; private string _DefaultImagePrefix = null; @@ -103,6 +104,9 @@ namespace VEPROMS ppLblChgBarUserMsgTwoDefault.Text = string.Format("{0}", _DefaultChgBarUsrMsg2); } + // Get the ro path - there is no 'default' + _DefaultROPath = _DocVersionConfig.RODefaults_ropath; + // Get the default RO Graphic file extension _DefaultROGraficFileExtension = _DocVersionConfig.Graphics_defaultext; SetupDefault(_DefaultROGraficFileExtension, ppLblGraphicFileExtDefault, ppCmbxGrphFileExt); @@ -195,6 +199,7 @@ namespace VEPROMS ppCmbxProcSetType.ValueMember = "EValue"; ppCmbxProcSetType.Enabled = false; // maybe enable this if used for version creation + documentInfoListBindingSource.DataSource = DocumentInfoList.GetLibraries(); } #region General tab @@ -226,7 +231,7 @@ namespace VEPROMS /// /// This is a temporary function for demo purposes... /// Display the standard folder selection dialog to have the user select the location of the Referenced Objects folder. - /// From this, we will use the RO.FST to populate the RO and Image Accessory ID cobmo boxes. + /// From this, we will use the RO.FST to populate the RO and Image Accessory ID combo boxes. /// /// /// diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.resx b/PROMS/VEPROMS User Interface/frmVersionsProperties.resx index afca2ae3..5ff93073 100644 --- a/PROMS/VEPROMS User Interface/frmVersionsProperties.resx +++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.resx @@ -123,15 +123,9 @@ 269, 17 - - 269, 17 - 660, 17 - - 521, 17 - Allows you to specify the default format to use for all procedures in this set. @@ -166,8 +160,8 @@ Check "Show Default Settings" to display the "default" Change Bar Custom Message iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEwAA - CxMBAJqcGAAAAn9JREFUOE+lk2tI01EYxhf0oU8WqVEIRpaIBWJgSPUhROmippS3QkkTylsXDMW8ts3b + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEgAA + CxIB0t1+/AAAAn9JREFUOE+lk2tI01EYxhf0oU8WqVEIRpaIBWJgSPUhROmippS3QkkTylsXDMW8ts3b 1G06daVibuqaOq0sxbBCKBSJ0PJCialZUFSKqaGSt1//TbIsww8deOBwznl+5zkv71kHiP5rGAFrKb1Q 5ypR6bmaVU6m2kCiXJv007Om2XgwJEaNT4QiyDi/GF9mKRVgsWkav+CYQkR1utwAQfypphqZ4l/JIhOL jvtGKfCOyDMB6O/WMjNea9L3MT1zIxoM5QrqdWnS1SA+kUq8w1V4hhUgqq1QMj1WtcK88KmIud5oqsqy @@ -189,14 +183,11 @@ Check "Show Default Settings" to display the "default" graphic file extension se 17, 57 - - 17, 57 - iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEwAA - CxMBAJqcGAAAAn9JREFUOE+lk2tI01EYxhf0oU8WqVEIRpaIBWJgSPUhROmippS3QkkTylsXDMW8ts3b + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEgAA + CxIB0t1+/AAAAn9JREFUOE+lk2tI01EYxhf0oU8WqVEIRpaIBWJgSPUhROmippS3QkkTylsXDMW8ts3b 1G06daVibuqaOq0sxbBCKBSJ0PJCialZUFSKqaGSt1//TbIsww8deOBwznl+5zkv71kHiP5rGAFrKb1Q 5ypR6bmaVU6m2kCiXJv007Om2XgwJEaNT4QiyDi/GF9mKRVgsWkav+CYQkR1utwAQfypphqZ4l/JIhOL jvtGKfCOyDMB6O/WMjNea9L3MT1zIxoM5QrqdWnS1SA+kUq8w1V4hhUgqq1QMj1WtcK88KmIud5oqsqy @@ -224,6 +215,12 @@ Fixed - pagination is done only when you select to do so. This information is s Auto - pagination is done when VE-PROMS senses a change was made to the procedure since the last time the procedure was repaginated. + + 13,0,0,0,0,95,Columns:0{Width:98;Name:"DocumentTitle";Caption:"DocumentTitle";Visible:False;AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 1{Width:153;Name:"LibraryDocumentUsage";Caption:"LibraryDocumentUsage";Visible:False;AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 2{Width:96;Name:"ErrorMessage";Caption:"ErrorMessage";Visible:False;AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 3{Width:49;Name:"DocID";Caption:"DocID";Visible:False;AllowEditing:False;Style:"DataType:System.Int32;TextAlign:RightCenter;";} 4{Width:140;Name:"DocumentEntryCount";Caption:"Number of Usages";AllowEditing:False;Style:"DataType:System.Int32;TextAlign:RightCenter;";} 5{Width:426;Name:"LibTitle";Caption:"Library Document Title";AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 6{Name:"DocContent";Caption:"DocContent";Visible:False;AllowEditing:False;Style:"DataType:System.Byte[];TextAlign:GeneralCenter;";} 7{Width:64;Name:"DocAscii";Caption:"DocAscii";Visible:False;AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 8{Width:51;Name:"Config";Caption:"Config";Visible:False;AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 9{Width:39;Name:"DTS";Caption:"DTS";Visible:False;AllowEditing:False;Style:"Format:""d"";DataType:System.DateTime;TextAlign:LeftCenter;";} 10{Width:53;Name:"UserID";Caption:"UserID";Visible:False;AllowEditing:False;Style:"DataType:System.String;TextAlign:LeftCenter;";} 11{Name:"DocumentEntries";Caption:"DocumentEntries";Visible:False;AllowEditing:False;Style:"DataType:VEPROMS.CSLA.Library.EntryInfoList;TextAlign:GeneralCenter;";} 12{Width:156;Name:"MyDocumentInfoUnique";Caption:"MyDocumentInfoUnique";Visible:False;AllowEditing:False;Style:"DataType:System.Int32;TextAlign:RightCenter;";} + + + 393, 57 + - Select the position of the change bar with respect to the changed text