diff --git a/PROMS/VEPROMS User Interface/dlgPhoneList.Designer.cs b/PROMS/VEPROMS User Interface/dlgPhoneList.Designer.cs
new file mode 100644
index 00000000..e1a6879c
--- /dev/null
+++ b/PROMS/VEPROMS User Interface/dlgPhoneList.Designer.cs
@@ -0,0 +1,95 @@
+namespace VEPROMS
+{
+ partial class dlgPhoneList
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.tbPhoneList = new DevComponents.DotNetBar.Controls.TextBoxX();
+ this.btnOk = new DevComponents.DotNetBar.ButtonX();
+ this.btnCancel = new DevComponents.DotNetBar.ButtonX();
+ this.SuspendLayout();
+ //
+ // tbPhoneList
+ //
+ //
+ //
+ //
+ this.tbPhoneList.Border.Class = "TextBoxBorder";
+ this.tbPhoneList.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
+ this.tbPhoneList.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.tbPhoneList.Location = new System.Drawing.Point(13, 11);
+ this.tbPhoneList.Multiline = true;
+ this.tbPhoneList.Name = "tbPhoneList";
+ this.tbPhoneList.Size = new System.Drawing.Size(843, 216);
+ this.tbPhoneList.TabIndex = 0;
+ //
+ // btnOk
+ //
+ this.btnOk.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
+ this.btnOk.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
+ this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
+ this.btnOk.Location = new System.Drawing.Point(654, 235);
+ this.btnOk.Name = "btnOk";
+ this.btnOk.Size = new System.Drawing.Size(75, 23);
+ this.btnOk.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.btnOk.TabIndex = 1;
+ this.btnOk.Text = "Ok";
+ this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
+ //
+ // btnCancel
+ //
+ this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
+ this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
+ this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
+ this.btnCancel.Location = new System.Drawing.Point(757, 235);
+ this.btnCancel.Name = "btnCancel";
+ this.btnCancel.Size = new System.Drawing.Size(75, 23);
+ this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.btnCancel.TabIndex = 2;
+ this.btnCancel.Text = "Cancel";
+ //
+ // dlgPhoneList
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(866, 268);
+ this.Controls.Add(this.btnCancel);
+ this.Controls.Add(this.btnOk);
+ this.Controls.Add(this.tbPhoneList);
+ this.Name = "dlgPhoneList";
+ this.Text = "Phone List";
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private DevComponents.DotNetBar.Controls.TextBoxX tbPhoneList;
+ private DevComponents.DotNetBar.ButtonX btnOk;
+ private DevComponents.DotNetBar.ButtonX btnCancel;
+ }
+}
\ No newline at end of file
diff --git a/PROMS/VEPROMS User Interface/dlgPhoneList.cs b/PROMS/VEPROMS User Interface/dlgPhoneList.cs
new file mode 100644
index 00000000..8ea9b42d
--- /dev/null
+++ b/PROMS/VEPROMS User Interface/dlgPhoneList.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Text;
+using System.Windows.Forms;
+using VEPROMS.CSLA.Library;
+
+namespace VEPROMS
+{
+ public partial class dlgPhoneList : Form
+ {
+ private DocVersionConfig _docVersionConfig;
+ private string _origPhoneList;
+ public dlgPhoneList(DocVersionConfig dvc)
+ {
+ _docVersionConfig = dvc;
+ InitializeComponent();
+ _origPhoneList = _docVersionConfig.Print_PhoneList;
+ tbPhoneList.Text = _origPhoneList;
+ }
+
+ private void btnOk_Click(object sender, EventArgs e)
+ {
+ if (_origPhoneList != tbPhoneList.Text)
+ _docVersionConfig.Print_PhoneList = tbPhoneList.Text;
+ }
+ }
+}
\ No newline at end of file
diff --git a/PROMS/VEPROMS User Interface/dlgPhoneList.resx b/PROMS/VEPROMS User Interface/dlgPhoneList.resx
new file mode 100644
index 00000000..19dc0dd8
--- /dev/null
+++ b/PROMS/VEPROMS User Interface/dlgPhoneList.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs
index d6d8105e..d67bc38a 100644
--- a/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs
+++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.Designer.cs
@@ -106,14 +106,17 @@ namespace VEPROMS
this.tcpGeneral = new DevComponents.DotNetBar.TabControlPanel();
this.tiGeneral = new DevComponents.DotNetBar.TabItem(this.components);
this.tcpFormatSettings = new DevComponents.DotNetBar.TabControlPanel();
+ this.btnPhoneList = new DevComponents.DotNetBar.ButtonX();
this.ppLblUnitNum = new System.Windows.Forms.Label();
this.tiFmtSettings = new DevComponents.DotNetBar.TabItem(this.components);
- this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
- this.ppGrdLibDocList = new DevComponents.DotNetBar.Controls.DataGridViewX();
- this.documentEntryCountDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.libTitleDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.documentInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components);
- this.tiLibDocs = new DevComponents.DotNetBar.TabItem(this.components);
+ this.tcpOutputSettings = new DevComponents.DotNetBar.TabControlPanel();
+ this.label30 = new System.Windows.Forms.Label();
+ this.label29 = new System.Windows.Forms.Label();
+ this.ppChbxAddBlankPgs = new System.Windows.Forms.CheckBox();
+ this.ppChbxAlwaysViewPDF = new System.Windows.Forms.CheckBox();
+ this.ppChbxAlwaysOvrWrtPDF = new System.Windows.Forms.CheckBox();
+ this.ppGrpbxPrnAdj = new DevComponents.DotNetBar.Controls.GroupPanel();
+ this.tiOutputSettings = new DevComponents.DotNetBar.TabItem(this.components);
this.tcpApplicability = new DevComponents.DotNetBar.TabControlPanel();
this.label28 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
@@ -144,14 +147,12 @@ namespace VEPROMS
this.bsApples = new System.Windows.Forms.BindingSource(this.components);
this.label5 = new System.Windows.Forms.Label();
this.tiApplicability = new DevComponents.DotNetBar.TabItem(this.components);
- this.tcpOutputSettings = new DevComponents.DotNetBar.TabControlPanel();
- this.label30 = new System.Windows.Forms.Label();
- this.label29 = new System.Windows.Forms.Label();
- this.ppChbxAddBlankPgs = new System.Windows.Forms.CheckBox();
- this.ppChbxAlwaysViewPDF = new System.Windows.Forms.CheckBox();
- this.ppChbxAlwaysOvrWrtPDF = new System.Windows.Forms.CheckBox();
- this.ppGrpbxPrnAdj = new DevComponents.DotNetBar.Controls.GroupPanel();
- this.tiOutputSettings = new DevComponents.DotNetBar.TabItem(this.components);
+ this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
+ this.ppGrdLibDocList = new DevComponents.DotNetBar.Controls.DataGridViewX();
+ this.documentEntryCountDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.libTitleDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+ this.documentInfoListBindingSource = new System.Windows.Forms.BindingSource(this.components);
+ this.tiLibDocs = new DevComponents.DotNetBar.TabItem(this.components);
this.tcpRefereceObjects = new DevComponents.DotNetBar.TabControlPanel();
this.tbRoDb = new System.Windows.Forms.TextBox();
this.ppBtnRoDbBrowse = new System.Windows.Forms.Button();
@@ -181,16 +182,16 @@ namespace VEPROMS
this.tcVersions.SuspendLayout();
this.tcpGeneral.SuspendLayout();
this.tcpFormatSettings.SuspendLayout();
- this.tabControlPanel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.documentInfoListBindingSource)).BeginInit();
+ this.tcpOutputSettings.SuspendLayout();
+ this.ppGrpbxPrnAdj.SuspendLayout();
this.tcpApplicability.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bsMiniApple)).BeginInit();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.bsApples)).BeginInit();
- this.tcpOutputSettings.SuspendLayout();
- this.ppGrpbxPrnAdj.SuspendLayout();
+ this.tabControlPanel5.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.documentInfoListBindingSource)).BeginInit();
this.tcpRefereceObjects.SuspendLayout();
this.ppGpbxUpROvals.SuspendLayout();
this.panVerBtns.SuspendLayout();
@@ -202,10 +203,10 @@ namespace VEPROMS
//
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(594, 352);
- this.ppBtnCancel.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnCancel.Location = new System.Drawing.Point(792, 433);
+ this.ppBtnCancel.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnCancel.Name = "ppBtnCancel";
- this.ppBtnCancel.Size = new System.Drawing.Size(56, 21);
+ this.ppBtnCancel.Size = new System.Drawing.Size(75, 26);
this.ppBtnCancel.TabIndex = 91;
this.ppBtnCancel.Text = "Cancel";
this.ppBtnCancel.UseVisualStyleBackColor = true;
@@ -214,10 +215,10 @@ namespace VEPROMS
// 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(522, 352);
- this.ppBtnOK.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnOK.Location = new System.Drawing.Point(696, 433);
+ this.ppBtnOK.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnOK.Name = "ppBtnOK";
- this.ppBtnOK.Size = new System.Drawing.Size(56, 21);
+ this.ppBtnOK.Size = new System.Drawing.Size(75, 26);
this.ppBtnOK.TabIndex = 90;
this.ppBtnOK.Text = "OK";
this.ppBtnOK.UseVisualStyleBackColor = true;
@@ -226,10 +227,10 @@ namespace VEPROMS
// ppBtnDefaultChgBar
//
this.ppBtnDefaultChgBar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.ppBtnDefaultChgBar.Location = new System.Drawing.Point(302, 82);
- this.ppBtnDefaultChgBar.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnDefaultChgBar.Location = new System.Drawing.Point(403, 101);
+ this.ppBtnDefaultChgBar.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefaultChgBar.Name = "ppBtnDefaultChgBar";
- this.ppBtnDefaultChgBar.Size = new System.Drawing.Size(44, 20);
+ this.ppBtnDefaultChgBar.Size = new System.Drawing.Size(59, 25);
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)));
@@ -246,10 +247,10 @@ namespace VEPROMS
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(89, 82);
- this.ppCmbxChangeBarType.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCmbxChangeBarType.Location = new System.Drawing.Point(119, 101);
+ this.ppCmbxChangeBarType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCmbxChangeBarType.Name = "ppCmbxChangeBarType";
- this.ppCmbxChangeBarType.Size = new System.Drawing.Size(210, 21);
+ this.ppCmbxChangeBarType.Size = new System.Drawing.Size(279, 23);
this.ppCmbxChangeBarType.TabIndex = 42;
this.ppCmbxChangeBarType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ppCmbxChangeBarType.WatermarkText = "select change bar setting";
@@ -262,10 +263,10 @@ namespace VEPROMS
// ppBtnDefaultFmt
//
this.ppBtnDefaultFmt.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.ppBtnDefaultFmt.Location = new System.Drawing.Point(445, 28);
- this.ppBtnDefaultFmt.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnDefaultFmt.Location = new System.Drawing.Point(593, 34);
+ this.ppBtnDefaultFmt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefaultFmt.Name = "ppBtnDefaultFmt";
- this.ppBtnDefaultFmt.Size = new System.Drawing.Size(38, 19);
+ this.ppBtnDefaultFmt.Size = new System.Drawing.Size(51, 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));
@@ -280,10 +281,10 @@ namespace VEPROMS
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, 28);
- this.ppCmbxFormat.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCmbxFormat.Location = new System.Drawing.Point(19, 34);
+ this.ppCmbxFormat.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCmbxFormat.Name = "ppCmbxFormat";
- this.ppCmbxFormat.Size = new System.Drawing.Size(422, 21);
+ 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 = 40;
this.ppCmbxFormat.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
@@ -296,10 +297,9 @@ namespace VEPROMS
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(88, 103);
- this.ppLblChangeBarTypeDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblChangeBarTypeDefault.Location = new System.Drawing.Point(117, 127);
this.ppLblChangeBarTypeDefault.Name = "ppLblChangeBarTypeDefault";
- this.ppLblChangeBarTypeDefault.Size = new System.Drawing.Size(79, 13);
+ 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;
@@ -311,10 +311,9 @@ namespace VEPROMS
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, 50);
- this.ppLblFormatDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblFormatDefault.Location = new System.Drawing.Point(15, 62);
this.ppLblFormatDefault.Name = "ppLblFormatDefault";
- this.ppLblFormatDefault.Size = new System.Drawing.Size(45, 13);
+ 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;
@@ -323,10 +322,10 @@ namespace VEPROMS
// ppBtnDefCbTxtTyp
//
this.ppBtnDefCbTxtTyp.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.ppBtnDefCbTxtTyp.Location = new System.Drawing.Point(216, 15);
- this.ppBtnDefCbTxtTyp.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnDefCbTxtTyp.Location = new System.Drawing.Point(288, 18);
+ this.ppBtnDefCbTxtTyp.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefCbTxtTyp.Name = "ppBtnDefCbTxtTyp";
- this.ppBtnDefCbTxtTyp.Size = new System.Drawing.Size(44, 20);
+ this.ppBtnDefCbTxtTyp.Size = new System.Drawing.Size(59, 25);
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 = 45;
this.ppBtnDefCbTxtTyp.Text = "Default";
@@ -337,10 +336,10 @@ namespace VEPROMS
// ppBtnDefaultCbPos
//
this.ppBtnDefaultCbPos.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.ppBtnDefaultCbPos.Location = new System.Drawing.Point(210, 66);
- this.ppBtnDefaultCbPos.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnDefaultCbPos.Location = new System.Drawing.Point(280, 81);
+ this.ppBtnDefaultCbPos.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefaultCbPos.Name = "ppBtnDefaultCbPos";
- this.ppBtnDefaultCbPos.Size = new System.Drawing.Size(44, 20);
+ this.ppBtnDefaultCbPos.Size = new System.Drawing.Size(59, 25);
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 = 51;
this.ppBtnDefaultCbPos.Text = "Default";
@@ -355,10 +354,10 @@ namespace VEPROMS
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(72, 16);
- this.ppCmbxChgBarTxtType.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCmbxChgBarTxtType.Location = new System.Drawing.Point(96, 20);
+ this.ppCmbxChgBarTxtType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCmbxChgBarTxtType.Name = "ppCmbxChgBarTxtType";
- this.ppCmbxChgBarTxtType.Size = new System.Drawing.Size(140, 21);
+ this.ppCmbxChgBarTxtType.Size = new System.Drawing.Size(185, 23);
this.ppCmbxChgBarTxtType.TabIndex = 44;
this.ppCmbxChgBarTxtType.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ppCmbxChgBarTxtType.WatermarkText = "select change bar text type";
@@ -371,10 +370,10 @@ namespace VEPROMS
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(72, 66);
- this.ppCmbxChgBarPos.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCmbxChgBarPos.Location = new System.Drawing.Point(96, 81);
+ this.ppCmbxChgBarPos.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCmbxChgBarPos.Name = "ppCmbxChgBarPos";
- this.ppCmbxChgBarPos.Size = new System.Drawing.Size(135, 21);
+ this.ppCmbxChgBarPos.Size = new System.Drawing.Size(179, 23);
this.ppCmbxChgBarPos.TabIndex = 50;
this.ppCmbxChgBarPos.Visible = false;
this.ppCmbxChgBarPos.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
@@ -386,10 +385,9 @@ namespace VEPROMS
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(70, 37);
- this.ppLblChgBarTxtTypeDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblChgBarTxtTypeDefault.Location = new System.Drawing.Point(93, 46);
this.ppLblChgBarTxtTypeDefault.Name = "ppLblChgBarTxtTypeDefault";
- this.ppLblChgBarTxtTypeDefault.Size = new System.Drawing.Size(79, 13);
+ 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;
@@ -400,10 +398,9 @@ namespace VEPROMS
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(74, 86);
- this.ppLblChgBarPosDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblChgBarPosDefault.Location = new System.Drawing.Point(99, 106);
this.ppLblChgBarPosDefault.Name = "ppLblChgBarPosDefault";
- this.ppLblChgBarPosDefault.Size = new System.Drawing.Size(79, 13);
+ 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;
@@ -413,10 +410,10 @@ namespace VEPROMS
// 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);
+ this.ppBtnDefCbTxt2.Location = new System.Drawing.Point(159, 58);
+ this.ppBtnDefCbTxt2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefCbTxt2.Name = "ppBtnDefCbTxt2";
- this.ppBtnDefCbTxt2.Size = new System.Drawing.Size(44, 20);
+ this.ppBtnDefCbTxt2.Size = new System.Drawing.Size(59, 25);
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 = 49;
this.ppBtnDefCbTxt2.Text = "Default";
@@ -427,10 +424,10 @@ namespace VEPROMS
// 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);
+ this.ppBtnDefCbTxt1.Location = new System.Drawing.Point(159, 7);
+ this.ppBtnDefCbTxt1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefCbTxt1.Name = "ppBtnDefCbTxt1";
- this.ppBtnDefCbTxt1.Size = new System.Drawing.Size(44, 20);
+ this.ppBtnDefCbTxt1.Size = new System.Drawing.Size(59, 25);
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 = 47;
this.ppBtnDefCbTxt1.Text = "Default";
@@ -443,10 +440,9 @@ namespace VEPROMS
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.Location = new System.Drawing.Point(88, 81);
this.ppLblChgBarUserMsgTwoDefault.Name = "ppLblChgBarUserMsgTwoDefault";
- this.ppLblChgBarUserMsgTwoDefault.Size = new System.Drawing.Size(45, 13);
+ 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;
@@ -457,10 +453,9 @@ namespace VEPROMS
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.Location = new System.Drawing.Point(88, 34);
this.ppLblChgBarUserMsgOneDefault.Name = "ppLblChgBarUserMsgOneDefault";
- this.ppLblChgBarUserMsgOneDefault.Size = new System.Drawing.Size(45, 13);
+ 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;
@@ -469,21 +464,20 @@ namespace VEPROMS
// 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.Location = new System.Drawing.Point(21, 11);
this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(48, 13);
+ 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(68, 6);
- this.ppTxbxChangeBarUserMsgOne.Margin = new System.Windows.Forms.Padding(2);
+ this.ppTxbxChangeBarUserMsgOne.Location = new System.Drawing.Point(91, 7);
+ this.ppTxbxChangeBarUserMsgOne.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppTxbxChangeBarUserMsgOne.Multiline = false;
this.ppTxbxChangeBarUserMsgOne.Name = "ppTxbxChangeBarUserMsgOne";
- this.ppTxbxChangeBarUserMsgOne.Size = new System.Drawing.Size(44, 20);
+ this.ppTxbxChangeBarUserMsgOne.Size = new System.Drawing.Size(57, 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 = 46;
this.ppTxbxChangeBarUserMsgOne.Text = "";
@@ -492,21 +486,20 @@ namespace VEPROMS
// 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.Location = new System.Drawing.Point(21, 62);
this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(47, 13);
+ 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(68, 47);
- this.ppTxbxChangeBarUserMsgTwo.Margin = new System.Windows.Forms.Padding(2);
+ this.ppTxbxChangeBarUserMsgTwo.Location = new System.Drawing.Point(91, 58);
+ this.ppTxbxChangeBarUserMsgTwo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppTxbxChangeBarUserMsgTwo.Multiline = false;
this.ppTxbxChangeBarUserMsgTwo.Name = "ppTxbxChangeBarUserMsgTwo";
- this.ppTxbxChangeBarUserMsgTwo.Size = new System.Drawing.Size(44, 20);
+ this.ppTxbxChangeBarUserMsgTwo.Size = new System.Drawing.Size(57, 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 = 48;
this.ppTxbxChangeBarUserMsgTwo.Text = "";
@@ -515,20 +508,18 @@ namespace VEPROMS
// label13
//
this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(15, 18);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label13.Location = new System.Drawing.Point(20, 22);
this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(55, 13);
+ 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(25, 67);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label12.Location = new System.Drawing.Point(33, 82);
this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(44, 13);
+ this.label12.Size = new System.Drawing.Size(58, 17);
this.label12.TabIndex = 9;
this.label12.Text = "Position";
this.label12.Visible = false;
@@ -537,10 +528,9 @@ namespace VEPROMS
//
this.label10.AutoSize = true;
this.label10.BackColor = System.Drawing.Color.Transparent;
- this.label10.Location = new System.Drawing.Point(11, 11);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label10.Location = new System.Drawing.Point(15, 14);
this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(39, 13);
+ this.label10.Size = new System.Drawing.Size(52, 17);
this.label10.TabIndex = 19;
this.label10.Text = "Format";
//
@@ -548,10 +538,9 @@ namespace VEPROMS
//
this.label11.AutoSize = true;
this.label11.BackColor = System.Drawing.Color.Transparent;
- this.label11.Location = new System.Drawing.Point(17, 84);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label11.Location = new System.Drawing.Point(23, 103);
this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(68, 13);
+ this.label11.Size = new System.Drawing.Size(90, 17);
this.label11.TabIndex = 3;
this.label11.Text = "Change Bars";
//
@@ -561,10 +550,10 @@ namespace VEPROMS
//
// ppBtnResetRoVals
//
- this.ppBtnResetRoVals.Location = new System.Drawing.Point(24, 73);
- this.ppBtnResetRoVals.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnResetRoVals.Location = new System.Drawing.Point(32, 90);
+ this.ppBtnResetRoVals.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnResetRoVals.Name = "ppBtnResetRoVals";
- this.ppBtnResetRoVals.Size = new System.Drawing.Size(57, 63);
+ this.ppBtnResetRoVals.Size = new System.Drawing.Size(76, 78);
this.ppBtnResetRoVals.TabIndex = 20;
this.ppBtnResetRoVals.Text = "Reset to Previous Values";
this.ppBtnResetRoVals.UseVisualStyleBackColor = true;
@@ -573,10 +562,10 @@ namespace VEPROMS
//
// ppBtnUpRoVals
//
- this.ppBtnUpRoVals.Location = new System.Drawing.Point(25, 11);
- this.ppBtnUpRoVals.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnUpRoVals.Location = new System.Drawing.Point(33, 14);
+ this.ppBtnUpRoVals.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnUpRoVals.Name = "ppBtnUpRoVals";
- this.ppBtnUpRoVals.Size = new System.Drawing.Size(57, 59);
+ this.ppBtnUpRoVals.Size = new System.Drawing.Size(76, 73);
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 = 23;
@@ -588,10 +577,9 @@ namespace VEPROMS
//
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.Location = new System.Drawing.Point(12, 21);
this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(72, 13);
+ this.label6.Size = new System.Drawing.Size(94, 17);
this.label6.TabIndex = 12;
this.label6.Text = "RO Database";
//
@@ -601,10 +589,10 @@ namespace VEPROMS
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(175, 236);
- this.ppCmbxProcSetType.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCmbxProcSetType.Location = new System.Drawing.Point(233, 290);
+ this.ppCmbxProcSetType.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCmbxProcSetType.Name = "ppCmbxProcSetType";
- this.ppCmbxProcSetType.Size = new System.Drawing.Size(133, 21);
+ this.ppCmbxProcSetType.Size = new System.Drawing.Size(176, 23);
this.ppCmbxProcSetType.TabIndex = 2;
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";
@@ -613,21 +601,20 @@ namespace VEPROMS
//
this.label9.AutoSize = true;
this.label9.BackColor = System.Drawing.Color.Transparent;
- this.label9.Location = new System.Drawing.Point(24, 238);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label9.Location = new System.Drawing.Point(32, 293);
this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(145, 13);
+ 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(56, 15);
- this.ppRTxtName.Margin = new System.Windows.Forms.Padding(2);
+ this.ppRTxtName.Location = new System.Drawing.Point(75, 18);
+ this.ppRTxtName.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppRTxtName.Multiline = false;
this.ppRTxtName.Name = "ppRTxtName";
- this.ppRTxtName.Size = new System.Drawing.Size(210, 19);
+ this.ppRTxtName.Size = new System.Drawing.Size(279, 22);
this.ppRTxtName.TabIndex = 0;
this.ppRTxtName.Text = "";
this.ppRTxtName.Leave += new System.EventHandler(this.ppRTxtName_Leave);
@@ -636,31 +623,30 @@ namespace VEPROMS
//
this.lblProcSetRev.AutoSize = true;
this.lblProcSetRev.BackColor = System.Drawing.Color.Transparent;
- this.lblProcSetRev.Location = new System.Drawing.Point(24, 204);
- this.lblProcSetRev.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.lblProcSetRev.Location = new System.Drawing.Point(32, 251);
this.lblProcSetRev.Name = "lblProcSetRev";
- this.lblProcSetRev.Size = new System.Drawing.Size(119, 13);
+ this.lblProcSetRev.Size = new System.Drawing.Size(157, 17);
this.lblProcSetRev.TabIndex = 66;
this.lblProcSetRev.Text = "Procedure Set Revision";
//
// ppRTxtProcSetRev
//
this.ppRTxtProcSetRev.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "ProcedureSetRev", true));
- this.ppRTxtProcSetRev.Location = new System.Drawing.Point(175, 201);
- this.ppRTxtProcSetRev.Margin = new System.Windows.Forms.Padding(2);
+ this.ppRTxtProcSetRev.Location = new System.Drawing.Point(233, 247);
+ this.ppRTxtProcSetRev.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppRTxtProcSetRev.Multiline = false;
this.ppRTxtProcSetRev.Name = "ppRTxtProcSetRev";
- this.ppRTxtProcSetRev.Size = new System.Drawing.Size(210, 19);
+ this.ppRTxtProcSetRev.Size = new System.Drawing.Size(279, 22);
this.ppRTxtProcSetRev.TabIndex = 0;
this.ppRTxtProcSetRev.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);
+ this.ppRTxtTitle.Location = new System.Drawing.Point(75, 70);
+ this.ppRTxtTitle.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppRTxtTitle.Name = "ppRTxtTitle";
- this.ppRTxtTitle.Size = new System.Drawing.Size(407, 50);
+ this.ppRTxtTitle.Size = new System.Drawing.Size(541, 61);
this.ppRTxtTitle.TabIndex = 1;
this.ppRTxtTitle.Text = "";
this.ppRTxtTitle.Visible = false;
@@ -670,10 +656,10 @@ namespace VEPROMS
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);
+ this.ppDTPicker.Location = new System.Drawing.Point(107, 151);
+ this.ppDTPicker.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppDTPicker.Name = "ppDTPicker";
- this.ppDTPicker.Size = new System.Drawing.Size(130, 20);
+ this.ppDTPicker.Size = new System.Drawing.Size(172, 22);
this.ppDTPicker.TabIndex = 12;
this.ppDTPicker.TabStop = false;
this.ppDTPicker.Visible = false;
@@ -682,10 +668,9 @@ namespace VEPROMS
//
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.Location = new System.Drawing.Point(35, 73);
this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(27, 13);
+ this.label1.Size = new System.Drawing.Size(35, 17);
this.label1.TabIndex = 3;
this.label1.Text = "Title";
this.label1.Visible = false;
@@ -694,20 +679,19 @@ namespace VEPROMS
//
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.Location = new System.Drawing.Point(23, 22);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(35, 13);
+ 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(71, 169);
- this.ppTxtBxUserID.Margin = new System.Windows.Forms.Padding(2);
+ this.ppTxtBxUserID.Location = new System.Drawing.Point(95, 208);
+ this.ppTxtBxUserID.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppTxtBxUserID.Name = "ppTxtBxUserID";
- this.ppTxtBxUserID.Size = new System.Drawing.Size(116, 20);
+ this.ppTxtBxUserID.Size = new System.Drawing.Size(153, 22);
this.ppTxtBxUserID.TabIndex = 10;
this.ppTxtBxUserID.TabStop = false;
this.ppTxtBxUserID.Visible = false;
@@ -716,10 +700,9 @@ namespace VEPROMS
//
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.Location = new System.Drawing.Point(35, 210);
this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(43, 13);
+ this.label3.Size = new System.Drawing.Size(55, 17);
this.label3.TabIndex = 5;
this.label3.Text = "User ID";
this.label3.Visible = false;
@@ -728,10 +711,9 @@ namespace VEPROMS
//
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.Location = new System.Drawing.Point(27, 154);
this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(58, 13);
+ this.label4.Size = new System.Drawing.Size(73, 17);
this.label4.TabIndex = 6;
this.label4.Text = "Date/Time";
this.label4.Visible = false;
@@ -740,19 +722,19 @@ namespace VEPROMS
//
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(465, 19);
- this.ppBtnPDFLoc.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnPDFLoc.Location = new System.Drawing.Point(620, 23);
+ this.ppBtnPDFLoc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnPDFLoc.Name = "ppBtnPDFLoc";
- this.ppBtnPDFLoc.Size = new System.Drawing.Size(16, 19);
+ this.ppBtnPDFLoc.Size = new System.Drawing.Size(21, 23);
this.ppBtnPDFLoc.TabIndex = 31;
this.ppBtnPDFLoc.Click += new System.EventHandler(this.ppBtnPDFLoc_Click);
//
// ppNumUpDwnOvrdPrnPenWidth
//
- this.ppNumUpDwnOvrdPrnPenWidth.Location = new System.Drawing.Point(178, 14);
- this.ppNumUpDwnOvrdPrnPenWidth.Margin = new System.Windows.Forms.Padding(2);
+ this.ppNumUpDwnOvrdPrnPenWidth.Location = new System.Drawing.Point(237, 17);
+ this.ppNumUpDwnOvrdPrnPenWidth.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppNumUpDwnOvrdPrnPenWidth.Name = "ppNumUpDwnOvrdPrnPenWidth";
- this.ppNumUpDwnOvrdPrnPenWidth.Size = new System.Drawing.Size(36, 20);
+ this.ppNumUpDwnOvrdPrnPenWidth.Size = new System.Drawing.Size(48, 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;
//
@@ -760,10 +742,9 @@ namespace VEPROMS
//
this.label19.AutoSize = true;
this.label19.BackColor = System.Drawing.Color.Transparent;
- this.label19.Location = new System.Drawing.Point(5, 16);
- this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label19.Location = new System.Drawing.Point(7, 20);
this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(165, 13);
+ this.label19.Size = new System.Drawing.Size(222, 17);
this.label19.TabIndex = 0;
this.label19.Text = "Override Normal Pen Width (dots)";
//
@@ -771,28 +752,27 @@ namespace VEPROMS
//
this.label20.AutoSize = true;
this.label20.BackColor = System.Drawing.Color.Transparent;
- this.label20.Location = new System.Drawing.Point(6, 47);
- this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label20.Location = new System.Drawing.Point(8, 58);
this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(153, 13);
+ 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(178, 46);
- this.ppNumUpDwnOverdPrnPenBoldWidth.Margin = new System.Windows.Forms.Padding(2);
+ this.ppNumUpDwnOverdPrnPenBoldWidth.Location = new System.Drawing.Point(237, 57);
+ this.ppNumUpDwnOverdPrnPenBoldWidth.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppNumUpDwnOverdPrnPenBoldWidth.Name = "ppNumUpDwnOverdPrnPenBoldWidth";
- this.ppNumUpDwnOverdPrnPenBoldWidth.Size = new System.Drawing.Size(36, 20);
+ this.ppNumUpDwnOverdPrnPenBoldWidth.Size = new System.Drawing.Size(48, 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(422, 14);
- this.ppNumUpDwnOvrdPrnPenULineWidth.Margin = new System.Windows.Forms.Padding(2);
+ this.ppNumUpDwnOvrdPrnPenULineWidth.Location = new System.Drawing.Point(563, 17);
+ this.ppNumUpDwnOvrdPrnPenULineWidth.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppNumUpDwnOvrdPrnPenULineWidth.Name = "ppNumUpDwnOvrdPrnPenULineWidth";
- this.ppNumUpDwnOvrdPrnPenULineWidth.Size = new System.Drawing.Size(36, 20);
+ this.ppNumUpDwnOvrdPrnPenULineWidth.Size = new System.Drawing.Size(48, 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;
//
@@ -800,24 +780,23 @@ namespace VEPROMS
//
this.label21.AutoSize = true;
this.label21.BackColor = System.Drawing.Color.Transparent;
- this.label21.Location = new System.Drawing.Point(239, 16);
- this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label21.Location = new System.Drawing.Point(319, 20);
this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(176, 13);
+ 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(422, 46);
- this.ppNumUpDwnAdjPrnStartPos.Margin = new System.Windows.Forms.Padding(2);
+ this.ppNumUpDwnAdjPrnStartPos.Location = new System.Drawing.Point(563, 57);
+ this.ppNumUpDwnAdjPrnStartPos.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppNumUpDwnAdjPrnStartPos.Maximum = new decimal(new int[] {
500,
0,
0,
0});
this.ppNumUpDwnAdjPrnStartPos.Name = "ppNumUpDwnAdjPrnStartPos";
- this.ppNumUpDwnAdjPrnStartPos.Size = new System.Drawing.Size(36, 20);
+ this.ppNumUpDwnAdjPrnStartPos.Size = new System.Drawing.Size(48, 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;
@@ -826,20 +805,19 @@ namespace VEPROMS
//
this.label22.AutoSize = true;
this.label22.BackColor = System.Drawing.Color.Transparent;
- this.label22.Location = new System.Drawing.Point(228, 48);
- this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label22.Location = new System.Drawing.Point(304, 59);
this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(187, 13);
+ this.label22.Size = new System.Drawing.Size(252, 17);
this.label22.TabIndex = 6;
this.label22.Text = "Adjust Starting Position on Page (dots)";
//
// ppBtnDeftDisAutoDuplx
//
this.ppBtnDeftDisAutoDuplx.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.ppBtnDeftDisAutoDuplx.Location = new System.Drawing.Point(433, 60);
- this.ppBtnDeftDisAutoDuplx.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnDeftDisAutoDuplx.Location = new System.Drawing.Point(577, 74);
+ this.ppBtnDeftDisAutoDuplx.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDeftDisAutoDuplx.Name = "ppBtnDeftDisAutoDuplx";
- this.ppBtnDeftDisAutoDuplx.Size = new System.Drawing.Size(44, 20);
+ this.ppBtnDeftDisAutoDuplx.Size = new System.Drawing.Size(59, 25);
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 = 35;
this.ppBtnDeftDisAutoDuplx.Text = "Default";
@@ -849,10 +827,10 @@ namespace VEPROMS
// ppBtnDefWatermark
//
this.ppBtnDefWatermark.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
- this.ppBtnDefWatermark.Location = new System.Drawing.Point(203, 58);
- this.ppBtnDefWatermark.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnDefWatermark.Location = new System.Drawing.Point(271, 71);
+ this.ppBtnDefWatermark.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnDefWatermark.Name = "ppBtnDefWatermark";
- this.ppBtnDefWatermark.Size = new System.Drawing.Size(40, 20);
+ this.ppBtnDefWatermark.Size = new System.Drawing.Size(53, 25);
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)));
@@ -869,10 +847,10 @@ namespace VEPROMS
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(74, 58);
- this.ppCmbxWatermark.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCmbxWatermark.Location = new System.Drawing.Point(99, 71);
+ this.ppCmbxWatermark.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCmbxWatermark.Name = "ppCmbxWatermark";
- this.ppCmbxWatermark.Size = new System.Drawing.Size(126, 21);
+ this.ppCmbxWatermark.Size = new System.Drawing.Size(167, 23);
this.ppCmbxWatermark.TabIndex = 32;
this.ppCmbxWatermark.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ppCmbxWatermark.WatermarkText = "select watermark option";
@@ -884,10 +862,9 @@ namespace VEPROMS
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(69, 80);
- this.ppLblWatermarkDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblWatermarkDefault.Location = new System.Drawing.Point(92, 98);
this.ppLblWatermarkDefault.Name = "ppLblWatermarkDefault";
- this.ppLblWatermarkDefault.Size = new System.Drawing.Size(45, 13);
+ 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;
@@ -896,20 +873,19 @@ namespace VEPROMS
// ppTxtBxPDFLoc
//
this.ppTxtBxPDFLoc.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_PDFLocation", true));
- this.ppTxtBxPDFLoc.Location = new System.Drawing.Point(83, 19);
- this.ppTxtBxPDFLoc.Margin = new System.Windows.Forms.Padding(2);
+ this.ppTxtBxPDFLoc.Location = new System.Drawing.Point(111, 23);
+ this.ppTxtBxPDFLoc.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppTxtBxPDFLoc.Name = "ppTxtBxPDFLoc";
- this.ppTxtBxPDFLoc.Size = new System.Drawing.Size(379, 20);
+ this.ppTxtBxPDFLoc.Size = new System.Drawing.Size(504, 22);
this.ppTxtBxPDFLoc.TabIndex = 30;
//
// label18
//
this.label18.AutoSize = true;
this.label18.BackColor = System.Drawing.Color.Transparent;
- this.label18.Location = new System.Drawing.Point(4, 22);
- this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label18.Location = new System.Drawing.Point(5, 27);
this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(72, 13);
+ this.label18.Size = new System.Drawing.Size(93, 17);
this.label18.TabIndex = 54;
this.label18.Text = "PDF Location";
//
@@ -919,10 +895,9 @@ namespace VEPROMS
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(286, 79);
- this.ppLblAutoDuplexDefault.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblAutoDuplexDefault.Location = new System.Drawing.Point(381, 97);
this.ppLblAutoDuplexDefault.Name = "ppLblAutoDuplexDefault";
- this.ppLblAutoDuplexDefault.Size = new System.Drawing.Size(64, 13);
+ 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;
@@ -933,10 +908,10 @@ namespace VEPROMS
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(272, 60);
- this.ppChbxDisAutoDuplex.Margin = new System.Windows.Forms.Padding(2);
+ this.ppChbxDisAutoDuplex.Location = new System.Drawing.Point(363, 74);
+ this.ppChbxDisAutoDuplex.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppChbxDisAutoDuplex.Name = "ppChbxDisAutoDuplex";
- this.ppChbxDisAutoDuplex.Size = new System.Drawing.Size(161, 17);
+ 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 = 34;
@@ -948,10 +923,9 @@ namespace VEPROMS
//
this.label17.AutoSize = true;
this.label17.BackColor = System.Drawing.Color.Transparent;
- this.label17.Location = new System.Drawing.Point(9, 62);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.label17.Location = new System.Drawing.Point(12, 76);
this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(59, 13);
+ this.label17.Size = new System.Drawing.Size(77, 17);
this.label17.TabIndex = 27;
this.label17.Text = "Watermark";
//
@@ -966,10 +940,10 @@ namespace VEPROMS
//
//
this.ppCbShwDefSettings.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
- this.ppCbShwDefSettings.Location = new System.Drawing.Point(17, 389);
- this.ppCbShwDefSettings.Margin = new System.Windows.Forms.Padding(2);
+ this.ppCbShwDefSettings.Location = new System.Drawing.Point(23, 479);
+ this.ppCbShwDefSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppCbShwDefSettings.Name = "ppCbShwDefSettings";
- this.ppCbShwDefSettings.Size = new System.Drawing.Size(154, 20);
+ this.ppCbShwDefSettings.Size = new System.Drawing.Size(205, 25);
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 = 92;
@@ -990,10 +964,10 @@ namespace VEPROMS
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(14, 136);
- this.ppGpbxUserSpecCB.Margin = new System.Windows.Forms.Padding(2);
+ this.ppGpbxUserSpecCB.Location = new System.Drawing.Point(19, 167);
+ this.ppGpbxUserSpecCB.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppGpbxUserSpecCB.Name = "ppGpbxUserSpecCB";
- this.ppGpbxUserSpecCB.Size = new System.Drawing.Size(466, 130);
+ this.ppGpbxUserSpecCB.Size = new System.Drawing.Size(621, 160);
//
//
//
@@ -1038,10 +1012,10 @@ namespace VEPROMS
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);
+ this.ppGpbxUserSpecTxt.Location = new System.Drawing.Point(356, 7);
+ this.ppGpbxUserSpecTxt.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppGpbxUserSpecTxt.Name = "ppGpbxUserSpecTxt";
- this.ppGpbxUserSpecTxt.Size = new System.Drawing.Size(184, 103);
+ this.ppGpbxUserSpecTxt.Size = new System.Drawing.Size(245, 127);
//
//
//
@@ -1076,9 +1050,10 @@ namespace VEPROMS
// ppTxtBxPdfPre
//
this.ppTxtBxPdfPre.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_PDFFilePrefix", true));
- this.ppTxtBxPdfPre.Location = new System.Drawing.Point(90, 105);
+ this.ppTxtBxPdfPre.Location = new System.Drawing.Point(120, 129);
+ this.ppTxtBxPdfPre.Margin = new System.Windows.Forms.Padding(4);
this.ppTxtBxPdfPre.Name = "ppTxtBxPdfPre";
- this.ppTxtBxPdfPre.Size = new System.Drawing.Size(100, 20);
+ this.ppTxtBxPdfPre.Size = new System.Drawing.Size(132, 22);
this.superTooltip1.SetSuperTooltip(this.ppTxtBxPdfPre, new DevComponents.DotNetBar.SuperTooltipInfo("PDF File Prefix", "", "The text entered here will be appended to the beginning of PDF file name when a p" +
"rocedure is printed.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
this.ppTxtBxPdfPre.TabIndex = 68;
@@ -1086,9 +1061,10 @@ namespace VEPROMS
// ppTxtBxPDFSuf
//
this.ppTxtBxPDFSuf.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_PDFFileSuffix", true));
- this.ppTxtBxPDFSuf.Location = new System.Drawing.Point(301, 105);
+ this.ppTxtBxPDFSuf.Location = new System.Drawing.Point(401, 129);
+ this.ppTxtBxPDFSuf.Margin = new System.Windows.Forms.Padding(4);
this.ppTxtBxPDFSuf.Name = "ppTxtBxPDFSuf";
- this.ppTxtBxPDFSuf.Size = new System.Drawing.Size(100, 20);
+ this.ppTxtBxPDFSuf.Size = new System.Drawing.Size(132, 22);
this.superTooltip1.SetSuperTooltip(this.ppTxtBxPDFSuf, new DevComponents.DotNetBar.SuperTooltipInfo("PDF File Suffix", "", "The text entered here will be appended to the end of PDF file name when a procedu" +
"re is printed.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
this.ppTxtBxPDFSuf.TabIndex = 68;
@@ -1096,11 +1072,11 @@ namespace VEPROMS
// ppTxbxUnitNum
//
this.ppTxbxUnitNum.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.docVersionConfigBindingSource, "Print_UserCBMess1", true));
- this.ppTxbxUnitNum.Location = new System.Drawing.Point(256, 275);
- this.ppTxbxUnitNum.Margin = new System.Windows.Forms.Padding(2);
+ this.ppTxbxUnitNum.Location = new System.Drawing.Point(341, 338);
+ this.ppTxbxUnitNum.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppTxbxUnitNum.Multiline = false;
this.ppTxbxUnitNum.Name = "ppTxbxUnitNum";
- this.ppTxbxUnitNum.Size = new System.Drawing.Size(44, 20);
+ this.ppTxbxUnitNum.Size = new System.Drawing.Size(57, 24);
this.superTooltip1.SetSuperTooltip(this.ppTxbxUnitNum, new DevComponents.DotNetBar.SuperTooltipInfo("User Defined Message", "", "This message will appear on all change bars", null, null, DevComponents.DotNetBar.eTooltipColor.System));
this.ppTxbxUnitNum.TabIndex = 51;
this.ppTxbxUnitNum.Text = "";
@@ -1110,10 +1086,9 @@ namespace VEPROMS
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, 370);
- this.ppLblDefSettingsInfo.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblDefSettingsInfo.Location = new System.Drawing.Point(15, 455);
this.ppLblDefSettingsInfo.Name = "ppLblDefSettingsInfo";
- this.ppLblDefSettingsInfo.Size = new System.Drawing.Size(156, 13);
+ this.ppLblDefSettingsInfo.Size = new System.Drawing.Size(205, 17);
this.ppLblDefSettingsInfo.TabIndex = 25;
this.ppLblDefSettingsInfo.Text = "* Default values shown in italics";
//
@@ -1127,17 +1102,17 @@ namespace VEPROMS
this.tcVersions.BackColor = System.Drawing.Color.Transparent;
this.tcVersions.CanReorderTabs = true;
this.tcVersions.Controls.Add(this.tcpGeneral);
- this.tcVersions.Controls.Add(this.tcpApplicability);
- this.tcVersions.Controls.Add(this.tabControlPanel5);
this.tcVersions.Controls.Add(this.tcpFormatSettings);
this.tcVersions.Controls.Add(this.tcpOutputSettings);
+ this.tcVersions.Controls.Add(this.tcpApplicability);
+ this.tcVersions.Controls.Add(this.tabControlPanel5);
this.tcVersions.Controls.Add(this.tcpRefereceObjects);
- this.tcVersions.Location = new System.Drawing.Point(162, 2);
- this.tcVersions.Margin = new System.Windows.Forms.Padding(2);
+ this.tcVersions.Location = new System.Drawing.Point(216, 2);
+ this.tcVersions.Margin = new System.Windows.Forms.Padding(3, 2, 3, 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(488, 337);
+ this.tcVersions.Size = new System.Drawing.Size(651, 415);
this.tcVersions.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Dock;
this.tcVersions.TabIndex = 28;
this.tcVersions.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
@@ -1165,11 +1140,11 @@ namespace VEPROMS
this.tcpGeneral.Controls.Add(this.ppDTPicker);
this.tcpGeneral.Controls.Add(this.label2);
this.tcpGeneral.Controls.Add(this.label1);
- this.tcpGeneral.Location = new System.Drawing.Point(0, 22);
- this.tcpGeneral.Margin = new System.Windows.Forms.Padding(2);
+ this.tcpGeneral.Location = new System.Drawing.Point(0, 27);
+ this.tcpGeneral.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tcpGeneral.Name = "tcpGeneral";
this.tcpGeneral.Padding = new System.Windows.Forms.Padding(1);
- this.tcpGeneral.Size = new System.Drawing.Size(488, 315);
+ this.tcpGeneral.Size = new System.Drawing.Size(651, 388);
this.tcpGeneral.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
this.tcpGeneral.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
this.tcpGeneral.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
@@ -1188,6 +1163,7 @@ namespace VEPROMS
//
// tcpFormatSettings
//
+ this.tcpFormatSettings.Controls.Add(this.btnPhoneList);
this.tcpFormatSettings.Controls.Add(this.ppTxbxUnitNum);
this.tcpFormatSettings.Controls.Add(this.ppLblUnitNum);
this.tcpFormatSettings.Controls.Add(this.ppGpbxUserSpecCB);
@@ -1200,11 +1176,11 @@ namespace VEPROMS
this.tcpFormatSettings.Controls.Add(this.ppLblChangeBarTypeDefault);
this.tcpFormatSettings.Controls.Add(this.ppLblFormatDefault);
this.tcpFormatSettings.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tcpFormatSettings.Location = new System.Drawing.Point(0, 22);
- this.tcpFormatSettings.Margin = new System.Windows.Forms.Padding(2);
+ this.tcpFormatSettings.Location = new System.Drawing.Point(0, 24);
+ this.tcpFormatSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tcpFormatSettings.Name = "tcpFormatSettings";
this.tcpFormatSettings.Padding = new System.Windows.Forms.Padding(1);
- this.tcpFormatSettings.Size = new System.Drawing.Size(488, 315);
+ this.tcpFormatSettings.Size = new System.Drawing.Size(651, 391);
this.tcpFormatSettings.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
this.tcpFormatSettings.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
this.tcpFormatSettings.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
@@ -1216,14 +1192,25 @@ namespace VEPROMS
this.tcpFormatSettings.TabItem = this.tiFmtSettings;
this.tcpFormatSettings.Enter += new System.EventHandler(this.tabpage_Enter);
//
+ // btnPhoneList
+ //
+ this.btnPhoneList.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
+ this.btnPhoneList.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
+ this.btnPhoneList.Location = new System.Drawing.Point(432, 337);
+ this.btnPhoneList.Name = "btnPhoneList";
+ this.btnPhoneList.Size = new System.Drawing.Size(98, 24);
+ this.btnPhoneList.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
+ this.btnPhoneList.TabIndex = 52;
+ this.btnPhoneList.Text = "Phone List";
+ this.btnPhoneList.Click += new System.EventHandler(this.btnPhoneList_Click);
+ //
// ppLblUnitNum
//
this.ppLblUnitNum.AutoSize = true;
this.ppLblUnitNum.BackColor = System.Drawing.Color.Transparent;
- this.ppLblUnitNum.Location = new System.Drawing.Point(12, 281);
- this.ppLblUnitNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
+ this.ppLblUnitNum.Location = new System.Drawing.Point(16, 346);
this.ppLblUnitNum.Name = "ppLblUnitNum";
- this.ppLblUnitNum.Size = new System.Drawing.Size(235, 13);
+ this.ppLblUnitNum.Size = new System.Drawing.Size(315, 17);
this.ppLblUnitNum.TabIndex = 50;
this.ppLblUnitNum.Text = "Unit Number for Cover and Header page printing";
//
@@ -1233,408 +1220,6 @@ namespace VEPROMS
this.tiFmtSettings.Name = "tiFmtSettings";
this.tiFmtSettings.Text = "Format Settings";
//
- // 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);
- this.tabControlPanel5.Name = "tabControlPanel5";
- this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
- this.tabControlPanel5.Size = new System.Drawing.Size(488, 315);
- 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;
- this.tabControlPanel5.Enter += new System.EventHandler(this.tabpage_Enter);
- //
- // ppGrdLibDocList
- //
- this.ppGrdLibDocList.AllowUserToAddRows = false;
- this.ppGrdLibDocList.AutoGenerateColumns = false;
- this.ppGrdLibDocList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.ppGrdLibDocList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.documentEntryCountDataGridViewTextBoxColumn,
- this.libTitleDataGridViewTextBoxColumn});
- this.ppGrdLibDocList.DataSource = this.documentInfoListBindingSource;
- dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.ppGrdLibDocList.DefaultCellStyle = dataGridViewCellStyle2;
- this.ppGrdLibDocList.Dock = System.Windows.Forms.DockStyle.Fill;
- this.ppGrdLibDocList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
- this.ppGrdLibDocList.HighlightSelectedColumnHeaders = false;
- this.ppGrdLibDocList.Location = new System.Drawing.Point(1, 1);
- this.ppGrdLibDocList.Margin = new System.Windows.Forms.Padding(2);
- this.ppGrdLibDocList.Name = "ppGrdLibDocList";
- this.ppGrdLibDocList.RowHeadersVisible = false;
- this.ppGrdLibDocList.RowTemplate.Height = 24;
- this.ppGrdLibDocList.SelectAllSignVisible = false;
- this.ppGrdLibDocList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.ppGrdLibDocList.Size = new System.Drawing.Size(486, 313);
- this.ppGrdLibDocList.TabIndex = 1;
- //
- // documentEntryCountDataGridViewTextBoxColumn
- //
- this.documentEntryCountDataGridViewTextBoxColumn.DataPropertyName = "DocumentEntryCount";
- dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- this.documentEntryCountDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1;
- this.documentEntryCountDataGridViewTextBoxColumn.HeaderText = "Number of Usages";
- this.documentEntryCountDataGridViewTextBoxColumn.Name = "documentEntryCountDataGridViewTextBoxColumn";
- this.documentEntryCountDataGridViewTextBoxColumn.ReadOnly = true;
- this.documentEntryCountDataGridViewTextBoxColumn.Width = 95;
- //
- // libTitleDataGridViewTextBoxColumn
- //
- this.libTitleDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
- this.libTitleDataGridViewTextBoxColumn.DataPropertyName = "LibTitle";
- this.libTitleDataGridViewTextBoxColumn.HeaderText = "Library Document Title";
- this.libTitleDataGridViewTextBoxColumn.Name = "libTitleDataGridViewTextBoxColumn";
- this.libTitleDataGridViewTextBoxColumn.ReadOnly = true;
- //
- // documentInfoListBindingSource
- //
- this.documentInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.DocumentInfo);
- //
- // tiLibDocs
- //
- this.tiLibDocs.AttachedControl = this.tabControlPanel5;
- this.tiLibDocs.Name = "tiLibDocs";
- this.tiLibDocs.Text = "Library Documents";
- //
- // tcpApplicability
- //
- this.tcpApplicability.Controls.Add(this.label28);
- this.tcpApplicability.Controls.Add(this.label27);
- this.tcpApplicability.Controls.Add(this.label26);
- this.tcpApplicability.Controls.Add(this.label25);
- this.tcpApplicability.Controls.Add(this.label24);
- this.tcpApplicability.Controls.Add(this.label23);
- this.tcpApplicability.Controls.Add(this.label16);
- this.tcpApplicability.Controls.Add(this.label8);
- this.tcpApplicability.Controls.Add(this.label7);
- this.tcpApplicability.Controls.Add(this.textBox11);
- this.tcpApplicability.Controls.Add(this.textBox10);
- this.tcpApplicability.Controls.Add(this.textBox9);
- this.tcpApplicability.Controls.Add(this.textBox8);
- this.tcpApplicability.Controls.Add(this.textBox7);
- this.tcpApplicability.Controls.Add(this.textBox6);
- this.tcpApplicability.Controls.Add(this.textBox5);
- this.tcpApplicability.Controls.Add(this.textBox4);
- this.tcpApplicability.Controls.Add(this.textBox3);
- this.tcpApplicability.Controls.Add(this.textBox2);
- this.tcpApplicability.Controls.Add(this.textBox1);
- this.tcpApplicability.Controls.Add(this.panel1);
- this.tcpApplicability.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tcpApplicability.Location = new System.Drawing.Point(0, 22);
- this.tcpApplicability.Margin = new System.Windows.Forms.Padding(2);
- this.tcpApplicability.Name = "tcpApplicability";
- this.tcpApplicability.Padding = new System.Windows.Forms.Padding(1);
- this.tcpApplicability.Size = new System.Drawing.Size(488, 315);
- this.tcpApplicability.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
- this.tcpApplicability.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
- this.tcpApplicability.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
- this.tcpApplicability.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
- this.tcpApplicability.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
- | DevComponents.DotNetBar.eBorderSide.Bottom)));
- this.tcpApplicability.Style.GradientAngle = 90;
- this.tcpApplicability.TabIndex = 6;
- this.tcpApplicability.TabItem = this.tiApplicability;
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.BackColor = System.Drawing.Color.Transparent;
- this.label28.Location = new System.Drawing.Point(160, 161);
- this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(54, 13);
- this.label28.TabIndex = 21;
- this.label28.Text = "Set Name";
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.BackColor = System.Drawing.Color.Transparent;
- this.label27.Location = new System.Drawing.Point(177, 140);
- this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(37, 13);
- this.label27.TabIndex = 20;
- this.label27.Text = "Set ID";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.BackColor = System.Drawing.Color.Transparent;
- this.label26.Location = new System.Drawing.Point(118, 119);
- this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(96, 13);
- this.label26.TabIndex = 19;
- this.label26.Text = "Procedure Number";
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.BackColor = System.Drawing.Color.Transparent;
- this.label25.Location = new System.Drawing.Point(129, 85);
- this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(28, 13);
- this.label25.TabIndex = 18;
- this.label25.Text = "Text";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.BackColor = System.Drawing.Color.Transparent;
- this.label24.Location = new System.Drawing.Point(118, 64);
- this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(44, 13);
- this.label24.TabIndex = 17;
- this.label24.Text = "Number";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.BackColor = System.Drawing.Color.Transparent;
- this.label23.Location = new System.Drawing.Point(124, 44);
- this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(35, 13);
- this.label23.TabIndex = 16;
- this.label23.Text = "Name";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.BackColor = System.Drawing.Color.Transparent;
- this.label16.Location = new System.Drawing.Point(136, 23);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(18, 13);
- this.label16.TabIndex = 15;
- this.label16.Text = "ID";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.BackColor = System.Drawing.Color.Transparent;
- this.label8.Location = new System.Drawing.Point(330, 6);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(128, 13);
- this.label8.TabIndex = 14;
- this.label8.Text = "Other Unit/Train/Channel";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.BackColor = System.Drawing.Color.Transparent;
- this.label7.Location = new System.Drawing.Point(165, 6);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(99, 13);
- this.label7.TabIndex = 13;
- this.label7.Text = "Unit/Train/Channel";
- //
- // textBox11
- //
- this.textBox11.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherText", true));
- this.textBox11.Location = new System.Drawing.Point(330, 83);
- this.textBox11.Margin = new System.Windows.Forms.Padding(2);
- this.textBox11.Name = "textBox11";
- this.textBox11.Size = new System.Drawing.Size(151, 20);
- this.textBox11.TabIndex = 12;
- //
- // bsMiniApple
- //
- this.bsMiniApple.DataSource = typeof(VEPROMS.MiniConfig);
- //
- // textBox10
- //
- this.textBox10.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherNumber", true));
- this.textBox10.Location = new System.Drawing.Point(330, 62);
- this.textBox10.Margin = new System.Windows.Forms.Padding(2);
- this.textBox10.Name = "textBox10";
- this.textBox10.Size = new System.Drawing.Size(151, 20);
- this.textBox10.TabIndex = 11;
- //
- // textBox9
- //
- this.textBox9.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherName", true));
- this.textBox9.Location = new System.Drawing.Point(330, 41);
- this.textBox9.Margin = new System.Windows.Forms.Padding(2);
- this.textBox9.Name = "textBox9";
- this.textBox9.Size = new System.Drawing.Size(151, 20);
- this.textBox9.TabIndex = 10;
- //
- // textBox8
- //
- this.textBox8.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherID", true));
- this.textBox8.Location = new System.Drawing.Point(330, 20);
- this.textBox8.Margin = new System.Windows.Forms.Padding(2);
- this.textBox8.Name = "textBox8";
- this.textBox8.Size = new System.Drawing.Size(151, 20);
- this.textBox8.TabIndex = 9;
- //
- // textBox7
- //
- this.textBox7.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "SetName", true));
- this.textBox7.Location = new System.Drawing.Point(225, 158);
- this.textBox7.Margin = new System.Windows.Forms.Padding(2);
- this.textBox7.Name = "textBox7";
- this.textBox7.Size = new System.Drawing.Size(151, 20);
- this.textBox7.TabIndex = 8;
- //
- // textBox6
- //
- this.textBox6.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "SetID", true));
- this.textBox6.Location = new System.Drawing.Point(225, 137);
- this.textBox6.Margin = new System.Windows.Forms.Padding(2);
- this.textBox6.Name = "textBox6";
- this.textBox6.Size = new System.Drawing.Size(151, 20);
- this.textBox6.TabIndex = 7;
- //
- // textBox5
- //
- this.textBox5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "ProcedureNumber", true));
- this.textBox5.Location = new System.Drawing.Point(225, 116);
- this.textBox5.Margin = new System.Windows.Forms.Padding(2);
- this.textBox5.Name = "textBox5";
- this.textBox5.Size = new System.Drawing.Size(151, 20);
- this.textBox5.TabIndex = 6;
- //
- // textBox4
- //
- this.textBox4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "Text", true));
- this.textBox4.Location = new System.Drawing.Point(165, 83);
- this.textBox4.Margin = new System.Windows.Forms.Padding(2);
- this.textBox4.Name = "textBox4";
- this.textBox4.Size = new System.Drawing.Size(151, 20);
- this.textBox4.TabIndex = 5;
- //
- // textBox3
- //
- this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "Number", true));
- this.textBox3.Location = new System.Drawing.Point(165, 62);
- this.textBox3.Margin = new System.Windows.Forms.Padding(2);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(151, 20);
- this.textBox3.TabIndex = 4;
- //
- // textBox2
- //
- this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "Name", true));
- this.textBox2.Location = new System.Drawing.Point(165, 41);
- this.textBox2.Margin = new System.Windows.Forms.Padding(2);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(151, 20);
- this.textBox2.TabIndex = 3;
- //
- // textBox1
- //
- this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "ID", true));
- this.textBox1.Location = new System.Drawing.Point(165, 20);
- this.textBox1.Margin = new System.Windows.Forms.Padding(2);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(151, 20);
- this.textBox1.TabIndex = 2;
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.Transparent;
- this.panel1.Controls.Add(this.panel2);
- this.panel1.Controls.Add(this.lbApplicabilities);
- this.panel1.Controls.Add(this.label5);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel1.Location = new System.Drawing.Point(1, 1);
- this.panel1.Margin = new System.Windows.Forms.Padding(2);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(112, 313);
- this.panel1.TabIndex = 1;
- //
- // panel2
- //
- this.panel2.Controls.Add(this.btnDelApple);
- this.panel2.Controls.Add(this.btnNewApple);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
- this.panel2.Location = new System.Drawing.Point(0, 290);
- this.panel2.Margin = new System.Windows.Forms.Padding(2);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(112, 23);
- this.panel2.TabIndex = 1;
- //
- // btnDelApple
- //
- this.btnDelApple.Dock = System.Windows.Forms.DockStyle.Fill;
- this.btnDelApple.Location = new System.Drawing.Point(56, 0);
- this.btnDelApple.Margin = new System.Windows.Forms.Padding(2);
- this.btnDelApple.Name = "btnDelApple";
- this.btnDelApple.Size = new System.Drawing.Size(56, 23);
- this.btnDelApple.TabIndex = 1;
- this.btnDelApple.Text = "Remove";
- this.btnDelApple.UseVisualStyleBackColor = true;
- this.btnDelApple.Click += new System.EventHandler(this.btnDelApple_Click);
- //
- // btnNewApple
- //
- this.btnNewApple.Dock = System.Windows.Forms.DockStyle.Left;
- this.btnNewApple.Location = new System.Drawing.Point(0, 0);
- this.btnNewApple.Margin = new System.Windows.Forms.Padding(2);
- this.btnNewApple.Name = "btnNewApple";
- this.btnNewApple.Size = new System.Drawing.Size(56, 23);
- this.btnNewApple.TabIndex = 0;
- this.btnNewApple.Text = "New";
- this.btnNewApple.UseVisualStyleBackColor = true;
- this.btnNewApple.Click += new System.EventHandler(this.btnNewApple_Click);
- //
- // lbApplicabilities
- //
- this.lbApplicabilities.DataSource = this.bsApples;
- this.lbApplicabilities.Dock = System.Windows.Forms.DockStyle.Fill;
- this.lbApplicabilities.FormattingEnabled = true;
- this.lbApplicabilities.Location = new System.Drawing.Point(0, 17);
- this.lbApplicabilities.Margin = new System.Windows.Forms.Padding(2);
- this.lbApplicabilities.Name = "lbApplicabilities";
- this.lbApplicabilities.Size = new System.Drawing.Size(112, 290);
- this.lbApplicabilities.TabIndex = 0;
- this.lbApplicabilities.SelectedIndexChanged += new System.EventHandler(this.lbApplicabilities_SelectedIndexChanged);
- //
- // bsApples
- //
- this.bsApples.DataSource = typeof(VEPROMS.MiniConfig);
- //
- // label5
- //
- this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.label5.Dock = System.Windows.Forms.DockStyle.Top;
- this.label5.Location = new System.Drawing.Point(0, 0);
- this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(112, 17);
- this.label5.TabIndex = 0;
- this.label5.Text = "Applicabilities";
- this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- //
- // tiApplicability
- //
- this.tiApplicability.AttachedControl = this.tcpApplicability;
- this.tiApplicability.Name = "tiApplicability";
- this.tiApplicability.Text = "Applicability";
- //
// tcpOutputSettings
//
this.tcpOutputSettings.Controls.Add(this.ppTxtBxPDFSuf);
@@ -1656,11 +1241,11 @@ namespace VEPROMS
this.tcpOutputSettings.Controls.Add(this.ppCmbxWatermark);
this.tcpOutputSettings.Controls.Add(this.ppLblWatermarkDefault);
this.tcpOutputSettings.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tcpOutputSettings.Location = new System.Drawing.Point(0, 22);
- this.tcpOutputSettings.Margin = new System.Windows.Forms.Padding(2);
+ this.tcpOutputSettings.Location = new System.Drawing.Point(0, 24);
+ this.tcpOutputSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tcpOutputSettings.Name = "tcpOutputSettings";
this.tcpOutputSettings.Padding = new System.Windows.Forms.Padding(1);
- this.tcpOutputSettings.Size = new System.Drawing.Size(488, 315);
+ this.tcpOutputSettings.Size = new System.Drawing.Size(651, 391);
this.tcpOutputSettings.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
this.tcpOutputSettings.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
this.tcpOutputSettings.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
@@ -1676,9 +1261,10 @@ namespace VEPROMS
//
this.label30.AutoSize = true;
this.label30.BackColor = System.Drawing.Color.Transparent;
- this.label30.Location = new System.Drawing.Point(219, 108);
+ this.label30.Location = new System.Drawing.Point(292, 133);
+ this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(76, 13);
+ this.label30.Size = new System.Drawing.Size(99, 17);
this.label30.TabIndex = 67;
this.label30.Text = "PDF File Suffix";
//
@@ -1686,9 +1272,10 @@ namespace VEPROMS
//
this.label29.AutoSize = true;
this.label29.BackColor = System.Drawing.Color.Transparent;
- this.label29.Location = new System.Drawing.Point(8, 108);
+ this.label29.Location = new System.Drawing.Point(11, 133);
+ this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(76, 13);
+ this.label29.Size = new System.Drawing.Size(100, 17);
this.label29.TabIndex = 67;
this.label29.Text = "PDF File Prefix";
//
@@ -1697,10 +1284,10 @@ namespace VEPROMS
this.ppChbxAddBlankPgs.AutoSize = true;
this.ppChbxAddBlankPgs.BackColor = System.Drawing.Color.Transparent;
this.ppChbxAddBlankPgs.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.docVersionConfigBindingSource, "Print_AddBlankPagesWhenUsingDuplexFoldouts", true));
- this.ppChbxAddBlankPgs.Location = new System.Drawing.Point(9, 285);
- this.ppChbxAddBlankPgs.Margin = new System.Windows.Forms.Padding(2);
+ this.ppChbxAddBlankPgs.Location = new System.Drawing.Point(12, 351);
+ this.ppChbxAddBlankPgs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppChbxAddBlankPgs.Name = "ppChbxAddBlankPgs";
- this.ppChbxAddBlankPgs.Size = new System.Drawing.Size(249, 17);
+ this.ppChbxAddBlankPgs.Size = new System.Drawing.Size(324, 21);
this.ppChbxAddBlankPgs.TabIndex = 66;
this.ppChbxAddBlankPgs.Text = "Add Blank Pages When Using Duplex Foldouts";
this.ppChbxAddBlankPgs.UseVisualStyleBackColor = false;
@@ -1710,10 +1297,10 @@ namespace VEPROMS
this.ppChbxAlwaysViewPDF.AutoSize = true;
this.ppChbxAlwaysViewPDF.BackColor = System.Drawing.Color.Transparent;
this.ppChbxAlwaysViewPDF.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.docVersionConfigBindingSource, "Print_AlwaysViewPDFAfterCreate", true));
- this.ppChbxAlwaysViewPDF.Location = new System.Drawing.Point(9, 263);
- this.ppChbxAlwaysViewPDF.Margin = new System.Windows.Forms.Padding(2);
+ this.ppChbxAlwaysViewPDF.Location = new System.Drawing.Point(12, 324);
+ this.ppChbxAlwaysViewPDF.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppChbxAlwaysViewPDF.Name = "ppChbxAlwaysViewPDF";
- this.ppChbxAlwaysViewPDF.Size = new System.Drawing.Size(175, 17);
+ this.ppChbxAlwaysViewPDF.Size = new System.Drawing.Size(227, 21);
this.ppChbxAlwaysViewPDF.TabIndex = 37;
this.ppChbxAlwaysViewPDF.Text = "Always View PDF after Creation";
this.ppChbxAlwaysViewPDF.UseVisualStyleBackColor = false;
@@ -1723,10 +1310,10 @@ namespace VEPROMS
this.ppChbxAlwaysOvrWrtPDF.AutoSize = true;
this.ppChbxAlwaysOvrWrtPDF.BackColor = System.Drawing.Color.Transparent;
this.ppChbxAlwaysOvrWrtPDF.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.docVersionConfigBindingSource, "Print_AlwaysOverwritePDF", true));
- this.ppChbxAlwaysOvrWrtPDF.Location = new System.Drawing.Point(9, 241);
- this.ppChbxAlwaysOvrWrtPDF.Margin = new System.Windows.Forms.Padding(2);
+ this.ppChbxAlwaysOvrWrtPDF.Location = new System.Drawing.Point(12, 297);
+ this.ppChbxAlwaysOvrWrtPDF.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppChbxAlwaysOvrWrtPDF.Name = "ppChbxAlwaysOvrWrtPDF";
- this.ppChbxAlwaysOvrWrtPDF.Size = new System.Drawing.Size(131, 17);
+ this.ppChbxAlwaysOvrWrtPDF.Size = new System.Drawing.Size(168, 21);
this.ppChbxAlwaysOvrWrtPDF.TabIndex = 36;
this.ppChbxAlwaysOvrWrtPDF.Text = "Always Overwrite PDF";
this.ppChbxAlwaysOvrWrtPDF.UseVisualStyleBackColor = false;
@@ -1744,10 +1331,10 @@ namespace VEPROMS
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(8, 141);
- this.ppGrpbxPrnAdj.Margin = new System.Windows.Forms.Padding(2);
+ this.ppGrpbxPrnAdj.Location = new System.Drawing.Point(11, 174);
+ this.ppGrpbxPrnAdj.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppGrpbxPrnAdj.Name = "ppGrpbxPrnAdj";
- this.ppGrpbxPrnAdj.Size = new System.Drawing.Size(467, 97);
+ this.ppGrpbxPrnAdj.Size = new System.Drawing.Size(623, 119);
//
//
//
@@ -1786,6 +1373,399 @@ namespace VEPROMS
this.tiOutputSettings.Name = "tiOutputSettings";
this.tiOutputSettings.Text = "Output Settings";
//
+ // tcpApplicability
+ //
+ this.tcpApplicability.Controls.Add(this.label28);
+ this.tcpApplicability.Controls.Add(this.label27);
+ this.tcpApplicability.Controls.Add(this.label26);
+ this.tcpApplicability.Controls.Add(this.label25);
+ this.tcpApplicability.Controls.Add(this.label24);
+ this.tcpApplicability.Controls.Add(this.label23);
+ this.tcpApplicability.Controls.Add(this.label16);
+ this.tcpApplicability.Controls.Add(this.label8);
+ this.tcpApplicability.Controls.Add(this.label7);
+ this.tcpApplicability.Controls.Add(this.textBox11);
+ this.tcpApplicability.Controls.Add(this.textBox10);
+ this.tcpApplicability.Controls.Add(this.textBox9);
+ this.tcpApplicability.Controls.Add(this.textBox8);
+ this.tcpApplicability.Controls.Add(this.textBox7);
+ this.tcpApplicability.Controls.Add(this.textBox6);
+ this.tcpApplicability.Controls.Add(this.textBox5);
+ this.tcpApplicability.Controls.Add(this.textBox4);
+ this.tcpApplicability.Controls.Add(this.textBox3);
+ this.tcpApplicability.Controls.Add(this.textBox2);
+ this.tcpApplicability.Controls.Add(this.textBox1);
+ this.tcpApplicability.Controls.Add(this.panel1);
+ this.tcpApplicability.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.tcpApplicability.Location = new System.Drawing.Point(0, 24);
+ this.tcpApplicability.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.tcpApplicability.Name = "tcpApplicability";
+ this.tcpApplicability.Padding = new System.Windows.Forms.Padding(1);
+ this.tcpApplicability.Size = new System.Drawing.Size(651, 391);
+ this.tcpApplicability.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
+ this.tcpApplicability.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
+ this.tcpApplicability.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
+ this.tcpApplicability.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
+ this.tcpApplicability.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
+ | DevComponents.DotNetBar.eBorderSide.Bottom)));
+ this.tcpApplicability.Style.GradientAngle = 90;
+ this.tcpApplicability.TabIndex = 6;
+ this.tcpApplicability.TabItem = this.tiApplicability;
+ //
+ // label28
+ //
+ this.label28.AutoSize = true;
+ this.label28.BackColor = System.Drawing.Color.Transparent;
+ this.label28.Location = new System.Drawing.Point(213, 198);
+ this.label28.Name = "label28";
+ this.label28.Size = new System.Drawing.Size(70, 17);
+ this.label28.TabIndex = 21;
+ this.label28.Text = "Set Name";
+ //
+ // label27
+ //
+ this.label27.AutoSize = true;
+ this.label27.BackColor = System.Drawing.Color.Transparent;
+ this.label27.Location = new System.Drawing.Point(236, 172);
+ this.label27.Name = "label27";
+ this.label27.Size = new System.Drawing.Size(46, 17);
+ this.label27.TabIndex = 20;
+ this.label27.Text = "Set ID";
+ //
+ // label26
+ //
+ this.label26.AutoSize = true;
+ this.label26.BackColor = System.Drawing.Color.Transparent;
+ this.label26.Location = new System.Drawing.Point(157, 146);
+ this.label26.Name = "label26";
+ this.label26.Size = new System.Drawing.Size(128, 17);
+ this.label26.TabIndex = 19;
+ this.label26.Text = "Procedure Number";
+ //
+ // label25
+ //
+ this.label25.AutoSize = true;
+ this.label25.BackColor = System.Drawing.Color.Transparent;
+ this.label25.Location = new System.Drawing.Point(172, 105);
+ this.label25.Name = "label25";
+ this.label25.Size = new System.Drawing.Size(35, 17);
+ this.label25.TabIndex = 18;
+ this.label25.Text = "Text";
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.BackColor = System.Drawing.Color.Transparent;
+ this.label24.Location = new System.Drawing.Point(157, 79);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(58, 17);
+ this.label24.TabIndex = 17;
+ this.label24.Text = "Number";
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.BackColor = System.Drawing.Color.Transparent;
+ this.label23.Location = new System.Drawing.Point(165, 54);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(45, 17);
+ this.label23.TabIndex = 16;
+ this.label23.Text = "Name";
+ //
+ // label16
+ //
+ this.label16.AutoSize = true;
+ this.label16.BackColor = System.Drawing.Color.Transparent;
+ this.label16.Location = new System.Drawing.Point(181, 28);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(21, 17);
+ this.label16.TabIndex = 15;
+ this.label16.Text = "ID";
+ //
+ // label8
+ //
+ this.label8.AutoSize = true;
+ this.label8.BackColor = System.Drawing.Color.Transparent;
+ this.label8.Location = new System.Drawing.Point(440, 7);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(166, 17);
+ this.label8.TabIndex = 14;
+ this.label8.Text = "Other Unit/Train/Channel";
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.BackColor = System.Drawing.Color.Transparent;
+ this.label7.Location = new System.Drawing.Point(220, 7);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(126, 17);
+ this.label7.TabIndex = 13;
+ this.label7.Text = "Unit/Train/Channel";
+ //
+ // textBox11
+ //
+ this.textBox11.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherText", true));
+ this.textBox11.Location = new System.Drawing.Point(440, 102);
+ this.textBox11.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox11.Name = "textBox11";
+ this.textBox11.Size = new System.Drawing.Size(200, 22);
+ this.textBox11.TabIndex = 12;
+ //
+ // bsMiniApple
+ //
+ this.bsMiniApple.DataSource = typeof(VEPROMS.MiniConfig);
+ //
+ // textBox10
+ //
+ this.textBox10.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherNumber", true));
+ this.textBox10.Location = new System.Drawing.Point(440, 76);
+ this.textBox10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox10.Name = "textBox10";
+ this.textBox10.Size = new System.Drawing.Size(200, 22);
+ this.textBox10.TabIndex = 11;
+ //
+ // textBox9
+ //
+ this.textBox9.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherName", true));
+ this.textBox9.Location = new System.Drawing.Point(440, 50);
+ this.textBox9.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox9.Name = "textBox9";
+ this.textBox9.Size = new System.Drawing.Size(200, 22);
+ this.textBox9.TabIndex = 10;
+ //
+ // textBox8
+ //
+ this.textBox8.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "OtherID", true));
+ this.textBox8.Location = new System.Drawing.Point(440, 25);
+ this.textBox8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox8.Name = "textBox8";
+ this.textBox8.Size = new System.Drawing.Size(200, 22);
+ this.textBox8.TabIndex = 9;
+ //
+ // textBox7
+ //
+ this.textBox7.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "SetName", true));
+ this.textBox7.Location = new System.Drawing.Point(300, 194);
+ this.textBox7.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox7.Name = "textBox7";
+ this.textBox7.Size = new System.Drawing.Size(200, 22);
+ this.textBox7.TabIndex = 8;
+ //
+ // textBox6
+ //
+ this.textBox6.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "SetID", true));
+ this.textBox6.Location = new System.Drawing.Point(300, 169);
+ this.textBox6.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox6.Name = "textBox6";
+ this.textBox6.Size = new System.Drawing.Size(200, 22);
+ this.textBox6.TabIndex = 7;
+ //
+ // textBox5
+ //
+ this.textBox5.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "ProcedureNumber", true));
+ this.textBox5.Location = new System.Drawing.Point(300, 143);
+ this.textBox5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(200, 22);
+ this.textBox5.TabIndex = 6;
+ //
+ // textBox4
+ //
+ this.textBox4.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "Text", true));
+ this.textBox4.Location = new System.Drawing.Point(220, 102);
+ this.textBox4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox4.Name = "textBox4";
+ this.textBox4.Size = new System.Drawing.Size(200, 22);
+ this.textBox4.TabIndex = 5;
+ //
+ // textBox3
+ //
+ this.textBox3.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "Number", true));
+ this.textBox3.Location = new System.Drawing.Point(220, 76);
+ this.textBox3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox3.Name = "textBox3";
+ this.textBox3.Size = new System.Drawing.Size(200, 22);
+ this.textBox3.TabIndex = 4;
+ //
+ // textBox2
+ //
+ this.textBox2.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "Name", true));
+ this.textBox2.Location = new System.Drawing.Point(220, 50);
+ this.textBox2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(200, 22);
+ this.textBox2.TabIndex = 3;
+ //
+ // textBox1
+ //
+ this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bsMiniApple, "ID", true));
+ this.textBox1.Location = new System.Drawing.Point(220, 25);
+ this.textBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(200, 22);
+ this.textBox1.TabIndex = 2;
+ //
+ // panel1
+ //
+ this.panel1.BackColor = System.Drawing.Color.Transparent;
+ this.panel1.Controls.Add(this.panel2);
+ this.panel1.Controls.Add(this.lbApplicabilities);
+ this.panel1.Controls.Add(this.label5);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
+ this.panel1.Location = new System.Drawing.Point(1, 1);
+ this.panel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(149, 389);
+ this.panel1.TabIndex = 1;
+ //
+ // panel2
+ //
+ this.panel2.Controls.Add(this.btnDelApple);
+ this.panel2.Controls.Add(this.btnNewApple);
+ this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
+ this.panel2.Location = new System.Drawing.Point(0, 361);
+ this.panel2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.panel2.Name = "panel2";
+ this.panel2.Size = new System.Drawing.Size(149, 28);
+ this.panel2.TabIndex = 1;
+ //
+ // btnDelApple
+ //
+ this.btnDelApple.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.btnDelApple.Location = new System.Drawing.Point(75, 0);
+ this.btnDelApple.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.btnDelApple.Name = "btnDelApple";
+ this.btnDelApple.Size = new System.Drawing.Size(74, 28);
+ this.btnDelApple.TabIndex = 1;
+ this.btnDelApple.Text = "Remove";
+ this.btnDelApple.UseVisualStyleBackColor = true;
+ this.btnDelApple.Click += new System.EventHandler(this.btnDelApple_Click);
+ //
+ // btnNewApple
+ //
+ this.btnNewApple.Dock = System.Windows.Forms.DockStyle.Left;
+ this.btnNewApple.Location = new System.Drawing.Point(0, 0);
+ this.btnNewApple.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.btnNewApple.Name = "btnNewApple";
+ this.btnNewApple.Size = new System.Drawing.Size(75, 28);
+ this.btnNewApple.TabIndex = 0;
+ this.btnNewApple.Text = "New";
+ this.btnNewApple.UseVisualStyleBackColor = true;
+ this.btnNewApple.Click += new System.EventHandler(this.btnNewApple_Click);
+ //
+ // lbApplicabilities
+ //
+ this.lbApplicabilities.DataSource = this.bsApples;
+ this.lbApplicabilities.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.lbApplicabilities.FormattingEnabled = true;
+ this.lbApplicabilities.ItemHeight = 16;
+ this.lbApplicabilities.Location = new System.Drawing.Point(0, 20);
+ this.lbApplicabilities.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.lbApplicabilities.Name = "lbApplicabilities";
+ this.lbApplicabilities.Size = new System.Drawing.Size(149, 356);
+ this.lbApplicabilities.TabIndex = 0;
+ this.lbApplicabilities.SelectedIndexChanged += new System.EventHandler(this.lbApplicabilities_SelectedIndexChanged);
+ //
+ // bsApples
+ //
+ this.bsApples.DataSource = typeof(VEPROMS.MiniConfig);
+ //
+ // label5
+ //
+ this.label5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.label5.Dock = System.Windows.Forms.DockStyle.Top;
+ this.label5.Location = new System.Drawing.Point(0, 0);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(149, 20);
+ this.label5.TabIndex = 0;
+ this.label5.Text = "Applicabilities";
+ this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // tiApplicability
+ //
+ this.tiApplicability.AttachedControl = this.tcpApplicability;
+ this.tiApplicability.Name = "tiApplicability";
+ this.tiApplicability.Text = "Applicability";
+ //
+ // 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, 24);
+ this.tabControlPanel5.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.tabControlPanel5.Name = "tabControlPanel5";
+ this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
+ this.tabControlPanel5.Size = new System.Drawing.Size(651, 391);
+ 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;
+ this.tabControlPanel5.Enter += new System.EventHandler(this.tabpage_Enter);
+ //
+ // ppGrdLibDocList
+ //
+ this.ppGrdLibDocList.AllowUserToAddRows = false;
+ this.ppGrdLibDocList.AutoGenerateColumns = false;
+ this.ppGrdLibDocList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ this.ppGrdLibDocList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+ this.documentEntryCountDataGridViewTextBoxColumn,
+ this.libTitleDataGridViewTextBoxColumn});
+ this.ppGrdLibDocList.DataSource = this.documentInfoListBindingSource;
+ dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
+ dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
+ dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
+ dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+ dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
+ dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
+ this.ppGrdLibDocList.DefaultCellStyle = dataGridViewCellStyle2;
+ this.ppGrdLibDocList.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.ppGrdLibDocList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
+ this.ppGrdLibDocList.HighlightSelectedColumnHeaders = false;
+ this.ppGrdLibDocList.Location = new System.Drawing.Point(1, 1);
+ this.ppGrdLibDocList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
+ this.ppGrdLibDocList.Name = "ppGrdLibDocList";
+ this.ppGrdLibDocList.RowHeadersVisible = false;
+ this.ppGrdLibDocList.RowTemplate.Height = 24;
+ this.ppGrdLibDocList.SelectAllSignVisible = false;
+ this.ppGrdLibDocList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+ this.ppGrdLibDocList.Size = new System.Drawing.Size(649, 389);
+ this.ppGrdLibDocList.TabIndex = 1;
+ //
+ // documentEntryCountDataGridViewTextBoxColumn
+ //
+ this.documentEntryCountDataGridViewTextBoxColumn.DataPropertyName = "DocumentEntryCount";
+ dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+ this.documentEntryCountDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle1;
+ this.documentEntryCountDataGridViewTextBoxColumn.HeaderText = "Number of Usages";
+ this.documentEntryCountDataGridViewTextBoxColumn.Name = "documentEntryCountDataGridViewTextBoxColumn";
+ this.documentEntryCountDataGridViewTextBoxColumn.ReadOnly = true;
+ this.documentEntryCountDataGridViewTextBoxColumn.Width = 95;
+ //
+ // libTitleDataGridViewTextBoxColumn
+ //
+ this.libTitleDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
+ this.libTitleDataGridViewTextBoxColumn.DataPropertyName = "LibTitle";
+ this.libTitleDataGridViewTextBoxColumn.HeaderText = "Library Document Title";
+ this.libTitleDataGridViewTextBoxColumn.Name = "libTitleDataGridViewTextBoxColumn";
+ this.libTitleDataGridViewTextBoxColumn.ReadOnly = true;
+ //
+ // documentInfoListBindingSource
+ //
+ this.documentInfoListBindingSource.DataSource = typeof(VEPROMS.CSLA.Library.DocumentInfo);
+ //
+ // tiLibDocs
+ //
+ this.tiLibDocs.AttachedControl = this.tabControlPanel5;
+ this.tiLibDocs.Name = "tiLibDocs";
+ this.tiLibDocs.Text = "Library Documents";
+ //
// tcpRefereceObjects
//
this.tcpRefereceObjects.Controls.Add(this.tbRoDb);
@@ -1795,11 +1775,11 @@ namespace VEPROMS
this.tcpRefereceObjects.Controls.Add(this.ppGpbxUpROvals);
this.tcpRefereceObjects.Controls.Add(this.label6);
this.tcpRefereceObjects.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tcpRefereceObjects.Location = new System.Drawing.Point(0, 22);
- this.tcpRefereceObjects.Margin = new System.Windows.Forms.Padding(2);
+ this.tcpRefereceObjects.Location = new System.Drawing.Point(0, 24);
+ this.tcpRefereceObjects.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tcpRefereceObjects.Name = "tcpRefereceObjects";
this.tcpRefereceObjects.Padding = new System.Windows.Forms.Padding(1);
- this.tcpRefereceObjects.Size = new System.Drawing.Size(488, 315);
+ this.tcpRefereceObjects.Size = new System.Drawing.Size(651, 391);
this.tcpRefereceObjects.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
this.tcpRefereceObjects.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
this.tcpRefereceObjects.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
@@ -1814,18 +1794,18 @@ namespace VEPROMS
// tbRoDb
//
this.tbRoDb.Enabled = false;
- this.tbRoDb.Location = new System.Drawing.Point(80, 13);
- this.tbRoDb.Margin = new System.Windows.Forms.Padding(2);
+ this.tbRoDb.Location = new System.Drawing.Point(107, 16);
+ this.tbRoDb.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.tbRoDb.Name = "tbRoDb";
- this.tbRoDb.Size = new System.Drawing.Size(318, 20);
+ this.tbRoDb.Size = new System.Drawing.Size(423, 22);
this.tbRoDb.TabIndex = 20;
//
// ppBtnRoDbBrowse
//
- this.ppBtnRoDbBrowse.Location = new System.Drawing.Point(406, 34);
- this.ppBtnRoDbBrowse.Margin = new System.Windows.Forms.Padding(2);
+ this.ppBtnRoDbBrowse.Location = new System.Drawing.Point(541, 42);
+ this.ppBtnRoDbBrowse.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppBtnRoDbBrowse.Name = "ppBtnRoDbBrowse";
- this.ppBtnRoDbBrowse.Size = new System.Drawing.Size(51, 20);
+ this.ppBtnRoDbBrowse.Size = new System.Drawing.Size(68, 25);
this.ppBtnRoDbBrowse.TabIndex = 22;
this.ppBtnRoDbBrowse.Text = "Browse...";
this.ppBtnRoDbBrowse.UseVisualStyleBackColor = true;
@@ -1836,20 +1816,20 @@ namespace VEPROMS
this.btnRoDbProperties.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnRoDbProperties.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnRoDbProperties.Image = ((System.Drawing.Image)(resources.GetObject("btnRoDbProperties.Image")));
- this.btnRoDbProperties.Location = new System.Drawing.Point(406, 10);
- this.btnRoDbProperties.Margin = new System.Windows.Forms.Padding(2);
+ this.btnRoDbProperties.Location = new System.Drawing.Point(541, 12);
+ this.btnRoDbProperties.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnRoDbProperties.Name = "btnRoDbProperties";
- this.btnRoDbProperties.Size = new System.Drawing.Size(33, 23);
+ this.btnRoDbProperties.Size = new System.Drawing.Size(44, 28);
this.btnRoDbProperties.TabIndex = 21;
this.btnRoDbProperties.Click += new System.EventHandler(this.btnRoDbProperties_Click);
//
// cmbRoDb
//
this.cmbRoDb.FormattingEnabled = true;
- this.cmbRoDb.Location = new System.Drawing.Point(80, 13);
- this.cmbRoDb.Margin = new System.Windows.Forms.Padding(2);
+ this.cmbRoDb.Location = new System.Drawing.Point(107, 16);
+ this.cmbRoDb.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.cmbRoDb.Name = "cmbRoDb";
- this.cmbRoDb.Size = new System.Drawing.Size(318, 21);
+ this.cmbRoDb.Size = new System.Drawing.Size(423, 24);
this.cmbRoDb.TabIndex = 47;
this.cmbRoDb.SelectedIndexChanged += new System.EventHandler(this.cmbRoDb_SelectedIndexChanged);
//
@@ -1860,10 +1840,10 @@ namespace VEPROMS
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(34, 69);
- this.ppGpbxUpROvals.Margin = new System.Windows.Forms.Padding(2);
+ this.ppGpbxUpROvals.Location = new System.Drawing.Point(45, 85);
+ this.ppGpbxUpROvals.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.ppGpbxUpROvals.Name = "ppGpbxUpROvals";
- this.ppGpbxUpROvals.Size = new System.Drawing.Size(112, 162);
+ this.ppGpbxUpROvals.Size = new System.Drawing.Size(149, 199);
//
//
//
@@ -1910,10 +1890,10 @@ namespace VEPROMS
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);
+ this.panVerBtns.Location = new System.Drawing.Point(7, 2);
+ this.panVerBtns.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.panVerBtns.Name = "panVerBtns";
- this.panVerBtns.Size = new System.Drawing.Size(151, 280);
+ this.panVerBtns.Size = new System.Drawing.Size(201, 345);
this.panVerBtns.TabIndex = 27;
//
// btnApplicability
@@ -1921,10 +1901,10 @@ namespace VEPROMS
this.btnApplicability.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.btnApplicability.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
this.btnApplicability.Dock = System.Windows.Forms.DockStyle.Top;
- this.btnApplicability.Location = new System.Drawing.Point(0, 92);
- this.btnApplicability.Margin = new System.Windows.Forms.Padding(2);
+ this.btnApplicability.Location = new System.Drawing.Point(0, 112);
+ this.btnApplicability.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnApplicability.Name = "btnApplicability";
- this.btnApplicability.Size = new System.Drawing.Size(151, 15);
+ this.btnApplicability.Size = new System.Drawing.Size(201, 18);
this.btnApplicability.TabIndex = 98;
this.btnApplicability.Text = "Applicability";
this.btnApplicability.Click += new System.EventHandler(this.btnApplicability_Click);
@@ -1934,10 +1914,10 @@ namespace VEPROMS
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);
+ this.btnLibDocs.Location = new System.Drawing.Point(0, 89);
+ this.btnLibDocs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnLibDocs.Name = "btnLibDocs";
- this.btnLibDocs.Size = new System.Drawing.Size(151, 19);
+ this.btnLibDocs.Size = new System.Drawing.Size(201, 23);
this.btnLibDocs.TabIndex = 97;
this.btnLibDocs.Text = "Library Documents";
this.btnLibDocs.Click += new System.EventHandler(this.btnLibDocs_Click);
@@ -1947,10 +1927,10 @@ namespace VEPROMS
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);
+ this.btnFmtSettings.Location = new System.Drawing.Point(0, 66);
+ this.btnFmtSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnFmtSettings.Name = "btnFmtSettings";
- this.btnFmtSettings.Size = new System.Drawing.Size(151, 19);
+ this.btnFmtSettings.Size = new System.Drawing.Size(201, 23);
this.btnFmtSettings.TabIndex = 96;
this.btnFmtSettings.Text = "Format Settings";
this.btnFmtSettings.Click += new System.EventHandler(this.btnFmtSettings_Click);
@@ -1960,10 +1940,10 @@ namespace VEPROMS
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);
+ this.btnOutputSettings.Location = new System.Drawing.Point(0, 43);
+ this.btnOutputSettings.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnOutputSettings.Name = "btnOutputSettings";
- this.btnOutputSettings.Size = new System.Drawing.Size(151, 19);
+ this.btnOutputSettings.Size = new System.Drawing.Size(201, 23);
this.btnOutputSettings.TabIndex = 95;
this.btnOutputSettings.Text = "Output Settings";
this.btnOutputSettings.Click += new System.EventHandler(this.btnOutputSettings_Click);
@@ -1973,10 +1953,10 @@ namespace VEPROMS
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);
+ this.btnRefObjs.Location = new System.Drawing.Point(0, 23);
+ this.btnRefObjs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnRefObjs.Name = "btnRefObjs";
- this.btnRefObjs.Size = new System.Drawing.Size(151, 16);
+ this.btnRefObjs.Size = new System.Drawing.Size(201, 20);
this.btnRefObjs.TabIndex = 94;
this.btnRefObjs.Text = "Referenced Objects";
this.btnRefObjs.Click += new System.EventHandler(this.btnRefObjs_Click);
@@ -1987,9 +1967,9 @@ namespace VEPROMS
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);
+ this.btnGeneral.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.btnGeneral.Name = "btnGeneral";
- this.btnGeneral.Size = new System.Drawing.Size(151, 19);
+ this.btnGeneral.Size = new System.Drawing.Size(201, 23);
this.btnGeneral.TabIndex = 93;
this.btnGeneral.Text = "General";
this.btnGeneral.Click += new System.EventHandler(this.btnGeneral_Click);
@@ -2000,12 +1980,12 @@ namespace VEPROMS
//
// frmVersionsProperties
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.CancelButton = this.ppBtnCancel;
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(694, 384);
+ this.ClientSize = new System.Drawing.Size(912, 460);
this.ControlBox = false;
this.Controls.Add(this.panVerBtns);
this.Controls.Add(this.tcVersions);
@@ -2015,7 +1995,7 @@ namespace VEPROMS
this.Controls.Add(this.ppBtnOK);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Margin = new System.Windows.Forms.Padding(2);
+ this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmVersionsProperties";
@@ -2040,19 +2020,19 @@ namespace VEPROMS
this.tcpGeneral.PerformLayout();
this.tcpFormatSettings.ResumeLayout(false);
this.tcpFormatSettings.PerformLayout();
- this.tabControlPanel5.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.documentInfoListBindingSource)).EndInit();
+ this.tcpOutputSettings.ResumeLayout(false);
+ this.tcpOutputSettings.PerformLayout();
+ this.ppGrpbxPrnAdj.ResumeLayout(false);
+ this.ppGrpbxPrnAdj.PerformLayout();
this.tcpApplicability.ResumeLayout(false);
this.tcpApplicability.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.bsMiniApple)).EndInit();
this.panel1.ResumeLayout(false);
this.panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.bsApples)).EndInit();
- this.tcpOutputSettings.ResumeLayout(false);
- this.tcpOutputSettings.PerformLayout();
- this.ppGrpbxPrnAdj.ResumeLayout(false);
- this.ppGrpbxPrnAdj.PerformLayout();
+ this.tabControlPanel5.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.ppGrdLibDocList)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.documentInfoListBindingSource)).EndInit();
this.tcpRefereceObjects.ResumeLayout(false);
this.tcpRefereceObjects.PerformLayout();
this.ppGpbxUpROvals.ResumeLayout(false);
@@ -2206,5 +2186,6 @@ namespace VEPROMS
private System.Windows.Forms.Label label29;
private System.Windows.Forms.RichTextBox ppTxbxUnitNum;
private System.Windows.Forms.Label ppLblUnitNum;
+ private DevComponents.DotNetBar.ButtonX btnPhoneList;
}
}
\ No newline at end of file
diff --git a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs
index 22e395ac..e326aaaf 100644
--- a/PROMS/VEPROMS User Interface/frmVersionsProperties.cs
+++ b/PROMS/VEPROMS User Interface/frmVersionsProperties.cs
@@ -360,6 +360,9 @@ namespace VEPROMS
//end add new applicability stuff
lblProcSetRev.Visible = ppRTxtProcSetRev.Visible = _DocVersionConfig.MyDocVersion.MyDocVersionInfo.ActiveFormat.MyStepSectionPrintData.UseXtraRevNumber;
_Initializing = false;
+
+ // the phone list button is only visible if the format has the print/phonelist format flag.
+ btnPhoneList.Visible = _DocVersionConfig.MyDocVersion.MyDocVersionInfo.ActiveFormat.PlantFormat.FormatData.SectData.PrintPhoneList;
}
// The following code was added to fix Bug B2013-117
void ppTxtBxPDFLoc_TextChanged(object sender, EventArgs e)
@@ -1064,6 +1067,12 @@ namespace VEPROMS
bsApples.DataSource = _Apples;
}
}
+
+ private void btnPhoneList_Click(object sender, EventArgs e)
+ {
+ dlgPhoneList dlgPL = new dlgPhoneList(_DocVersionConfig);
+ dlgPL.ShowDialog();
+ }
}
[XmlRoot("Slave")]
diff --git a/PROMS/VEPROMS.CSLA.Library/Config/DocVersionConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/DocVersionConfig.cs
index f3f55b43..105f4fb1 100644
--- a/PROMS/VEPROMS.CSLA.Library/Config/DocVersionConfig.cs
+++ b/PROMS/VEPROMS.CSLA.Library/Config/DocVersionConfig.cs
@@ -864,6 +864,25 @@ namespace VEPROMS.CSLA.Library
}
}
}
+ [Category("Print Settings")]
+ [DisplayName("PhoneList")]
+ [RefreshProperties(RefreshProperties.All)]
+ [Description("Phone List")]
+ public string Print_PhoneList
+ {
+ get
+ {
+ return _Xp["PrintSettings", "PhoneList"];
+ }
+ set
+ {
+ if (_SaveChangesToDocVersionConfig)
+ {
+ _Xp["PrintSettings", "PhoneList"] = value; // save selected value
+ OnPropertyChanged("Print_PhoneList");
+ }
+ }
+ }
#endregion
#region Unit // From PROC.INI
//MultiUnitCount
diff --git a/PROMS/Volian.Print.Library/Pagination.cs b/PROMS/Volian.Print.Library/Pagination.cs
index ffc7eab9..08130f74 100644
--- a/PROMS/Volian.Print.Library/Pagination.cs
+++ b/PROMS/Volian.Print.Library/Pagination.cs
@@ -56,6 +56,11 @@ namespace Volian.Print.Library
// procedure in questions was VEWCNEMG\EMGAPP.PRC, ES-01, Step 8.
float yEndMsg = !_skipEndMessage && !MyItemInfo.IsSection && MyItemInfo.MyHLS != null && MyItemInfo.MyHLS.NextItem == null && (MyItemInfo.MyDocStyle.End.Message ?? "") != "" ? 2 * SixLinesPerInch : 0;
+ // also consider if there is a phone list at the bottom of the page, add the amount of space the phone
+ // list requires onto yEndMsg to make it easier to figure out pagination.
+ if (MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.PrintPhoneList)
+ yEndMsg += MyPageHelper.PhoneListHeight;
+
// The following code is to fix a pagination issue in SHE. It was decided to not put it into development
// because some of the pagination logic may be redesigned. Without this fix, some pages had a page break
// before they should. I did not want to lose this code, in case at some point we want to revisit this.
diff --git a/PROMS/Volian.Print.Library/PromsPrinter.cs b/PROMS/Volian.Print.Library/PromsPrinter.cs
index 7a5d7963..b59a3d8e 100644
--- a/PROMS/Volian.Print.Library/PromsPrinter.cs
+++ b/PROMS/Volian.Print.Library/PromsPrinter.cs
@@ -499,6 +499,32 @@ namespace Volian.Print.Library
_MyHelper.MySection = mySection;
OnStatusChanged("After Set Svg", PromsPrinterStatusType.SetSVG);
}
+ // if this format uses phonelists, see if this section has one. We need to know the number
+ //of lines to adjust the pagelength for pagination and printing.
+ _MyHelper.PhoneListHeight = 0;
+ if (mySection.ActiveFormat.PlantFormat.FormatData.SectData.PrintPhoneList)
+ {
+ DocVersionConfig dvc = mySection.MyDocVersion.MyConfig as DocVersionConfig;
+ if (dvc != null)
+ {
+ string phlist = dvc.Print_PhoneList;
+ if (phlist != null && phlist != "")
+ {
+ // count lines:
+ int cl = 1;
+ int indx = phlist.IndexOf("\n");
+ while (indx > 0)
+ {
+ cl++;
+ if (indx + 1 > phlist.Length)
+ indx = -1;
+ else
+ indx = phlist.IndexOf("\n", indx + 1);
+ }
+ _MyHelper.PhoneListHeight = cl * vlnPrintObject.SixLinesPerInch;
+ }
+ }
+ }
PdfReader readerWord = null;
string myPdfFile = null;
_MyHelper.FinalMessageSectionID = finalMessageSectionID; // set VlnSvgPageHelper with the finalMessageSectionID
@@ -793,32 +819,36 @@ namespace Volian.Print.Library
float adjSecTitlePos = secTitlePos + indentOffset + (level * 6);
if (secNumPos + numwidth + indentOffset > secTitlePos + indentOffset)
adjSecTitlePos = secNumPos + numwidth + 18 - xAdjTitleIndent + indentOffset;
+
+ // Do the title first since it may wrap to 2nd line and this is an issue for
+ // doing a pagebreak, i.e. may cause a page break when the number on a single line
+ // would not.
rtfText = GetRtfToC(mySection.MyContent.Text, tOfC);
Paragraph myparagrapht = vlnPrintObject.RtfToParagraph(rtfText);
width = secPagePos - adjSecTitlePos - 6;
float retval = Rtf2Pdf.TextAt(cb, myparagrapht, leftMargin + adjSecTitlePos, yPageStart - yLocation, width, height, "", yBottomMargin);
- float ttlRetval = retval;
- if (retval == 0)
+ if (retval == 0) // couldn't fit, flags need for a page break.
{
cb.PdfDocument.NewPage();
_MyHelper.ResetSvg(); // needed to reset so that PSNotFirst pagelist justify flag gets used for BGE
- //_MyLog.InfoFormat("NewPage 5 {0}", cb.PdfWriter.CurrentPageNumber);
yLocation = lastyLocation = 0;
retval = Rtf2Pdf.TextAt(cb, myparagrapht, leftMargin + adjSecTitlePos, yPageStart - yLocation, width, height, "", yBottomMargin);
- ttlRetval = retval;
}
+ float ttlRetval = retval;
+
+ // Now do the section number. Retval is the ylocation on page after the text
+ // is put out.
retval = Rtf2Pdf.TextAt(cb, myparagraphn, leftMargin + secNumPos + indentOffset, yPageStart - yLocation, width * 1.3F, height, "", yBottomMargin);
- if (retval == 0) // do a newpage, it couldn't fit on current page.
- {
- cb.PdfDocument.NewPage();
- //_MyLog.InfoFormat("NewPage 5 {0}", cb.PdfWriter.CurrentPageNumber);
- yLocation = lastyLocation = 0;
- retval = Rtf2Pdf.TextAt(cb, myparagraphn, leftMargin + secNumPos + indentOffset, yPageStart - yLocation, width * 1.3F, height, "", yBottomMargin);
- }
- retval = Math.Min(retval, ttlRetval);
+
float lSpace = (tOfC.TofCLineSpacing == 2) ? 2 * vlnPrintObject.SixLinesPerInch : vlnPrintObject.SixLinesPerInch;
- if (lastyLocation != 0 && ((lastyLocation - retval) > lSpace))
- yLocation += (lastyLocation - retval - lSpace);
+
+ // adjust ylocation for pagenumber - the ylocation will get reset if the
+ // section title split on 2 lines and the page number needs to be on the 2nd line.
+ if (retval != ttlRetval) yLocation += (retval - ttlRetval);
+
+ // retval = the minimum (further down the page) between section number and
+ // title - this accounts for multi line title.
+ retval = Math.Min(retval, ttlRetval);
lastyLocation = retval;
// check that the page number should be in the TOC (some BGE sections do not have the page number)
@@ -832,8 +862,10 @@ namespace Volian.Print.Library
width = 0;
foreach (Chunk chkt in myparagrapht.Chunks)
width += chkt.GetWidthPoint();
- float startSpace = leftMargin + adjSecTitlePos + width;
- float endSpace = leftMargin + secPagePos;
+ // the '6' in the next 2 lines & in the 'while' loop below allows the placement of the dots (or other space character)
+ // to be not too close to section title & page number.
+ float startSpace = leftMargin + adjSecTitlePos + width + 6;
+ float endSpace = leftMargin + secPagePos - 6;
float numSpace = endSpace - startSpace;
string spaceStr = "";
rtfText = GetRtfToC(tOfC.TofCSpaceChar, tOfC);
@@ -841,7 +873,7 @@ namespace Volian.Print.Library
float spacchrwid = 0;
foreach (Chunk chkt in tmpmyparagraph.Chunks)
spacchrwid += chkt.GetWidthPoint();
- while (numSpace > 0)
+ while (numSpace > 6)
{
spaceStr = spaceStr + tOfC.TofCSpaceChar;
numSpace -= spacchrwid;
diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs
index e3db164c..9eab80dc 100644
--- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs
+++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs
@@ -73,6 +73,12 @@ namespace Volian.Print.Library
get { return _YMultiplier; }
set { _YMultiplier = value; }
}
+ float _PhoneListHeight = 0;
+ public float PhoneListHeight
+ {
+ get { return _PhoneListHeight; }
+ set { _PhoneListHeight = value; }
+ }
private PdfWriter _MyPdfWriter;
public PdfWriter MyPdfWriter
{
@@ -175,6 +181,19 @@ namespace Volian.Print.Library
}
if (MySection.MyDocStyle.StructureStyle.Style==null || (MySection.MyDocStyle.StructureStyle.Style & E_DocStructStyle.DontCountInTabOfCont) == 0)
CurrentTOCPageNumber++;
+ if (MySection.ActiveFormat.PlantFormat.FormatData.SectData.PrintPhoneList)
+ {
+ SectionConfig sc = MySection.MyConfig as SectionConfig;
+ if (sc.Section_PhoneList != null && sc.Section_PhoneList == "Y")
+ {
+ // yoffset the footer length + the size of the phone list:
+ float yoff = (float)MySection.MyDocStyle.Layout.FooterLength + PhoneListHeight + 12; // 12 is an extra line for the horizontal.
+ DocVersionConfig dvc = MySection.MyDocVersion.MyConfig as DocVersionConfig;
+ if (dvc != null)
+ DrawPhoneList(writer.DirectContent, (float)MySection.MyDocStyle.Layout.LeftMargin, (float)MySection.MyDocStyle.Layout.PageWidth, yoff, dvc.Print_PhoneList);
+ }
+ }
+
if (MySection.MyDocStyle.CenterLineX != null)
{
if ((MySection.MyDocStyle.StructureStyle.Style & E_DocStructStyle.DoubleBoxHLS) == E_DocStructStyle.DoubleBoxHLS)
@@ -187,6 +206,57 @@ namespace Volian.Print.Library
YMultiplier = 1;
PrintedAPage = true;
}
+
+ private void DrawPhoneList(PdfContentByte pdfContentByte, float leftMargin, float pageWidth, float yOff, string plist)
+ {
+ // draw the line above the phone list:
+ yOff = yOff + 4; // move up 1/2 line:
+ DrawHorizontal(pdfContentByte, leftMargin, pageWidth, yOff);
+
+ pdfContentByte.SaveState();
+ if (PageListLayer != null) pdfContentByte.BeginLayer(PageListLayer);
+ pdfContentByte.SetColorStroke(new Color(PrintOverride.SvgColor));
+
+ // for each line, break it into phone items for printing. Note that 16bit code also supported
+ // a tabbing line - BGE wasn't using this in data at time of development. The following code may
+ // need expanded to support the tabbing/column definitions if this is found in data.
+ float lyoff = yOff - 4;
+ plist = plist.Replace("\r", "");
+ string[] lines = plist.Split("\n".ToCharArray());
+ DocStyle docstyle = MySection.MyDocStyle;
+ foreach (string cline in lines)
+ {
+ if (cline != "")
+ {
+ // xoff handles the columns. The separator between phone items is a double space. A phone
+ // item may have a single space within it (this comes from 16bit implementation)
+ float xoff = (float)docstyle.Layout.LeftMargin;
+ int stLineindx = 0;
+ int endLineindx = cline.IndexOf(" ");
+ bool endOfLine = false;
+ while (!endOfLine)
+ {
+ string phone = cline.Substring(stLineindx, endLineindx - stLineindx);
+ float tmp = 0;
+ vlnText vt = new vlnText(pdfContentByte, null, phone, phone, xoff, lyoff, MySection.ActiveFormat.PlantFormat.FormatData.Font);
+ vt.ToPdf(pdfContentByte, 0, ref tmp, ref tmp);
+ xoff += 132; // columns in 16bit were a little more than 1 3/4 inches.
+ stLineindx = endLineindx;
+ if (stLineindx >= cline.Length) break;
+ while (cline[stLineindx] == ' ' && stLineindx < cline.Length) stLineindx++;
+ if (stLineindx >= cline.Length - 1) endOfLine = true;
+ else
+ {
+ endLineindx = cline.IndexOf(" ", stLineindx);
+ if (endLineindx == -1) endLineindx = cline.Length;
+ }
+ }
+ lyoff = lyoff - vlnPrintObject.SixLinesPerInch;
+ }
+ }
+ if (PageListLayer != null) pdfContentByte.EndLayer();
+ pdfContentByte.RestoreState();
+ }
private void DrawHorizontal(PdfContentByte cb, float left, float right, float yoff)
{
// if there are gaps, check to be sure top isn't a double line box. If it's a box, don't draw the top line.