diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.Designer.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.Designer.cs
new file mode 100644
index 000000000..e7d8ae360
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.Designer.cs
@@ -0,0 +1,86 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ partial class CycleBeginningForm
+ {
+ ///
+ /// 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()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CycleBeginningForm));
+ this.okButton = new System.Windows.Forms.Button();
+ this.orderGroupBox = new System.Windows.Forms.GroupBox();
+ this.orderComboBox = new System.Windows.Forms.ComboBox();
+ this.orderGroupBox.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // okButton
+ //
+ resources.ApplyResources(this.okButton, "okButton");
+ this.okButton.ForeColor = System.Drawing.Color.Black;
+ this.okButton.Name = "okButton";
+ this.okButton.UseVisualStyleBackColor = true;
+ this.okButton.Click += new System.EventHandler(this.okButton_Click);
+ //
+ // orderGroupBox
+ //
+ this.orderGroupBox.Controls.Add(this.orderComboBox);
+ resources.ApplyResources(this.orderGroupBox, "orderGroupBox");
+ this.orderGroupBox.ForeColor = System.Drawing.Color.Black;
+ this.orderGroupBox.Name = "orderGroupBox";
+ this.orderGroupBox.TabStop = false;
+ //
+ // orderComboBox
+ //
+ this.orderComboBox.FormattingEnabled = true;
+ resources.ApplyResources(this.orderComboBox, "orderComboBox");
+ this.orderComboBox.Name = "orderComboBox";
+ //
+ // CycleBeginningForm
+ //
+ resources.ApplyResources(this, "$this");
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.DarkGoldenrod;
+ this.Controls.Add(this.orderGroupBox);
+ this.Controls.Add(this.okButton);
+ this.ForeColor = System.Drawing.Color.Black;
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.Name = "CycleBeginningForm";
+ this.TopMost = true;
+ this.Load += new System.EventHandler(this.CycleBeginningForm_Load);
+ this.orderGroupBox.ResumeLayout(false);
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Button okButton;
+ private System.Windows.Forms.GroupBox orderGroupBox;
+ private System.Windows.Forms.ComboBox orderComboBox;
+ }
+}
\ No newline at end of file
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.cs
new file mode 100644
index 000000000..1a6fbff51
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.cs
@@ -0,0 +1,106 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+using log4net;
+using TBF.Resources;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public partial class CycleBeginningForm : Form, GenericDevices.IHasCompleted
+ {
+ private static readonly ILog log = LogManager.GetLogger(typeof(CycleBeginningForm));
+
+ /// Number of water meters
+ public readonly int WaterMetersCount;
+
+ /// To be retrieved after the form is closed
+ public string PurchaseOrder;
+ public string[] SNText;
+ public bool[] Disabled;
+
+ /// Set to 'true' when the form closes
+ public bool Completed { get { return completed; } }
+ bool completed;
+
+
+ /// Parameterless constructor for common functionality
+ public CycleBeginningForm()
+ {
+ InitializeComponent();
+ completed = false;
+ StartForceCloseHandler();
+ }
+
+
+ ///
+ /// Constructor
+ ///
+ /// Number of text boxes for serial numbers
+ public CycleBeginningForm(int waterMetersCount)
+ : this()
+ {
+ this.WaterMetersCount = waterMetersCount;
+ SNText = null;
+ Disabled = null;
+ }
+
+
+ private void CycleBeginningForm_Load(object sender, EventArgs e)
+ {
+ Text = Strings.Data;
+ orderGroupBox.Text = Strings.Purchase_Order;
+ okButton.Text = Strings.OkBtnText;
+ PrepareOrderCombo(orderComboBox);
+ }
+
+ ///
+ /// Load Purchase order combo box items from the LocalSettings PurchaseOrderHistory array
+ ///
+ /// Puchase order ComboBox
+ void PrepareOrderCombo(ComboBox orderComboBox)
+ {
+ for (int i = 0; i < Program.LocalSettings.PurchaseOrderHistoryCount; i++)
+ {
+ orderComboBox.Items.Add(Program.LocalSettings.PurchaseOrderHistory[i]);
+ }
+
+ if (orderComboBox.Items.Count > 0)
+ {
+ orderComboBox.Text = orderComboBox.Items[0].ToString();
+ }
+ }
+
+
+ private void okButton_Click(object sender, EventArgs e)
+ {
+ PurchaseOrder = orderComboBox.Text;
+ Program.LocalSettings.UpdateHistory(orderComboBox.Text, ref Program.LocalSettings.PurchaseOrderHistory);
+
+ completed = true;
+ Close();
+ }
+
+
+ #region Forced close handling
+
+ public void StartForceCloseHandler()
+ {
+ UiBridge.Bridge.CloseModelessFormHandler += delegate(object sender, EventArgs args)
+ {
+ if (InvokeRequired) { Invoke(new EventHandler(OnForceClose), sender, args); }
+ else OnForceClose(sender, args);
+ };
+ }
+
+ private void OnForceClose(object sender, EventArgs args)
+ {
+ DialogResult = DialogResult.Cancel;
+ Close();
+ }
+
+ #endregion
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.resx b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.resx
new file mode 100644
index 000000000..36ef9cca0
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleBeginningForm.resx
@@ -0,0 +1,218 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ Verdana, 14.25pt
+
+
+ 627, 26
+
+
+ 112, 63
+
+
+
+ 7
+
+
+ OK
+
+
+ okButton
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ 90, 31
+
+
+ 376, 31
+
+
+ 0
+
+
+ orderComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ orderGroupBox
+
+
+ 0
+
+
+ Verdana, 14.25pt
+
+
+ 28, 12
+
+
+ 537, 82
+
+
+ 0
+
+
+ Order
+
+
+ orderGroupBox
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 6, 13
+
+
+ True
+
+
+ 801, 119
+
+
+ Batch data
+
+
+ CycleBeginningForm
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.Designer.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.Designer.cs
new file mode 100644
index 000000000..29d7200af
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.Designer.cs
@@ -0,0 +1,305 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ partial class CycleEndForm
+ {
+ ///
+ /// 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.groupBox2 = new System.Windows.Forms.GroupBox();
+ this.textBox2 = new System.Windows.Forms.TextBox();
+ this.label2 = new System.Windows.Forms.Label();
+ this.groupBox1 = new System.Windows.Forms.GroupBox();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.label1 = new System.Windows.Forms.Label();
+ this.okButton = new System.Windows.Forms.Button();
+ this.groupBox3 = new System.Windows.Forms.GroupBox();
+ this.textBox3 = new System.Windows.Forms.TextBox();
+ this.label3 = new System.Windows.Forms.Label();
+ this.groupBox4 = new System.Windows.Forms.GroupBox();
+ this.textBox4 = new System.Windows.Forms.TextBox();
+ this.label4 = new System.Windows.Forms.Label();
+ this.groupBox5 = new System.Windows.Forms.GroupBox();
+ this.textBox5 = new System.Windows.Forms.TextBox();
+ this.label5 = new System.Windows.Forms.Label();
+ this.groupBox6 = new System.Windows.Forms.GroupBox();
+ this.textBox6 = new System.Windows.Forms.TextBox();
+ this.label6 = new System.Windows.Forms.Label();
+ this.groupBox2.SuspendLayout();
+ this.groupBox1.SuspendLayout();
+ this.groupBox3.SuspendLayout();
+ this.groupBox4.SuspendLayout();
+ this.groupBox5.SuspendLayout();
+ this.groupBox6.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // groupBox2
+ //
+ this.groupBox2.Controls.Add(this.textBox2);
+ this.groupBox2.Controls.Add(this.label2);
+ this.groupBox2.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.groupBox2.ForeColor = System.Drawing.Color.Black;
+ this.groupBox2.Location = new System.Drawing.Point(25, 104);
+ this.groupBox2.Name = "groupBox2";
+ this.groupBox2.Size = new System.Drawing.Size(362, 81);
+ this.groupBox2.TabIndex = 2;
+ this.groupBox2.TabStop = false;
+ this.groupBox2.Text = "Wasserzähler 2";
+ //
+ // textBox2
+ //
+ this.textBox2.Location = new System.Drawing.Point(183, 31);
+ this.textBox2.Name = "textBox2";
+ this.textBox2.Size = new System.Drawing.Size(163, 31);
+ this.textBox2.TabIndex = 1;
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Location = new System.Drawing.Point(18, 34);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(74, 23);
+ this.label2.TabIndex = 0;
+ this.label2.Text = "Stand:";
+ //
+ // groupBox1
+ //
+ this.groupBox1.Controls.Add(this.textBox1);
+ this.groupBox1.Controls.Add(this.label1);
+ this.groupBox1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.groupBox1.ForeColor = System.Drawing.Color.Black;
+ this.groupBox1.Location = new System.Drawing.Point(25, 14);
+ this.groupBox1.Name = "groupBox1";
+ this.groupBox1.Size = new System.Drawing.Size(362, 81);
+ this.groupBox1.TabIndex = 1;
+ this.groupBox1.TabStop = false;
+ this.groupBox1.Text = "Wasserzähler 1";
+ //
+ // textBox1
+ //
+ this.textBox1.Location = new System.Drawing.Point(183, 31);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(163, 31);
+ this.textBox1.TabIndex = 1;
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Location = new System.Drawing.Point(18, 34);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(74, 23);
+ this.label1.TabIndex = 0;
+ this.label1.Text = "Stand:";
+ //
+ // okButton
+ //
+ this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.okButton.ForeColor = System.Drawing.Color.Black;
+ this.okButton.Location = new System.Drawing.Point(425, 23);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(98, 63);
+ this.okButton.TabIndex = 7;
+ this.okButton.Text = "OK";
+ this.okButton.UseVisualStyleBackColor = true;
+ this.okButton.Click += new System.EventHandler(this.okButton_Click);
+ //
+ // groupBox3
+ //
+ this.groupBox3.Controls.Add(this.textBox3);
+ this.groupBox3.Controls.Add(this.label3);
+ this.groupBox3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.groupBox3.ForeColor = System.Drawing.Color.Black;
+ this.groupBox3.Location = new System.Drawing.Point(25, 194);
+ this.groupBox3.Name = "groupBox3";
+ this.groupBox3.Size = new System.Drawing.Size(362, 81);
+ this.groupBox3.TabIndex = 3;
+ this.groupBox3.TabStop = false;
+ this.groupBox3.Text = "Wasserzähler 3";
+ //
+ // textBox3
+ //
+ this.textBox3.Location = new System.Drawing.Point(183, 31);
+ this.textBox3.Name = "textBox3";
+ this.textBox3.Size = new System.Drawing.Size(163, 31);
+ this.textBox3.TabIndex = 1;
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Location = new System.Drawing.Point(18, 34);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(74, 23);
+ this.label3.TabIndex = 0;
+ this.label3.Text = "Stand:";
+ //
+ // groupBox4
+ //
+ this.groupBox4.Controls.Add(this.textBox4);
+ this.groupBox4.Controls.Add(this.label4);
+ this.groupBox4.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.groupBox4.ForeColor = System.Drawing.Color.Black;
+ this.groupBox4.Location = new System.Drawing.Point(25, 284);
+ this.groupBox4.Name = "groupBox4";
+ this.groupBox4.Size = new System.Drawing.Size(362, 81);
+ this.groupBox4.TabIndex = 4;
+ this.groupBox4.TabStop = false;
+ this.groupBox4.Text = "Wasserzähler 4";
+ //
+ // textBox4
+ //
+ this.textBox4.Location = new System.Drawing.Point(183, 31);
+ this.textBox4.Name = "textBox4";
+ this.textBox4.Size = new System.Drawing.Size(163, 31);
+ this.textBox4.TabIndex = 1;
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Location = new System.Drawing.Point(18, 34);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(74, 23);
+ this.label4.TabIndex = 0;
+ this.label4.Text = "Stand:";
+ //
+ // groupBox5
+ //
+ this.groupBox5.Controls.Add(this.textBox5);
+ this.groupBox5.Controls.Add(this.label5);
+ this.groupBox5.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.groupBox5.ForeColor = System.Drawing.Color.Black;
+ this.groupBox5.Location = new System.Drawing.Point(25, 374);
+ this.groupBox5.Name = "groupBox5";
+ this.groupBox5.Size = new System.Drawing.Size(362, 81);
+ this.groupBox5.TabIndex = 5;
+ this.groupBox5.TabStop = false;
+ this.groupBox5.Text = "Wasserzähler 5";
+ //
+ // textBox5
+ //
+ this.textBox5.Location = new System.Drawing.Point(183, 31);
+ this.textBox5.Name = "textBox5";
+ this.textBox5.Size = new System.Drawing.Size(163, 31);
+ this.textBox5.TabIndex = 1;
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Location = new System.Drawing.Point(18, 34);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(74, 23);
+ this.label5.TabIndex = 0;
+ this.label5.Text = "Stand:";
+ //
+ // groupBox6
+ //
+ this.groupBox6.Controls.Add(this.textBox6);
+ this.groupBox6.Controls.Add(this.label6);
+ this.groupBox6.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.groupBox6.ForeColor = System.Drawing.Color.Black;
+ this.groupBox6.Location = new System.Drawing.Point(25, 464);
+ this.groupBox6.Name = "groupBox6";
+ this.groupBox6.Size = new System.Drawing.Size(362, 81);
+ this.groupBox6.TabIndex = 6;
+ this.groupBox6.TabStop = false;
+ this.groupBox6.Text = "Wasserzähler 6";
+ //
+ // textBox6
+ //
+ this.textBox6.Location = new System.Drawing.Point(183, 31);
+ this.textBox6.Name = "textBox6";
+ this.textBox6.Size = new System.Drawing.Size(163, 31);
+ this.textBox6.TabIndex = 1;
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.Location = new System.Drawing.Point(18, 34);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(74, 23);
+ this.label6.TabIndex = 0;
+ this.label6.Text = "Stand:";
+ //
+ // CycleEndForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.DarkGoldenrod;
+ this.ClientSize = new System.Drawing.Size(559, 566);
+ this.Controls.Add(this.groupBox6);
+ this.Controls.Add(this.groupBox5);
+ this.Controls.Add(this.groupBox4);
+ this.Controls.Add(this.groupBox3);
+ this.Controls.Add(this.okButton);
+ this.Controls.Add(this.groupBox2);
+ this.Controls.Add(this.groupBox1);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.Name = "CycleEndForm";
+ this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
+ this.Text = "Daten";
+ this.TopMost = true;
+ this.Load += new System.EventHandler(this.CycleEndForm_Load);
+ this.groupBox2.ResumeLayout(false);
+ this.groupBox2.PerformLayout();
+ this.groupBox1.ResumeLayout(false);
+ this.groupBox1.PerformLayout();
+ this.groupBox3.ResumeLayout(false);
+ this.groupBox3.PerformLayout();
+ this.groupBox4.ResumeLayout(false);
+ this.groupBox4.PerformLayout();
+ this.groupBox5.ResumeLayout(false);
+ this.groupBox5.PerformLayout();
+ this.groupBox6.ResumeLayout(false);
+ this.groupBox6.PerformLayout();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.GroupBox groupBox2;
+ private System.Windows.Forms.TextBox textBox2;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.GroupBox groupBox1;
+ private System.Windows.Forms.TextBox textBox1;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Button okButton;
+ private System.Windows.Forms.GroupBox groupBox3;
+ private System.Windows.Forms.TextBox textBox3;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.GroupBox groupBox4;
+ private System.Windows.Forms.TextBox textBox4;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.GroupBox groupBox5;
+ private System.Windows.Forms.TextBox textBox5;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.GroupBox groupBox6;
+ private System.Windows.Forms.TextBox textBox6;
+ private System.Windows.Forms.Label label6;
+
+ }
+}
\ No newline at end of file
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.cs
new file mode 100644
index 000000000..34010e397
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.cs
@@ -0,0 +1,108 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using System;
+using System.Windows.Forms;
+using log4net;
+using TBF.Resources;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public partial class CycleEndForm : Form, GenericDevices.IHasCompleted
+ {
+ private static readonly ILog log = LogManager.GetLogger(typeof(CycleEndForm));
+
+ /// Number of text boxes for serial numbers
+ public readonly int WaterMetersCount;
+
+ // To be retrieved after the form closes
+ public string[] EndStateText;
+
+ // Set to 'true' when the form closes
+ public bool Completed { get { return completed; } }
+ bool completed;
+
+ ///
+ /// Constructor
+ ///
+ /// Number of text boxes for serial numbers
+ public CycleEndForm(int waterMetersCount)
+ {
+ this.WaterMetersCount = waterMetersCount;
+ InitializeComponent();
+ EndStateText = new string[WaterMetersCount];
+ completed = false;
+ StartForceCloseHandler();
+ }
+
+ /// Parameterless constructor for 3 watermeters
+ public CycleEndForm()
+ : this(3)
+ {
+ }
+
+ private void CycleEndForm_Load(object sender, EventArgs e)
+ {
+ Localize();
+
+ Height = 50 + 90 * WaterMetersCount;
+
+ if (WaterMetersCount < 1) groupBox1.Visible = false;
+ if (WaterMetersCount < 2) groupBox2.Visible = false;
+ if (WaterMetersCount < 3) groupBox3.Visible = false;
+ if (WaterMetersCount < 4) groupBox4.Visible = false;
+ if (WaterMetersCount < 5) groupBox5.Visible = false;
+ if (WaterMetersCount < 6) groupBox6.Visible = false;
+ }
+
+ void Localize()
+ {
+ Text = Strings.Data;
+ groupBox1.Text = Strings.Water_Meter + " 1";
+ groupBox2.Text = Strings.Water_Meter + " 2";
+ groupBox3.Text = Strings.Water_Meter + " 3";
+ groupBox4.Text = Strings.Water_Meter + " 4";
+ groupBox5.Text = Strings.Water_Meter + " 5";
+ groupBox6.Text = Strings.Water_Meter + " 6";
+ label1.Text = Strings.State;
+ label2.Text = Strings.State;
+ label3.Text = Strings.State;
+ label4.Text = Strings.State;
+ label5.Text = Strings.State;
+ label6.Text = Strings.State;
+ okButton.Text = Strings.OkBtnText;
+ }
+
+ private void okButton_Click(object sender, EventArgs e)
+ {
+ if (WaterMetersCount >= 1) EndStateText[0] = textBox1.Text;
+ if (WaterMetersCount >= 2) EndStateText[1] = textBox3.Text;
+ if (WaterMetersCount >= 3) EndStateText[2] = textBox4.Text;
+ if (WaterMetersCount >= 4) EndStateText[3] = textBox5.Text;
+ if (WaterMetersCount >= 5) EndStateText[4] = textBox6.Text;
+ if (WaterMetersCount >= 6) EndStateText[5] = textBox6.Text;
+
+ completed = true;
+ Close();
+ }
+
+ #region Forced close handling
+
+ public void StartForceCloseHandler()
+ {
+ UiBridge.Bridge.CloseModelessFormHandler += delegate(object sender, EventArgs args)
+ {
+ if (InvokeRequired) { Invoke(new EventHandler(OnForceClose), sender, args); }
+ else OnForceClose(sender, args);
+ };
+ }
+
+ void OnForceClose(object sender, EventArgs args)
+ {
+ DialogResult = DialogResult.Cancel;
+ Close();
+ }
+
+ #endregion
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.resx b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.resx
new file mode 100644
index 000000000..1af7de150
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/CycleEndForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryForm.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryForm.cs
new file mode 100644
index 000000000..af99538d4
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryForm.cs
@@ -0,0 +1,276 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using System;
+using System.Collections.Generic;
+using log4net;
+using TBF.BenchControl;
+using TBF.BenchControl.GenericDevices;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public class EntryForm : ComponentBase, IOperation, IDataEntry, IHasCycleBeginForm, IHasCycleEndForm, IHasWMStatesForm
+ {
+ private static readonly ILog log = LogManager.GetLogger(typeof(EntryForm));
+ public override string ToString() { return string.Format("DataEntry.Standard24({0})", Cfg.ToString(1)); }
+
+ readonly EntryFormCfg entryFormCfg;
+
+ ///
+ /// Properties set by the Begin, End and WMStates form
+ ///
+ string purchaseOrder;
+ public string PurchaseOrder { get { return purchaseOrder; } }
+
+ string[] serialNr;
+ public string SerialNr(int wmNr) { return (wmNr >= 0 && wmNr < serialNr.Length) ? serialNr[wmNr] : string.Empty; }
+
+ bool[] disabled;
+ public bool Disabled(int wmNr) { return (wmNr >= 0 && wmNr < disabled.Length) ? disabled[wmNr] : false; }
+
+ string[] wmCycleEndState;
+ public string WMCycleEndState(int wmNr) { return (wmNr >= 0 && wmNr < wmCycleEndState.Length) ? wmCycleEndState[wmNr] : string.Empty; }
+
+ float[] wmStartState;
+ public float WMStartState(int wmNr) { return (wmNr >= 0 && wmNr < wmStartState.Length) ? wmStartState[wmNr] : 0; }
+
+ float[] wmEndState;
+ public float WMEndState(int wmNr) { return (wmNr >= 0 && wmNr < wmEndState.Length) ? wmEndState[wmNr] : 0; }
+
+ string[] wmStartStateStr;
+
+
+ System.Windows.Forms.Form modelessDlg;
+
+ float refVolume;
+ float errLimLo;
+ float errLimHi;
+
+ bool resultSaved; /// Set in Run() when results are saved
+
+ IList waterMeters; /// Passesd as an argument of ShowCycleBeginFormOp/ShowCycleEndFormOp constructor
+
+ public enum CurrentOp
+ {
+ None,
+ ShowFormAtCycleBeginning,
+ ShowFormAtCycleEnd,
+ EnterTestStartStates,
+ EnterTestEndStates,
+ }
+
+ CurrentOp currentOp;
+
+
+ public EntryForm()
+ {
+ }
+
+ public EntryForm(EntryFormCfg cfg)
+ : base(cfg)
+ {
+ serialNr = new string[Program.WMsCount];
+ disabled = new bool[Program.WMsCount];
+ wmStartState = new float[Program.WMsCount];
+ wmStartStateStr = new string[Program.WMsCount];
+ wmEndState = new float[Program.WMsCount];
+ wmCycleEndState = new string[Program.WMsCount];
+
+ entryFormCfg = cfg;
+ currentOp = CurrentOp.None;
+ log.Debug(this.ToString());
+ }
+
+ /// Reference to the operation
+ public IOperation ShowCycleBeginFormOp(IList waterMeters)
+ {
+ if (currentOp != CurrentOp.None) throw new Exception("Sequence error");
+ currentOp = CurrentOp.ShowFormAtCycleBeginning;
+ this.waterMeters = waterMeters;
+ return this;
+ }
+
+ /// Reference to the operation
+ public IOperation ShowCycleEndFormOp(IList waterMeters)
+ {
+ if (currentOp != CurrentOp.None) throw new Exception("Sequence error");
+ currentOp = CurrentOp.ShowFormAtCycleEnd;
+ this.waterMeters = waterMeters;
+ return this;
+ }
+
+ /// Reference to the operation
+ public IOperation ShowTestStartFormOp()
+ {
+ if (currentOp != CurrentOp.None) throw new Exception("Sequence error");
+ currentOp = CurrentOp.EnterTestStartStates;
+ return this;
+ }
+
+ /// Reference to the operation
+ public IOperation ShowTestEndFormOp(float refVolume, float errLimLo, float errLimHi)
+ {
+ if (currentOp != CurrentOp.None) throw new Exception("Sequence error");
+ currentOp = CurrentOp.EnterTestEndStates;
+ this.refVolume = refVolume;
+ this.errLimLo = errLimLo;
+ this.errLimHi = errLimHi;
+ return this;
+ }
+
+ delegate void EntryFormDlgt(EntryForm myRef);
+ ///
+ void OpenBeginningDlg(EntryForm myRef)
+ {
+ myRef.modelessDlg = new CycleBeginningForm(Program.WMsCount);
+ modelessDlg.Show();
+ }
+ ///
+ void OpenEndDlg(EntryForm myRef)
+ {
+ myRef.modelessDlg = new CycleEndForm(Program.WMsCount);
+ modelessDlg.Show();
+ }
+ ///
+ void OpenTestStartStatesDlg(EntryForm myRef)
+ {
+ myRef.modelessDlg = new TestStartEndForm(Program.WMsCount, disabled);
+ modelessDlg.Show();
+ }
+ ///
+ void OpenTestEndStatesDlg(EntryForm myRef)
+ {
+ myRef.modelessDlg = new TestStartEndForm(Program.WMsCount, wmStartStateStr, disabled, refVolume, errLimLo, errLimHi);
+ modelessDlg.Show();
+ }
+
+ /// Start this operation
+ public void Start()
+ {
+ resultSaved = false;
+ switch (currentOp)
+ {
+ case CurrentOp.ShowFormAtCycleBeginning:
+ Program.MainWnd.Invoke(new EntryFormDlgt(OpenBeginningDlg), this);
+ break;
+ case CurrentOp.ShowFormAtCycleEnd:
+ if (entryFormCfg.ShowCycleEndForm)
+ {
+ Program.MainWnd.Invoke(new EntryFormDlgt(OpenEndDlg), this);
+ }
+ break;
+ case CurrentOp.EnterTestStartStates:
+ Program.MainWnd.Invoke(new EntryFormDlgt(OpenTestStartStatesDlg), this);
+ break;
+ case CurrentOp.EnterTestEndStates:
+ Program.MainWnd.Invoke(new EntryFormDlgt(OpenTestEndStatesDlg), this);
+ break;
+ }
+ }
+
+ /// Run this operation
+ /// Event.ResultsPrinted
+ public Event Run()
+ {
+ if ((modelessDlg is IHasCompleted) && !(modelessDlg as IHasCompleted).Completed)
+ {
+ return Event.ModelessFormIsOpen;
+ }
+
+ if (!resultSaved) /// This is to save the result only once
+ {
+ if (currentOp == CurrentOp.ShowFormAtCycleBeginning)
+ {
+ CycleBeginningForm dlg = (modelessDlg as CycleBeginningForm);
+
+ if (dlg != null)
+ {
+ purchaseOrder = dlg.PurchaseOrder;
+
+ for (int i = 0; i < Math.Min(dlg.WaterMetersCount, waterMeters.Count); i++)
+ {
+ if (waterMeters[i] != null)
+ {
+ serialNr[i] = waterMeters[i].SerialNr = dlg.SNText[i];
+ disabled[i] = waterMeters[i].Disabled = dlg.Disabled[i];
+ }
+ }
+ }
+ }
+ else if (currentOp == CurrentOp.ShowFormAtCycleEnd)
+ {
+ CycleEndForm dlg = (modelessDlg as CycleEndForm);
+ int count = waterMeters.Count;
+ if ((dlg != null) && (count > dlg.WaterMetersCount)) count = dlg.WaterMetersCount;
+
+ for (int i = 0; i < count; i++)
+ {
+ if (waterMeters[i] != null)
+ {
+ /// In case entryFormCfg.ShowCycleEndForm == false dlg would be null, values would be string.Empty
+ wmCycleEndState[i] = waterMeters[i].EndState = (dlg != null) ? dlg.EndStateText[i] : string.Empty;
+ }
+ }
+ }
+ else if (modelessDlg is TestStartEndForm && currentOp == CurrentOp.EnterTestStartStates)
+ {
+ /// Fixed start test - start
+ TestStartEndForm dlg = (modelessDlg as TestStartEndForm);
+
+ for (int i = 0; i < dlg.WaterMetersCount; i++)
+ {
+ wmStartState[i] = dlg.WMStartState[i];
+ wmStartStateStr[i] = dlg.WMStartStateStr[i];
+ }
+ }
+ else if (modelessDlg is TestStartEndForm && currentOp == CurrentOp.EnterTestEndStates)
+ {
+ /// Fixed start test - end
+ TestStartEndForm dlg = (modelessDlg as TestStartEndForm);
+
+ for (int i = 0; i < dlg.WaterMetersCount; i++)
+ {
+ wmEndState[i] = dlg.WMEndState[i];
+ }
+ }
+ resultSaved = true;
+ modelessDlg = null;
+ }
+
+ return Event.ModelessFormClosed; /// Form closed
+ }
+
+ /// Stop this operation
+ public void Stop()
+ {
+ if (modelessDlg is IHasCompleted)
+ {
+ UiBridge.Bridge.OnCloseModelessForm(this, null);
+ modelessDlg = null;
+ }
+ currentOp = CurrentOp.None;
+ }
+
+ ///
+ /// Updates test results with the information collected in watermeters.
+ ///
+ /// Watermetes with information entered in the forms
+ /// Test results to be updated with the information
+ public void UpdateTestResults(IList waterMeters, IList testResults)
+ {
+ foreach (var testRslt in testResults)
+ {
+ if (testRslt.MetersKind != Entities.MetersKind.Single) continue;
+
+ testRslt.PurchaseOrder = PurchaseOrder;
+
+ for (int i = 0; i < testRslt.Meters.Count; i++)
+ {
+ testRslt.Meters[i].SerialNr = SerialNr(i);
+ testRslt.Meters[i].Disabled = Disabled(i);
+ testRslt.Meters[i].EndState = WMCycleEndState(i);
+ }
+ }
+ }
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfg.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfg.cs
new file mode 100644
index 000000000..f6d8c0bb0
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfg.cs
@@ -0,0 +1,41 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Xml.Serialization;
+using TBF.BenchControl.Generic;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public class EntryFormCfg : ComponentCfgBase, Generic.IComponentCfg
+ {
+ public IComponent GetComponent(IList components) { return new EntryForm(this); }
+ public IComponentCfgCtrl GetControl() { return new EntryFormCfgCtrl(); }
+
+ ///
+ /// Serialized parameters
+ ///
+ public bool ShowCycleEndForm;
+
+ /// Private parameterless constructor invoked by all other (public) constructors
+ EntryFormCfg()
+ {
+ Name = "DataEntry-Standard-24";
+ ParentName = string.Empty;
+ ShowCycleEndForm = false;
+ }
+
+ public EntryFormCfg(IComponentFactory factory)
+ : this()
+ {
+ this.Factory = factory;
+ }
+
+ public string ToString(int i)
+ {
+ return string.Format("Name={0}, ShowEndForm={1}", Name, ShowCycleEndForm);
+ }
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.cs
new file mode 100644
index 000000000..69dde41b6
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.cs
@@ -0,0 +1,81 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using System;
+using System.Windows.Forms;
+using log4net;
+using TBF.BenchControl.Generic;
+using TBF.Resources;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public partial class EntryFormCfgCtrl : UserControl, IComponentCfgCtrl
+ {
+ static readonly ILog log = LogManager.GetLogger(typeof(EntryFormCfgCtrl));
+
+ public bool ShowMore { get { return false; } }
+
+ EntryFormCfg config;
+ public IComponentCfg Config
+ {
+ get { return config as IComponentCfg; }
+ set
+ {
+ config = value as EntryFormCfg;
+ Redraw();
+ }
+ }
+
+ public EntryFormCfgCtrl()
+ {
+ InitializeComponent();
+ }
+
+ private void EntryFormCfgCtrl_Load(object sender, EventArgs e)
+ {
+ Localize();
+ Redraw();
+ }
+
+ void Localize()
+ {
+ showCycleEndFormCheckBox.Text = Strings.Show_cycle_end_form;
+ }
+
+ public void Closing()
+ {
+ }
+
+ void Redraw()
+ {
+ if (config == null) return; /// Control was not loaded, settings were not changed
+ classNameLabel.Text = config.Factory.ClassName;
+ nameTextBox.Text = config.Name;
+ showCycleEndFormCheckBox.Checked = config.ShowCycleEndForm;
+ }
+
+ public void Unlock()
+ {
+ nameTextBox.Enabled = true;
+ showCycleEndFormCheckBox.Enabled = true;
+ }
+
+ public CfgUpdateFlags VerifyCfg(ref string message)
+ {
+ CfgUpdateFlags flags = CfgUpdateFlags.None;
+ return flags;
+ }
+
+ public CfgUpdateFlags UpdateCfg()
+ {
+ CfgUpdateFlags flags = CfgUpdateFlags.RestartRqrd;
+
+ if (config == null) return CfgUpdateFlags.Error; /// Control was not loaded, settings were not changed
+
+ config.Name = nameTextBox.Text;
+ config.ShowCycleEndForm = showCycleEndFormCheckBox.Checked;
+
+ return flags;
+ }
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.designer.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.designer.cs
new file mode 100644
index 000000000..9f8354358
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.designer.cs
@@ -0,0 +1,100 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ partial class EntryFormCfgCtrl
+ {
+ ///
+ /// 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 Component Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.nameTextBox = new System.Windows.Forms.TextBox();
+ this.nameLabel = new System.Windows.Forms.Label();
+ this.classNameLabel = new System.Windows.Forms.Label();
+ this.showCycleEndFormCheckBox = new System.Windows.Forms.CheckBox();
+ this.SuspendLayout();
+ //
+ // nameTextBox
+ //
+ this.nameTextBox.Enabled = false;
+ this.nameTextBox.Location = new System.Drawing.Point(131, 57);
+ this.nameTextBox.Name = "nameTextBox";
+ this.nameTextBox.Size = new System.Drawing.Size(130, 20);
+ this.nameTextBox.TabIndex = 5;
+ //
+ // nameLabel
+ //
+ this.nameLabel.AutoSize = true;
+ this.nameLabel.Location = new System.Drawing.Point(32, 60);
+ this.nameLabel.Name = "nameLabel";
+ this.nameLabel.Size = new System.Drawing.Size(35, 13);
+ this.nameLabel.TabIndex = 4;
+ this.nameLabel.Text = "Name";
+ //
+ // classNameLabel
+ //
+ this.classNameLabel.AutoSize = true;
+ this.classNameLabel.Location = new System.Drawing.Point(128, 32);
+ this.classNameLabel.Name = "classNameLabel";
+ this.classNameLabel.Size = new System.Drawing.Size(83, 13);
+ this.classNameLabel.TabIndex = 3;
+ this.classNameLabel.Text = "ComonentName";
+ //
+ // showCycleEndFormCheckBox
+ //
+ this.showCycleEndFormCheckBox.AutoSize = true;
+ this.showCycleEndFormCheckBox.Enabled = false;
+ this.showCycleEndFormCheckBox.Location = new System.Drawing.Point(131, 90);
+ this.showCycleEndFormCheckBox.Name = "showCycleEndFormCheckBox";
+ this.showCycleEndFormCheckBox.Size = new System.Drawing.Size(125, 17);
+ this.showCycleEndFormCheckBox.TabIndex = 13;
+ this.showCycleEndFormCheckBox.Text = "Show cycle end form";
+ this.showCycleEndFormCheckBox.UseVisualStyleBackColor = true;
+ //
+ // EntryFormCfgCtrl
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.showCycleEndFormCheckBox);
+ this.Controls.Add(this.nameTextBox);
+ this.Controls.Add(this.nameLabel);
+ this.Controls.Add(this.classNameLabel);
+ this.Name = "EntryFormCfgCtrl";
+ this.Size = new System.Drawing.Size(300, 200);
+ this.Load += new System.EventHandler(this.EntryFormCfgCtrl_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.TextBox nameTextBox;
+ private System.Windows.Forms.Label nameLabel;
+ private System.Windows.Forms.Label classNameLabel;
+ private System.Windows.Forms.CheckBox showCycleEndFormCheckBox;
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.resx b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.resx
new file mode 100644
index 000000000..1af7de150
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormCfgCtrl.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormFactory.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormFactory.cs
new file mode 100644
index 000000000..e1d91f3ec
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/EntryFormFactory.cs
@@ -0,0 +1,23 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using TBF.BenchControl.Generic;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public class EntryFormFactory : IComponentFactory
+ {
+ public string ClassName { get { return "DataEntry-Standard-24"; } }
+
+ public void ResetStaticProperties() { EntryForm.ResetStaticProperties(); }
+
+ public IComponent DummyComponent() { return new EntryForm(); }
+
+ public IComponentCfg DefaultConfig() { return new EntryFormCfg(this); }
+
+ public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
+ {
+ return ComponentCfgBase.CreateFromDbEntity(typeof(EntryFormCfg), component, this);
+ }
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.cs
new file mode 100644
index 000000000..df489b825
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.cs
@@ -0,0 +1,649 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+using log4net;
+using TBF.Resources;
+
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ public partial class TestStartEndForm : Form, GenericDevices.IHasCompleted
+ {
+ private static readonly ILog log = LogManager.GetLogger(typeof(TestStartEndForm));
+
+ // Set to 'true' when the form closes
+ public bool Completed { get { return completed; } }
+ bool completed;
+
+ /// Number of text boxes for serial numbers
+ public readonly int WaterMetersCount;
+
+ readonly bool[] disabled;
+
+ // To be retrieved after the form closes
+ public float[] WMStartState;
+
+ // To be retrieved after the form closes
+ public readonly string[] WMStartStateStr;
+
+ // To be retrieved after the form closes
+ public float[] WMEndState;
+
+ bool endStates; /// false=start states, true=end states
+ float refVolume;
+ float warningLimLo; /// limit to display exclamation mark, typically 2x errLimLo
+ float warningLimHi; /// limit to display exclamation mark, typically 2x errLimHi
+
+ int TextBoxesCount;
+ ///
+ Label[] labels;
+ TextBox[] startTextBoxes;
+ TextBox[] endTextBoxes;
+ IList enabledTextBoxes;
+
+ ///
+ /// Parameterless constructor initializing common part for start and endstate form
+ ///
+ public TestStartEndForm()
+ {
+ InitializeComponent();
+
+ TextBoxesCount = 24;
+
+ labels = new Label[]
+ {
+ label1, label2, label3, label4, label5, label6, label7, label8, label9, label10,
+ label11, label12, label13, label14, label15, label16, label17, label18, label19, label20,
+ label21, label22, label23, label24,
+ };
+ startTextBoxes = new TextBox[]
+ {
+ startTextBox1, startTextBox2, startTextBox3, startTextBox4, startTextBox5, startTextBox6,
+ startTextBox7, startTextBox8, startTextBox9, startTextBox10, startTextBox11, startTextBox12,
+ startTextBox13, startTextBox14, startTextBox15, startTextBox16, startTextBox17, startTextBox18,
+ startTextBox19, startTextBox20, startTextBox21, startTextBox22, startTextBox23, startTextBox24,
+ };
+ endTextBoxes = new TextBox[]
+ {
+ endTextBox1, endTextBox2, endTextBox3, endTextBox4, endTextBox5, endTextBox6,
+ endTextBox7, endTextBox8, endTextBox9, endTextBox10, endTextBox11, endTextBox12,
+ endTextBox13, endTextBox14, endTextBox15, endTextBox16, endTextBox17, endTextBox18,
+ endTextBox19, endTextBox20, endTextBox21, endTextBox22, endTextBox23, endTextBox24,
+ };
+ enabledTextBoxes = new List();
+
+ completed = false;
+ StartForceCloseHandler();
+ }
+
+ ///
+ /// Constructor to fill in start states
+ ///
+ /// Number of water meters
+ /// Information from CycleBeginningForm about availability of water meters
+ public TestStartEndForm(int waterMetersCount, bool[] disabled)
+ : this()
+ {
+ endStates = false;
+
+ this.WaterMetersCount = waterMetersCount;
+ this.disabled = disabled;
+
+ ShuffleTextBoxes();
+
+ WMStartState = new float[waterMetersCount];
+ WMStartStateStr = new string[waterMetersCount];
+ }
+
+ ///
+ /// Constructor to fill in end states
+ ///
+ /// Number of water meters
+ /// Information entered on test start
+ /// Information from CycleBeginningForm about availability of water meters
+ /// Reference volume, it is used to verify the end state, show/hide exclamation if necessary
+ /// Error limit low, it is used to verify the end state, show/hide exclamation if necessary
+ /// Error limit high, it is used to verify the end state, show/hide exclamation if necessary
+ public TestStartEndForm(int waterMetersCount, string[] wmStartStateStr, bool[] disabled,
+ float refVolume, float errLimLo, float errLimHi)
+ : this()
+ {
+ endStates = true;
+
+ this.WaterMetersCount = waterMetersCount;
+ if (wmStartStateStr == null || wmStartStateStr.Length != waterMetersCount)
+ throw (new Exception("Invalid 'wmStartStateStr' argument"));
+ this.WMStartStateStr = wmStartStateStr;
+ this.disabled = disabled;
+ this.refVolume = refVolume;
+ this.warningLimLo = 2 * errLimLo;
+ this.warningLimHi = 2 * errLimHi;
+
+ ShuffleTextBoxes();
+
+ WMEndState = new float[waterMetersCount];
+ }
+
+ ///
+ /// Make sure the layout of labels/text boxes on the screen
+ /// corresponds to the layout of watermeters of the test bench.
+ ///
+ void ShuffleTextBoxes()
+ {
+ if (Program.WMsCount < TextBoxesCount)
+ {
+ int nrLines = Program.WMsCount / Program.LineSize;
+ int gap = (TextBoxesCount - Program.WMsCount) / nrLines;
+
+ int dest = 0;
+ for (int l = 0; l < nrLines; l++)
+ {
+ for (int i = 0; i < Program.LineSize; i++)
+ {
+ labels[dest] = labels[l * Program.LineSize + l * gap + i];
+ startTextBoxes[dest] = startTextBoxes[l * Program.LineSize + l * gap + i];
+ endTextBoxes[dest] = endTextBoxes[l * Program.LineSize + l * gap + i];
+ dest++;
+ }
+ }
+ TextBoxesCount = Program.WMsCount;
+ }
+ }
+
+ private void CycleEndForm_Load(object sender, EventArgs e)
+ {
+ Localize();
+
+ //Height = 115 + 90 * WaterMetersCount;
+
+ for (int i = 0; i < TextBoxesCount; i++)
+ {
+ if (i < WaterMetersCount)
+ {
+ labels[i].Visible = startTextBoxes[i].Visible = endTextBoxes[i].Visible = true;
+ }
+ }
+
+ if (endStates)
+ {
+ for (int i = 0; i < TextBoxesCount; i++)
+ {
+ if (WMStartStateStr != null && i < WMStartStateStr.Length)
+ {
+ startTextBoxes[i].Text = WMStartStateStr[i];
+ }
+
+ if (disabled != null && i < disabled.Length && disabled[i])
+ {
+ endTextBoxes[i].Enabled = false;
+ }
+ else
+ {
+ endTextBoxes[i].Enabled = true;
+ enabledTextBoxes.Add(endTextBoxes[i]);
+ }
+ }
+ }
+ else
+ {
+ for (int i = 0; i < TextBoxesCount; i++)
+ {
+ if (disabled != null && i < disabled.Length && disabled[i])
+ {
+ startTextBoxes[i].Enabled = false;
+ }
+ else
+ {
+ startTextBoxes[i].Enabled = true;
+ enabledTextBoxes.Add(startTextBoxes[i]);
+ }
+ }
+ }
+ }
+
+ void Localize()
+ {
+ Text = Strings.Water_Meter_States;
+ for (int i = 0; i < TextBoxesCount; i++)
+ {
+ labels[i].Text = Strings.Water_Meter + " " + (i + 1).ToString();
+ }
+ startLabel.Text = Strings.Start;
+ endLabel.Text = Strings.End;
+ okButton.Text = Strings.OkBtnText;
+ }
+
+ private void okButton_Click(object sender, EventArgs eArgs)
+ {
+ try
+ {
+ if (endStates)
+ {
+ for (int i = 0; i < Math.Min(WaterMetersCount, TextBoxesCount); i++)
+ {
+ if (endTextBoxes[i].Visible && endTextBoxes[i].Enabled)
+ {
+ WMEndState[i] = Utils.ParseUFloat(endTextBoxes[i].Text);
+ }
+ }
+ }
+ else
+ {
+ for (int i = 0; i < Math.Min(WaterMetersCount, TextBoxesCount); i++)
+ {
+ if (startTextBoxes[i].Visible && startTextBoxes[i].Enabled)
+ {
+ WMStartStateStr[i] = startTextBoxes[i].Text;
+ WMStartState[i] = Utils.ParseUFloat(startTextBoxes[i].Text);
+ }
+ }
+ }
+ }
+ catch(Exception e)
+ {
+ log.ErrorFormat("Exception: {0}", e.Message);
+ return;
+ }
+
+ completed = true;
+ Close();
+ }
+
+ #region Forced close handling
+
+ public void StartForceCloseHandler()
+ {
+ UiBridge.Bridge.CloseModelessFormHandler += delegate(object sender, EventArgs args)
+ {
+ if (InvokeRequired) { Invoke(new EventHandler(OnForceClose), sender, args); }
+ else OnForceClose(sender, args);
+ };
+ }
+
+ void OnForceClose(object sender, EventArgs args)
+ {
+ DialogResult = DialogResult.Cancel;
+ Close();
+ }
+
+ #endregion
+
+ ///
+ /// Calculate the approximate error and verify whether it is within limits.
+ /// Make an exclamation mark visible if out of range.
+ /// Similar event handler is implemented for all endTextBoxes (1..24).
+ ///
+ private void endTextBox1_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox1.Text);
+ float startState = Utils.ParseUFloat(startTextBox1.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { };
+ exclamation1.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox2_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox2.Text);
+ float startState = Utils.ParseUFloat(startTextBox2.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation2.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox3_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox3.Text);
+ float startState = Utils.ParseUFloat(startTextBox3.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation3.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox4_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox4.Text);
+ float startState = Utils.ParseUFloat(startTextBox4.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation4.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox5_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox5.Text);
+ float startState = Utils.ParseUFloat(startTextBox5.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation5.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox6_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox6.Text);
+ float startState = Utils.ParseUFloat(startTextBox6.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation6.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox7_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox7.Text);
+ float startState = Utils.ParseUFloat(startTextBox7.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation7.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox8_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox8.Text);
+ float startState = Utils.ParseUFloat(startTextBox8.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation8.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox9_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox9.Text);
+ float startState = Utils.ParseUFloat(startTextBox9.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation9.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+
+ private void endTextBox10_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox10.Text);
+ float startState = Utils.ParseUFloat(startTextBox10.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation10.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+
+ private void endTextBox11_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox11.Text);
+ float startState = Utils.ParseUFloat(startTextBox11.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation11.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox12_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox12.Text);
+ float startState = Utils.ParseUFloat(startTextBox12.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation12.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox13_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox13.Text);
+ float startState = Utils.ParseUFloat(startTextBox13.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation13.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox14_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox14.Text);
+ float startState = Utils.ParseUFloat(startTextBox14.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation14.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox15_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox15.Text);
+ float startState = Utils.ParseUFloat(startTextBox15.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation15.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox16_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox16.Text);
+ float startState = Utils.ParseUFloat(startTextBox16.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation16.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox17_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox17.Text);
+ float startState = Utils.ParseUFloat(startTextBox17.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation17.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox18_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox18.Text);
+ float startState = Utils.ParseUFloat(startTextBox18.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation18.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox19_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox19.Text);
+ float startState = Utils.ParseUFloat(startTextBox19.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation19.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox20_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox20.Text);
+ float startState = Utils.ParseUFloat(startTextBox20.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation20.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox21_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox21.Text);
+ float startState = Utils.ParseUFloat(startTextBox21.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation21.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox22_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox22.Text);
+ float startState = Utils.ParseUFloat(startTextBox22.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation22.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox23_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox23.Text);
+ float startState = Utils.ParseUFloat(startTextBox23.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation23.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+ private void endTextBox24_TextChanged(object sender, EventArgs e)
+ {
+ float err = 0;
+ try
+ {
+ float endState = Utils.ParseUFloat(endTextBox24.Text);
+ float startState = Utils.ParseUFloat(startTextBox24.Text);
+ err = 100.0f * (endState - startState - refVolume) / refVolume;
+ }
+ catch { err = 1000.0f; };
+ exclamation24.Visible = (err < warningLimLo) || (warningLimHi < err);
+ }
+
+ ///
+ /// Process a key press within any enabled text boxe
+ ///
+ ///
+ ///
+ /// TextBox control which received the event
+ private void ProcKeyPress(object sender, KeyPressEventArgs e, TextBox currentFocusOwner)
+ {
+ if (e.KeyChar == '+')
+ {
+ /// Process '+' key ..... Form completed
+ okButton_Click(sender, e);
+ }
+ if (e.KeyChar == '\r')
+ {
+ /// Process key ..... Next text field
+ if (enabledTextBoxes.Count < 2) return; /// There is just one enabled textbox
+
+ for (int i = 0; i < enabledTextBoxes.Count; i++)
+ {
+ if (enabledTextBoxes[i] == currentFocusOwner)
+ {
+ /// Change focus to the next enabled text box
+ enabledTextBoxes[(i + 1) % enabledTextBoxes.Count].Focus();
+ return;
+ }
+ }
+ }
+ }
+
+ private void startTextBox1_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox1); }
+ private void startTextBox2_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox2); }
+ private void startTextBox3_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox3); }
+ private void startTextBox4_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox4); }
+ private void startTextBox5_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox5); }
+ private void startTextBox6_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox6); }
+ private void startTextBox7_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox7); }
+ private void startTextBox8_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox8); }
+ private void startTextBox9_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox9); }
+ private void startTextBox10_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox10); }
+ private void startTextBox11_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox11); }
+ private void startTextBox12_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox12); }
+ private void startTextBox13_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox13); }
+ private void startTextBox14_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox14); }
+ private void startTextBox15_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox15); }
+ private void startTextBox16_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox16); }
+ private void startTextBox17_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox17); }
+ private void startTextBox18_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox18); }
+ private void startTextBox19_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox19); }
+ private void startTextBox20_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox20); }
+ private void startTextBox21_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox21); }
+ private void startTextBox22_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox22); }
+ private void startTextBox23_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox23); }
+ private void startTextBox24_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, startTextBox24); }
+
+ private void endTextBox1_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox1); }
+ private void endTextBox2_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox2); }
+ private void endTextBox3_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox3); }
+ private void endTextBox4_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox4); }
+ private void endTextBox5_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox5); }
+ private void endTextBox6_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox6); }
+ private void endTextBox7_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox7); }
+ private void endTextBox8_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox8); }
+ private void endTextBox9_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox9); }
+ private void endTextBox10_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox10); }
+ private void endTextBox11_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox11); }
+ private void endTextBox12_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox12); }
+ private void endTextBox13_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox13); }
+ private void endTextBox14_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox14); }
+ private void endTextBox15_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox15); }
+ private void endTextBox16_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox16); }
+ private void endTextBox17_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox17); }
+ private void endTextBox18_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox18); }
+ private void endTextBox19_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox19); }
+ private void endTextBox20_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox20); }
+ private void endTextBox21_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox21); }
+ private void endTextBox22_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox22); }
+ private void endTextBox23_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox23); }
+ private void endTextBox24_KeyPress(object sndr, KeyPressEventArgs e) { ProcKeyPress(sndr, e, endTextBox24); }
+ }
+}
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.designer.cs b/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.designer.cs
new file mode 100644
index 000000000..e14bd5406
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.designer.cs
@@ -0,0 +1,1516 @@
+///
+/// Copyright (c) 2015 Sensus Metering Systems
+///
+namespace TBF.BenchControl.DataEntry.iPerl
+{
+ partial class TestStartEndForm
+ {
+ ///
+ /// 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.exclamation1 = new System.Windows.Forms.Label();
+ this.startTextBox1 = new System.Windows.Forms.TextBox();
+ this.endTextBox1 = new System.Windows.Forms.TextBox();
+ this.label1 = new System.Windows.Forms.Label();
+ this.okButton = new System.Windows.Forms.Button();
+ this.exclamation3 = new System.Windows.Forms.Label();
+ this.startTextBox3 = new System.Windows.Forms.TextBox();
+ this.endTextBox3 = new System.Windows.Forms.TextBox();
+ this.label3 = new System.Windows.Forms.Label();
+ this.exclamation4 = new System.Windows.Forms.Label();
+ this.startTextBox4 = new System.Windows.Forms.TextBox();
+ this.endTextBox4 = new System.Windows.Forms.TextBox();
+ this.label4 = new System.Windows.Forms.Label();
+ this.exclamation5 = new System.Windows.Forms.Label();
+ this.startTextBox5 = new System.Windows.Forms.TextBox();
+ this.endTextBox5 = new System.Windows.Forms.TextBox();
+ this.label5 = new System.Windows.Forms.Label();
+ this.exclamation6 = new System.Windows.Forms.Label();
+ this.startTextBox6 = new System.Windows.Forms.TextBox();
+ this.endTextBox6 = new System.Windows.Forms.TextBox();
+ this.label6 = new System.Windows.Forms.Label();
+ this.startLabel = new System.Windows.Forms.Label();
+ this.endLabel = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.endTextBox2 = new System.Windows.Forms.TextBox();
+ this.startTextBox2 = new System.Windows.Forms.TextBox();
+ this.exclamation2 = new System.Windows.Forms.Label();
+ this.exclamation7 = new System.Windows.Forms.Label();
+ this.startTextBox7 = new System.Windows.Forms.TextBox();
+ this.endTextBox7 = new System.Windows.Forms.TextBox();
+ this.label7 = new System.Windows.Forms.Label();
+ this.exclamation8 = new System.Windows.Forms.Label();
+ this.startTextBox8 = new System.Windows.Forms.TextBox();
+ this.endTextBox8 = new System.Windows.Forms.TextBox();
+ this.label8 = new System.Windows.Forms.Label();
+ this.exclamation9 = new System.Windows.Forms.Label();
+ this.startTextBox9 = new System.Windows.Forms.TextBox();
+ this.endTextBox9 = new System.Windows.Forms.TextBox();
+ this.label9 = new System.Windows.Forms.Label();
+ this.exclamation10 = new System.Windows.Forms.Label();
+ this.startTextBox10 = new System.Windows.Forms.TextBox();
+ this.endTextBox10 = new System.Windows.Forms.TextBox();
+ this.label10 = new System.Windows.Forms.Label();
+ this.exclamation11 = new System.Windows.Forms.Label();
+ this.startTextBox11 = new System.Windows.Forms.TextBox();
+ this.endTextBox11 = new System.Windows.Forms.TextBox();
+ this.label11 = new System.Windows.Forms.Label();
+ this.exclamation12 = new System.Windows.Forms.Label();
+ this.startTextBox12 = new System.Windows.Forms.TextBox();
+ this.endTextBox12 = new System.Windows.Forms.TextBox();
+ this.label12 = new System.Windows.Forms.Label();
+ this.exclamation24 = new System.Windows.Forms.Label();
+ this.startTextBox24 = new System.Windows.Forms.TextBox();
+ this.endTextBox24 = new System.Windows.Forms.TextBox();
+ this.label24 = new System.Windows.Forms.Label();
+ this.exclamation23 = new System.Windows.Forms.Label();
+ this.startTextBox23 = new System.Windows.Forms.TextBox();
+ this.endTextBox23 = new System.Windows.Forms.TextBox();
+ this.label23 = new System.Windows.Forms.Label();
+ this.exclamation22 = new System.Windows.Forms.Label();
+ this.startTextBox22 = new System.Windows.Forms.TextBox();
+ this.endTextBox22 = new System.Windows.Forms.TextBox();
+ this.label22 = new System.Windows.Forms.Label();
+ this.exclamation21 = new System.Windows.Forms.Label();
+ this.startTextBox21 = new System.Windows.Forms.TextBox();
+ this.endTextBox21 = new System.Windows.Forms.TextBox();
+ this.label21 = new System.Windows.Forms.Label();
+ this.exclamation20 = new System.Windows.Forms.Label();
+ this.startTextBox20 = new System.Windows.Forms.TextBox();
+ this.endTextBox20 = new System.Windows.Forms.TextBox();
+ this.label20 = new System.Windows.Forms.Label();
+ this.exclamation19 = new System.Windows.Forms.Label();
+ this.startTextBox19 = new System.Windows.Forms.TextBox();
+ this.endTextBox19 = new System.Windows.Forms.TextBox();
+ this.label19 = new System.Windows.Forms.Label();
+ this.exclamation18 = new System.Windows.Forms.Label();
+ this.exclamation17 = new System.Windows.Forms.Label();
+ this.startTextBox18 = new System.Windows.Forms.TextBox();
+ this.exclamation16 = new System.Windows.Forms.Label();
+ this.endTextBox18 = new System.Windows.Forms.TextBox();
+ this.label18 = new System.Windows.Forms.Label();
+ this.startTextBox17 = new System.Windows.Forms.TextBox();
+ this.exclamation15 = new System.Windows.Forms.Label();
+ this.endTextBox17 = new System.Windows.Forms.TextBox();
+ this.label17 = new System.Windows.Forms.Label();
+ this.startTextBox16 = new System.Windows.Forms.TextBox();
+ this.exclamation14 = new System.Windows.Forms.Label();
+ this.endTextBox16 = new System.Windows.Forms.TextBox();
+ this.label16 = new System.Windows.Forms.Label();
+ this.startTextBox15 = new System.Windows.Forms.TextBox();
+ this.exclamation13 = new System.Windows.Forms.Label();
+ this.endTextBox15 = new System.Windows.Forms.TextBox();
+ this.label15 = new System.Windows.Forms.Label();
+ this.startTextBox14 = new System.Windows.Forms.TextBox();
+ this.label35 = new System.Windows.Forms.Label();
+ this.endTextBox14 = new System.Windows.Forms.TextBox();
+ this.label14 = new System.Windows.Forms.Label();
+ this.startTextBox13 = new System.Windows.Forms.TextBox();
+ this.label37 = new System.Windows.Forms.Label();
+ this.endTextBox13 = new System.Windows.Forms.TextBox();
+ this.label13 = new System.Windows.Forms.Label();
+ this.SuspendLayout();
+ //
+ // exclamation1
+ //
+ this.exclamation1.AutoSize = true;
+ this.exclamation1.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation1.ForeColor = System.Drawing.Color.Red;
+ this.exclamation1.Location = new System.Drawing.Point(532, 56);
+ this.exclamation1.Name = "exclamation1";
+ this.exclamation1.Size = new System.Drawing.Size(30, 38);
+ this.exclamation1.TabIndex = 5;
+ this.exclamation1.Text = "!";
+ this.exclamation1.Visible = false;
+ //
+ // startTextBox1
+ //
+ this.startTextBox1.Enabled = false;
+ this.startTextBox1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox1.Location = new System.Drawing.Point(185, 60);
+ this.startTextBox1.Name = "startTextBox1";
+ this.startTextBox1.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox1.TabIndex = 3;
+ this.startTextBox1.Visible = false;
+ this.startTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox1_KeyPress);
+ //
+ // endTextBox1
+ //
+ this.endTextBox1.Enabled = false;
+ this.endTextBox1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox1.Location = new System.Drawing.Point(367, 60);
+ this.endTextBox1.Name = "endTextBox1";
+ this.endTextBox1.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox1.TabIndex = 4;
+ this.endTextBox1.Visible = false;
+ this.endTextBox1.TextChanged += new System.EventHandler(this.endTextBox1_TextChanged);
+ this.endTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox1_KeyPress);
+ //
+ // label1
+ //
+ this.label1.AutoSize = true;
+ this.label1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label1.Location = new System.Drawing.Point(23, 63);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(145, 23);
+ this.label1.TabIndex = 2;
+ this.label1.Text = "Water Meter 1";
+ this.label1.Visible = false;
+ //
+ // okButton
+ //
+ this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.okButton.ForeColor = System.Drawing.Color.Black;
+ this.okButton.Location = new System.Drawing.Point(1159, 60);
+ this.okButton.Name = "okButton";
+ this.okButton.Size = new System.Drawing.Size(98, 63);
+ this.okButton.TabIndex = 100;
+ this.okButton.Text = "OK";
+ this.okButton.UseVisualStyleBackColor = true;
+ this.okButton.Click += new System.EventHandler(this.okButton_Click);
+ //
+ // exclamation3
+ //
+ this.exclamation3.AutoSize = true;
+ this.exclamation3.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation3.ForeColor = System.Drawing.Color.Red;
+ this.exclamation3.Location = new System.Drawing.Point(532, 144);
+ this.exclamation3.Name = "exclamation3";
+ this.exclamation3.Size = new System.Drawing.Size(30, 38);
+ this.exclamation3.TabIndex = 13;
+ this.exclamation3.Text = "!";
+ this.exclamation3.Visible = false;
+ //
+ // startTextBox3
+ //
+ this.startTextBox3.Enabled = false;
+ this.startTextBox3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox3.Location = new System.Drawing.Point(185, 148);
+ this.startTextBox3.Name = "startTextBox3";
+ this.startTextBox3.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox3.TabIndex = 11;
+ this.startTextBox3.Visible = false;
+ this.startTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox3_KeyPress);
+ //
+ // endTextBox3
+ //
+ this.endTextBox3.Enabled = false;
+ this.endTextBox3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox3.Location = new System.Drawing.Point(367, 148);
+ this.endTextBox3.Name = "endTextBox3";
+ this.endTextBox3.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox3.TabIndex = 12;
+ this.endTextBox3.Visible = false;
+ this.endTextBox3.TextChanged += new System.EventHandler(this.endTextBox3_TextChanged);
+ this.endTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox3_KeyPress);
+ //
+ // label3
+ //
+ this.label3.AutoSize = true;
+ this.label3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label3.Location = new System.Drawing.Point(23, 151);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(145, 23);
+ this.label3.TabIndex = 10;
+ this.label3.Text = "Water Meter 3";
+ this.label3.Visible = false;
+ //
+ // exclamation4
+ //
+ this.exclamation4.AutoSize = true;
+ this.exclamation4.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation4.ForeColor = System.Drawing.Color.Red;
+ this.exclamation4.Location = new System.Drawing.Point(532, 188);
+ this.exclamation4.Name = "exclamation4";
+ this.exclamation4.Size = new System.Drawing.Size(30, 38);
+ this.exclamation4.TabIndex = 17;
+ this.exclamation4.Text = "!";
+ this.exclamation4.Visible = false;
+ //
+ // startTextBox4
+ //
+ this.startTextBox4.Enabled = false;
+ this.startTextBox4.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox4.Location = new System.Drawing.Point(185, 192);
+ this.startTextBox4.Name = "startTextBox4";
+ this.startTextBox4.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox4.TabIndex = 15;
+ this.startTextBox4.Visible = false;
+ this.startTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox4_KeyPress);
+ //
+ // endTextBox4
+ //
+ this.endTextBox4.Enabled = false;
+ this.endTextBox4.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox4.Location = new System.Drawing.Point(367, 192);
+ this.endTextBox4.Name = "endTextBox4";
+ this.endTextBox4.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox4.TabIndex = 16;
+ this.endTextBox4.Visible = false;
+ this.endTextBox4.TextChanged += new System.EventHandler(this.endTextBox4_TextChanged);
+ this.endTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox4_KeyPress);
+ //
+ // label4
+ //
+ this.label4.AutoSize = true;
+ this.label4.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label4.Location = new System.Drawing.Point(23, 195);
+ this.label4.Name = "label4";
+ this.label4.Size = new System.Drawing.Size(145, 23);
+ this.label4.TabIndex = 14;
+ this.label4.Text = "Water Meter 4";
+ this.label4.Visible = false;
+ //
+ // exclamation5
+ //
+ this.exclamation5.AutoSize = true;
+ this.exclamation5.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation5.ForeColor = System.Drawing.Color.Red;
+ this.exclamation5.Location = new System.Drawing.Point(532, 232);
+ this.exclamation5.Name = "exclamation5";
+ this.exclamation5.Size = new System.Drawing.Size(30, 38);
+ this.exclamation5.TabIndex = 21;
+ this.exclamation5.Text = "!";
+ this.exclamation5.Visible = false;
+ //
+ // startTextBox5
+ //
+ this.startTextBox5.Enabled = false;
+ this.startTextBox5.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox5.Location = new System.Drawing.Point(185, 236);
+ this.startTextBox5.Name = "startTextBox5";
+ this.startTextBox5.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox5.TabIndex = 19;
+ this.startTextBox5.Visible = false;
+ this.startTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox5_KeyPress);
+ //
+ // endTextBox5
+ //
+ this.endTextBox5.Enabled = false;
+ this.endTextBox5.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox5.Location = new System.Drawing.Point(367, 236);
+ this.endTextBox5.Name = "endTextBox5";
+ this.endTextBox5.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox5.TabIndex = 20;
+ this.endTextBox5.Visible = false;
+ this.endTextBox5.TextChanged += new System.EventHandler(this.endTextBox5_TextChanged);
+ this.endTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox5_KeyPress);
+ //
+ // label5
+ //
+ this.label5.AutoSize = true;
+ this.label5.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label5.Location = new System.Drawing.Point(23, 239);
+ this.label5.Name = "label5";
+ this.label5.Size = new System.Drawing.Size(145, 23);
+ this.label5.TabIndex = 18;
+ this.label5.Text = "Water Meter 5";
+ this.label5.Visible = false;
+ //
+ // exclamation6
+ //
+ this.exclamation6.AutoSize = true;
+ this.exclamation6.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation6.ForeColor = System.Drawing.Color.Red;
+ this.exclamation6.Location = new System.Drawing.Point(532, 276);
+ this.exclamation6.Name = "exclamation6";
+ this.exclamation6.Size = new System.Drawing.Size(30, 38);
+ this.exclamation6.TabIndex = 25;
+ this.exclamation6.Text = "!";
+ this.exclamation6.Visible = false;
+ //
+ // startTextBox6
+ //
+ this.startTextBox6.Enabled = false;
+ this.startTextBox6.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox6.Location = new System.Drawing.Point(185, 280);
+ this.startTextBox6.Name = "startTextBox6";
+ this.startTextBox6.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox6.TabIndex = 23;
+ this.startTextBox6.Visible = false;
+ this.startTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox6_KeyPress);
+ //
+ // endTextBox6
+ //
+ this.endTextBox6.Enabled = false;
+ this.endTextBox6.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox6.Location = new System.Drawing.Point(367, 280);
+ this.endTextBox6.Name = "endTextBox6";
+ this.endTextBox6.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox6.TabIndex = 24;
+ this.endTextBox6.Visible = false;
+ this.endTextBox6.TextChanged += new System.EventHandler(this.endTextBox6_TextChanged);
+ this.endTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox6_KeyPress);
+ //
+ // label6
+ //
+ this.label6.AutoSize = true;
+ this.label6.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label6.Location = new System.Drawing.Point(23, 283);
+ this.label6.Name = "label6";
+ this.label6.Size = new System.Drawing.Size(145, 23);
+ this.label6.TabIndex = 22;
+ this.label6.Text = "Water Meter 6";
+ this.label6.Visible = false;
+ //
+ // startLabel
+ //
+ this.startLabel.AutoSize = true;
+ this.startLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startLabel.Location = new System.Drawing.Point(237, 21);
+ this.startLabel.Name = "startLabel";
+ this.startLabel.Size = new System.Drawing.Size(56, 23);
+ this.startLabel.TabIndex = 0;
+ this.startLabel.Text = "Start";
+ //
+ // endLabel
+ //
+ this.endLabel.AutoSize = true;
+ this.endLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endLabel.Location = new System.Drawing.Point(423, 21);
+ this.endLabel.Name = "endLabel";
+ this.endLabel.Size = new System.Drawing.Size(46, 23);
+ this.endLabel.TabIndex = 1;
+ this.endLabel.Text = "End";
+ //
+ // label2
+ //
+ this.label2.AutoSize = true;
+ this.label2.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label2.Location = new System.Drawing.Point(23, 107);
+ this.label2.Name = "label2";
+ this.label2.Size = new System.Drawing.Size(145, 23);
+ this.label2.TabIndex = 6;
+ this.label2.Text = "Water Meter 2";
+ this.label2.Visible = false;
+ //
+ // endTextBox2
+ //
+ this.endTextBox2.Enabled = false;
+ this.endTextBox2.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox2.Location = new System.Drawing.Point(367, 104);
+ this.endTextBox2.Name = "endTextBox2";
+ this.endTextBox2.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox2.TabIndex = 8;
+ this.endTextBox2.Visible = false;
+ this.endTextBox2.TextChanged += new System.EventHandler(this.endTextBox2_TextChanged);
+ this.endTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox2_KeyPress);
+ //
+ // startTextBox2
+ //
+ this.startTextBox2.Enabled = false;
+ this.startTextBox2.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox2.Location = new System.Drawing.Point(185, 104);
+ this.startTextBox2.Name = "startTextBox2";
+ this.startTextBox2.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox2.TabIndex = 7;
+ this.startTextBox2.Visible = false;
+ this.startTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox2_KeyPress);
+ //
+ // exclamation2
+ //
+ this.exclamation2.AutoSize = true;
+ this.exclamation2.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation2.ForeColor = System.Drawing.Color.Red;
+ this.exclamation2.Location = new System.Drawing.Point(532, 100);
+ this.exclamation2.Name = "exclamation2";
+ this.exclamation2.Size = new System.Drawing.Size(30, 38);
+ this.exclamation2.TabIndex = 9;
+ this.exclamation2.Text = "!";
+ this.exclamation2.Visible = false;
+ //
+ // exclamation7
+ //
+ this.exclamation7.AutoSize = true;
+ this.exclamation7.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation7.ForeColor = System.Drawing.Color.Red;
+ this.exclamation7.Location = new System.Drawing.Point(532, 320);
+ this.exclamation7.Name = "exclamation7";
+ this.exclamation7.Size = new System.Drawing.Size(30, 38);
+ this.exclamation7.TabIndex = 29;
+ this.exclamation7.Text = "!";
+ this.exclamation7.Visible = false;
+ //
+ // startTextBox7
+ //
+ this.startTextBox7.Enabled = false;
+ this.startTextBox7.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox7.Location = new System.Drawing.Point(185, 324);
+ this.startTextBox7.Name = "startTextBox7";
+ this.startTextBox7.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox7.TabIndex = 27;
+ this.startTextBox7.Visible = false;
+ this.startTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox7_KeyPress);
+ //
+ // endTextBox7
+ //
+ this.endTextBox7.Enabled = false;
+ this.endTextBox7.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox7.Location = new System.Drawing.Point(367, 324);
+ this.endTextBox7.Name = "endTextBox7";
+ this.endTextBox7.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox7.TabIndex = 28;
+ this.endTextBox7.Visible = false;
+ this.endTextBox7.TextChanged += new System.EventHandler(this.endTextBox7_TextChanged);
+ this.endTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox7_KeyPress);
+ //
+ // label7
+ //
+ this.label7.AutoSize = true;
+ this.label7.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label7.Location = new System.Drawing.Point(23, 327);
+ this.label7.Name = "label7";
+ this.label7.Size = new System.Drawing.Size(145, 23);
+ this.label7.TabIndex = 26;
+ this.label7.Text = "Water Meter 7";
+ this.label7.Visible = false;
+ //
+ // exclamation8
+ //
+ this.exclamation8.AutoSize = true;
+ this.exclamation8.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation8.ForeColor = System.Drawing.Color.Red;
+ this.exclamation8.Location = new System.Drawing.Point(532, 364);
+ this.exclamation8.Name = "exclamation8";
+ this.exclamation8.Size = new System.Drawing.Size(30, 38);
+ this.exclamation8.TabIndex = 33;
+ this.exclamation8.Text = "!";
+ this.exclamation8.Visible = false;
+ //
+ // startTextBox8
+ //
+ this.startTextBox8.Enabled = false;
+ this.startTextBox8.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox8.Location = new System.Drawing.Point(185, 368);
+ this.startTextBox8.Name = "startTextBox8";
+ this.startTextBox8.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox8.TabIndex = 31;
+ this.startTextBox8.Visible = false;
+ this.startTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox8_KeyPress);
+ //
+ // endTextBox8
+ //
+ this.endTextBox8.Enabled = false;
+ this.endTextBox8.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox8.Location = new System.Drawing.Point(367, 368);
+ this.endTextBox8.Name = "endTextBox8";
+ this.endTextBox8.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox8.TabIndex = 32;
+ this.endTextBox8.Visible = false;
+ this.endTextBox8.TextChanged += new System.EventHandler(this.endTextBox8_TextChanged);
+ this.endTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox8_KeyPress);
+ //
+ // label8
+ //
+ this.label8.AutoSize = true;
+ this.label8.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label8.Location = new System.Drawing.Point(23, 371);
+ this.label8.Name = "label8";
+ this.label8.Size = new System.Drawing.Size(145, 23);
+ this.label8.TabIndex = 30;
+ this.label8.Text = "Water Meter 8";
+ this.label8.Visible = false;
+ //
+ // exclamation9
+ //
+ this.exclamation9.AutoSize = true;
+ this.exclamation9.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation9.ForeColor = System.Drawing.Color.Red;
+ this.exclamation9.Location = new System.Drawing.Point(532, 408);
+ this.exclamation9.Name = "exclamation9";
+ this.exclamation9.Size = new System.Drawing.Size(30, 38);
+ this.exclamation9.TabIndex = 37;
+ this.exclamation9.Text = "!";
+ this.exclamation9.Visible = false;
+ //
+ // startTextBox9
+ //
+ this.startTextBox9.Enabled = false;
+ this.startTextBox9.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox9.Location = new System.Drawing.Point(185, 412);
+ this.startTextBox9.Name = "startTextBox9";
+ this.startTextBox9.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox9.TabIndex = 35;
+ this.startTextBox9.Visible = false;
+ this.startTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox9_KeyPress);
+ //
+ // endTextBox9
+ //
+ this.endTextBox9.Enabled = false;
+ this.endTextBox9.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox9.Location = new System.Drawing.Point(367, 412);
+ this.endTextBox9.Name = "endTextBox9";
+ this.endTextBox9.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox9.TabIndex = 36;
+ this.endTextBox9.Visible = false;
+ this.endTextBox9.TextChanged += new System.EventHandler(this.endTextBox9_TextChanged);
+ this.endTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox9_KeyPress);
+ //
+ // label9
+ //
+ this.label9.AutoSize = true;
+ this.label9.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label9.Location = new System.Drawing.Point(23, 415);
+ this.label9.Name = "label9";
+ this.label9.Size = new System.Drawing.Size(145, 23);
+ this.label9.TabIndex = 34;
+ this.label9.Text = "Water Meter 9";
+ this.label9.Visible = false;
+ //
+ // exclamation10
+ //
+ this.exclamation10.AutoSize = true;
+ this.exclamation10.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation10.ForeColor = System.Drawing.Color.Red;
+ this.exclamation10.Location = new System.Drawing.Point(532, 452);
+ this.exclamation10.Name = "exclamation10";
+ this.exclamation10.Size = new System.Drawing.Size(30, 38);
+ this.exclamation10.TabIndex = 41;
+ this.exclamation10.Text = "!";
+ this.exclamation10.Visible = false;
+ //
+ // startTextBox10
+ //
+ this.startTextBox10.Enabled = false;
+ this.startTextBox10.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox10.Location = new System.Drawing.Point(185, 456);
+ this.startTextBox10.Name = "startTextBox10";
+ this.startTextBox10.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox10.TabIndex = 39;
+ this.startTextBox10.Visible = false;
+ this.startTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox10_KeyPress);
+ //
+ // endTextBox10
+ //
+ this.endTextBox10.Enabled = false;
+ this.endTextBox10.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox10.Location = new System.Drawing.Point(367, 456);
+ this.endTextBox10.Name = "endTextBox10";
+ this.endTextBox10.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox10.TabIndex = 40;
+ this.endTextBox10.Visible = false;
+ this.endTextBox10.TextChanged += new System.EventHandler(this.endTextBox10_TextChanged);
+ this.endTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox10_KeyPress);
+ //
+ // label10
+ //
+ this.label10.AutoSize = true;
+ this.label10.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label10.Location = new System.Drawing.Point(23, 459);
+ this.label10.Name = "label10";
+ this.label10.Size = new System.Drawing.Size(157, 23);
+ this.label10.TabIndex = 38;
+ this.label10.Text = "Water Meter 10";
+ this.label10.Visible = false;
+ //
+ // exclamation11
+ //
+ this.exclamation11.AutoSize = true;
+ this.exclamation11.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation11.ForeColor = System.Drawing.Color.Red;
+ this.exclamation11.Location = new System.Drawing.Point(532, 496);
+ this.exclamation11.Name = "exclamation11";
+ this.exclamation11.Size = new System.Drawing.Size(30, 38);
+ this.exclamation11.TabIndex = 45;
+ this.exclamation11.Text = "!";
+ this.exclamation11.Visible = false;
+ //
+ // startTextBox11
+ //
+ this.startTextBox11.Enabled = false;
+ this.startTextBox11.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox11.Location = new System.Drawing.Point(185, 500);
+ this.startTextBox11.Name = "startTextBox11";
+ this.startTextBox11.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox11.TabIndex = 43;
+ this.startTextBox11.Visible = false;
+ this.startTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox11_KeyPress);
+ //
+ // endTextBox11
+ //
+ this.endTextBox11.Enabled = false;
+ this.endTextBox11.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox11.Location = new System.Drawing.Point(367, 500);
+ this.endTextBox11.Name = "endTextBox11";
+ this.endTextBox11.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox11.TabIndex = 44;
+ this.endTextBox11.Visible = false;
+ this.endTextBox11.TextChanged += new System.EventHandler(this.endTextBox11_TextChanged);
+ this.endTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox11_KeyPress);
+ //
+ // label11
+ //
+ this.label11.AutoSize = true;
+ this.label11.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label11.Location = new System.Drawing.Point(23, 503);
+ this.label11.Name = "label11";
+ this.label11.Size = new System.Drawing.Size(157, 23);
+ this.label11.TabIndex = 42;
+ this.label11.Text = "Water Meter 11";
+ this.label11.Visible = false;
+ //
+ // exclamation12
+ //
+ this.exclamation12.AutoSize = true;
+ this.exclamation12.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation12.ForeColor = System.Drawing.Color.Red;
+ this.exclamation12.Location = new System.Drawing.Point(532, 540);
+ this.exclamation12.Name = "exclamation12";
+ this.exclamation12.Size = new System.Drawing.Size(30, 38);
+ this.exclamation12.TabIndex = 49;
+ this.exclamation12.Text = "!";
+ this.exclamation12.Visible = false;
+ //
+ // startTextBox12
+ //
+ this.startTextBox12.Enabled = false;
+ this.startTextBox12.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox12.Location = new System.Drawing.Point(185, 544);
+ this.startTextBox12.Name = "startTextBox12";
+ this.startTextBox12.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox12.TabIndex = 47;
+ this.startTextBox12.Visible = false;
+ this.startTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox12_KeyPress);
+ //
+ // endTextBox12
+ //
+ this.endTextBox12.Enabled = false;
+ this.endTextBox12.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox12.Location = new System.Drawing.Point(367, 544);
+ this.endTextBox12.Name = "endTextBox12";
+ this.endTextBox12.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox12.TabIndex = 48;
+ this.endTextBox12.Visible = false;
+ this.endTextBox12.TextChanged += new System.EventHandler(this.endTextBox12_TextChanged);
+ this.endTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox12_KeyPress);
+ //
+ // label12
+ //
+ this.label12.AutoSize = true;
+ this.label12.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label12.Location = new System.Drawing.Point(23, 547);
+ this.label12.Name = "label12";
+ this.label12.Size = new System.Drawing.Size(157, 23);
+ this.label12.TabIndex = 46;
+ this.label12.Text = "Water Meter 12";
+ this.label12.Visible = false;
+ //
+ // exclamation24
+ //
+ this.exclamation24.AutoSize = true;
+ this.exclamation24.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation24.ForeColor = System.Drawing.Color.Red;
+ this.exclamation24.Location = new System.Drawing.Point(1101, 540);
+ this.exclamation24.Name = "exclamation24";
+ this.exclamation24.Size = new System.Drawing.Size(30, 38);
+ this.exclamation24.TabIndex = 99;
+ this.exclamation24.Text = "!";
+ this.exclamation24.Visible = false;
+ //
+ // startTextBox24
+ //
+ this.startTextBox24.Enabled = false;
+ this.startTextBox24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox24.Location = new System.Drawing.Point(754, 544);
+ this.startTextBox24.Name = "startTextBox24";
+ this.startTextBox24.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox24.TabIndex = 97;
+ this.startTextBox24.Visible = false;
+ this.startTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox24_KeyPress);
+ //
+ // endTextBox24
+ //
+ this.endTextBox24.Enabled = false;
+ this.endTextBox24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox24.Location = new System.Drawing.Point(936, 544);
+ this.endTextBox24.Name = "endTextBox24";
+ this.endTextBox24.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox24.TabIndex = 98;
+ this.endTextBox24.Visible = false;
+ this.endTextBox24.TextChanged += new System.EventHandler(this.endTextBox24_TextChanged);
+ this.endTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox24_KeyPress);
+ //
+ // label24
+ //
+ this.label24.AutoSize = true;
+ this.label24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label24.Location = new System.Drawing.Point(592, 547);
+ this.label24.Name = "label24";
+ this.label24.Size = new System.Drawing.Size(157, 23);
+ this.label24.TabIndex = 96;
+ this.label24.Text = "Water Meter 24";
+ this.label24.Visible = false;
+ //
+ // exclamation23
+ //
+ this.exclamation23.AutoSize = true;
+ this.exclamation23.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation23.ForeColor = System.Drawing.Color.Red;
+ this.exclamation23.Location = new System.Drawing.Point(1101, 496);
+ this.exclamation23.Name = "exclamation23";
+ this.exclamation23.Size = new System.Drawing.Size(30, 38);
+ this.exclamation23.TabIndex = 95;
+ this.exclamation23.Text = "!";
+ this.exclamation23.Visible = false;
+ //
+ // startTextBox23
+ //
+ this.startTextBox23.Enabled = false;
+ this.startTextBox23.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox23.Location = new System.Drawing.Point(754, 500);
+ this.startTextBox23.Name = "startTextBox23";
+ this.startTextBox23.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox23.TabIndex = 93;
+ this.startTextBox23.Visible = false;
+ this.startTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox23_KeyPress);
+ //
+ // endTextBox23
+ //
+ this.endTextBox23.Enabled = false;
+ this.endTextBox23.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox23.Location = new System.Drawing.Point(936, 500);
+ this.endTextBox23.Name = "endTextBox23";
+ this.endTextBox23.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox23.TabIndex = 94;
+ this.endTextBox23.Visible = false;
+ this.endTextBox23.TextChanged += new System.EventHandler(this.endTextBox23_TextChanged);
+ this.endTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox23_KeyPress);
+ //
+ // label23
+ //
+ this.label23.AutoSize = true;
+ this.label23.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label23.Location = new System.Drawing.Point(592, 503);
+ this.label23.Name = "label23";
+ this.label23.Size = new System.Drawing.Size(157, 23);
+ this.label23.TabIndex = 92;
+ this.label23.Text = "Water Meter 23";
+ this.label23.Visible = false;
+ //
+ // exclamation22
+ //
+ this.exclamation22.AutoSize = true;
+ this.exclamation22.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation22.ForeColor = System.Drawing.Color.Red;
+ this.exclamation22.Location = new System.Drawing.Point(1101, 452);
+ this.exclamation22.Name = "exclamation22";
+ this.exclamation22.Size = new System.Drawing.Size(30, 38);
+ this.exclamation22.TabIndex = 91;
+ this.exclamation22.Text = "!";
+ this.exclamation22.Visible = false;
+ //
+ // startTextBox22
+ //
+ this.startTextBox22.Enabled = false;
+ this.startTextBox22.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox22.Location = new System.Drawing.Point(754, 456);
+ this.startTextBox22.Name = "startTextBox22";
+ this.startTextBox22.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox22.TabIndex = 89;
+ this.startTextBox22.Visible = false;
+ this.startTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox22_KeyPress);
+ //
+ // endTextBox22
+ //
+ this.endTextBox22.Enabled = false;
+ this.endTextBox22.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox22.Location = new System.Drawing.Point(936, 456);
+ this.endTextBox22.Name = "endTextBox22";
+ this.endTextBox22.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox22.TabIndex = 90;
+ this.endTextBox22.Visible = false;
+ this.endTextBox22.TextChanged += new System.EventHandler(this.endTextBox22_TextChanged);
+ this.endTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox22_KeyPress);
+ //
+ // label22
+ //
+ this.label22.AutoSize = true;
+ this.label22.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label22.Location = new System.Drawing.Point(592, 459);
+ this.label22.Name = "label22";
+ this.label22.Size = new System.Drawing.Size(157, 23);
+ this.label22.TabIndex = 88;
+ this.label22.Text = "Water Meter 22";
+ this.label22.Visible = false;
+ //
+ // exclamation21
+ //
+ this.exclamation21.AutoSize = true;
+ this.exclamation21.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation21.ForeColor = System.Drawing.Color.Red;
+ this.exclamation21.Location = new System.Drawing.Point(1101, 408);
+ this.exclamation21.Name = "exclamation21";
+ this.exclamation21.Size = new System.Drawing.Size(30, 38);
+ this.exclamation21.TabIndex = 87;
+ this.exclamation21.Text = "!";
+ this.exclamation21.Visible = false;
+ //
+ // startTextBox21
+ //
+ this.startTextBox21.Enabled = false;
+ this.startTextBox21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox21.Location = new System.Drawing.Point(754, 412);
+ this.startTextBox21.Name = "startTextBox21";
+ this.startTextBox21.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox21.TabIndex = 85;
+ this.startTextBox21.Visible = false;
+ this.startTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox21_KeyPress);
+ //
+ // endTextBox21
+ //
+ this.endTextBox21.Enabled = false;
+ this.endTextBox21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox21.Location = new System.Drawing.Point(936, 412);
+ this.endTextBox21.Name = "endTextBox21";
+ this.endTextBox21.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox21.TabIndex = 86;
+ this.endTextBox21.Visible = false;
+ this.endTextBox21.TextChanged += new System.EventHandler(this.endTextBox21_TextChanged);
+ this.endTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox21_KeyPress);
+ //
+ // label21
+ //
+ this.label21.AutoSize = true;
+ this.label21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label21.Location = new System.Drawing.Point(592, 415);
+ this.label21.Name = "label21";
+ this.label21.Size = new System.Drawing.Size(157, 23);
+ this.label21.TabIndex = 84;
+ this.label21.Text = "Water Meter 21";
+ this.label21.Visible = false;
+ //
+ // exclamation20
+ //
+ this.exclamation20.AutoSize = true;
+ this.exclamation20.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation20.ForeColor = System.Drawing.Color.Red;
+ this.exclamation20.Location = new System.Drawing.Point(1101, 364);
+ this.exclamation20.Name = "exclamation20";
+ this.exclamation20.Size = new System.Drawing.Size(30, 38);
+ this.exclamation20.TabIndex = 83;
+ this.exclamation20.Text = "!";
+ this.exclamation20.Visible = false;
+ //
+ // startTextBox20
+ //
+ this.startTextBox20.Enabled = false;
+ this.startTextBox20.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox20.Location = new System.Drawing.Point(754, 368);
+ this.startTextBox20.Name = "startTextBox20";
+ this.startTextBox20.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox20.TabIndex = 81;
+ this.startTextBox20.Visible = false;
+ this.startTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox20_KeyPress);
+ //
+ // endTextBox20
+ //
+ this.endTextBox20.Enabled = false;
+ this.endTextBox20.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox20.Location = new System.Drawing.Point(936, 368);
+ this.endTextBox20.Name = "endTextBox20";
+ this.endTextBox20.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox20.TabIndex = 82;
+ this.endTextBox20.Visible = false;
+ this.endTextBox20.TextChanged += new System.EventHandler(this.endTextBox20_TextChanged);
+ this.endTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox20_KeyPress);
+ //
+ // label20
+ //
+ this.label20.AutoSize = true;
+ this.label20.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label20.Location = new System.Drawing.Point(592, 371);
+ this.label20.Name = "label20";
+ this.label20.Size = new System.Drawing.Size(157, 23);
+ this.label20.TabIndex = 80;
+ this.label20.Text = "Water Meter 20";
+ this.label20.Visible = false;
+ //
+ // exclamation19
+ //
+ this.exclamation19.AutoSize = true;
+ this.exclamation19.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation19.ForeColor = System.Drawing.Color.Red;
+ this.exclamation19.Location = new System.Drawing.Point(1101, 320);
+ this.exclamation19.Name = "exclamation19";
+ this.exclamation19.Size = new System.Drawing.Size(30, 38);
+ this.exclamation19.TabIndex = 79;
+ this.exclamation19.Text = "!";
+ this.exclamation19.Visible = false;
+ //
+ // startTextBox19
+ //
+ this.startTextBox19.Enabled = false;
+ this.startTextBox19.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox19.Location = new System.Drawing.Point(754, 324);
+ this.startTextBox19.Name = "startTextBox19";
+ this.startTextBox19.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox19.TabIndex = 77;
+ this.startTextBox19.Visible = false;
+ this.startTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox19_KeyPress);
+ //
+ // endTextBox19
+ //
+ this.endTextBox19.Enabled = false;
+ this.endTextBox19.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox19.Location = new System.Drawing.Point(936, 324);
+ this.endTextBox19.Name = "endTextBox19";
+ this.endTextBox19.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox19.TabIndex = 78;
+ this.endTextBox19.Visible = false;
+ this.endTextBox19.TextChanged += new System.EventHandler(this.endTextBox19_TextChanged);
+ this.endTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox19_KeyPress);
+ //
+ // label19
+ //
+ this.label19.AutoSize = true;
+ this.label19.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label19.Location = new System.Drawing.Point(592, 327);
+ this.label19.Name = "label19";
+ this.label19.Size = new System.Drawing.Size(157, 23);
+ this.label19.TabIndex = 76;
+ this.label19.Text = "Water Meter 19";
+ this.label19.Visible = false;
+ //
+ // exclamation18
+ //
+ this.exclamation18.AutoSize = true;
+ this.exclamation18.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation18.ForeColor = System.Drawing.Color.Red;
+ this.exclamation18.Location = new System.Drawing.Point(1101, 276);
+ this.exclamation18.Name = "exclamation18";
+ this.exclamation18.Size = new System.Drawing.Size(30, 38);
+ this.exclamation18.TabIndex = 75;
+ this.exclamation18.Text = "!";
+ this.exclamation18.Visible = false;
+ //
+ // exclamation17
+ //
+ this.exclamation17.AutoSize = true;
+ this.exclamation17.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation17.ForeColor = System.Drawing.Color.Red;
+ this.exclamation17.Location = new System.Drawing.Point(1101, 232);
+ this.exclamation17.Name = "exclamation17";
+ this.exclamation17.Size = new System.Drawing.Size(30, 38);
+ this.exclamation17.TabIndex = 71;
+ this.exclamation17.Text = "!";
+ this.exclamation17.Visible = false;
+ //
+ // startTextBox18
+ //
+ this.startTextBox18.Enabled = false;
+ this.startTextBox18.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox18.Location = new System.Drawing.Point(754, 280);
+ this.startTextBox18.Name = "startTextBox18";
+ this.startTextBox18.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox18.TabIndex = 73;
+ this.startTextBox18.Visible = false;
+ this.startTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox18_KeyPress);
+ //
+ // exclamation16
+ //
+ this.exclamation16.AutoSize = true;
+ this.exclamation16.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation16.ForeColor = System.Drawing.Color.Red;
+ this.exclamation16.Location = new System.Drawing.Point(1101, 188);
+ this.exclamation16.Name = "exclamation16";
+ this.exclamation16.Size = new System.Drawing.Size(30, 38);
+ this.exclamation16.TabIndex = 67;
+ this.exclamation16.Text = "!";
+ this.exclamation16.Visible = false;
+ //
+ // endTextBox18
+ //
+ this.endTextBox18.Enabled = false;
+ this.endTextBox18.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox18.Location = new System.Drawing.Point(936, 280);
+ this.endTextBox18.Name = "endTextBox18";
+ this.endTextBox18.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox18.TabIndex = 74;
+ this.endTextBox18.Visible = false;
+ this.endTextBox18.TextChanged += new System.EventHandler(this.endTextBox18_TextChanged);
+ this.endTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox18_KeyPress);
+ //
+ // label18
+ //
+ this.label18.AutoSize = true;
+ this.label18.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label18.Location = new System.Drawing.Point(592, 283);
+ this.label18.Name = "label18";
+ this.label18.Size = new System.Drawing.Size(157, 23);
+ this.label18.TabIndex = 72;
+ this.label18.Text = "Water Meter 18";
+ this.label18.Visible = false;
+ //
+ // startTextBox17
+ //
+ this.startTextBox17.Enabled = false;
+ this.startTextBox17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox17.Location = new System.Drawing.Point(754, 236);
+ this.startTextBox17.Name = "startTextBox17";
+ this.startTextBox17.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox17.TabIndex = 69;
+ this.startTextBox17.Visible = false;
+ this.startTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox17_KeyPress);
+ //
+ // exclamation15
+ //
+ this.exclamation15.AutoSize = true;
+ this.exclamation15.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation15.ForeColor = System.Drawing.Color.Red;
+ this.exclamation15.Location = new System.Drawing.Point(1101, 144);
+ this.exclamation15.Name = "exclamation15";
+ this.exclamation15.Size = new System.Drawing.Size(30, 38);
+ this.exclamation15.TabIndex = 63;
+ this.exclamation15.Text = "!";
+ this.exclamation15.Visible = false;
+ //
+ // endTextBox17
+ //
+ this.endTextBox17.Enabled = false;
+ this.endTextBox17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox17.Location = new System.Drawing.Point(936, 236);
+ this.endTextBox17.Name = "endTextBox17";
+ this.endTextBox17.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox17.TabIndex = 70;
+ this.endTextBox17.Visible = false;
+ this.endTextBox17.TextChanged += new System.EventHandler(this.endTextBox17_TextChanged);
+ this.endTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox17_KeyPress);
+ //
+ // label17
+ //
+ this.label17.AutoSize = true;
+ this.label17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label17.Location = new System.Drawing.Point(592, 239);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(157, 23);
+ this.label17.TabIndex = 68;
+ this.label17.Text = "Water Meter 17";
+ this.label17.Visible = false;
+ //
+ // startTextBox16
+ //
+ this.startTextBox16.Enabled = false;
+ this.startTextBox16.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox16.Location = new System.Drawing.Point(754, 192);
+ this.startTextBox16.Name = "startTextBox16";
+ this.startTextBox16.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox16.TabIndex = 65;
+ this.startTextBox16.Visible = false;
+ this.startTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox16_KeyPress);
+ //
+ // exclamation14
+ //
+ this.exclamation14.AutoSize = true;
+ this.exclamation14.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation14.ForeColor = System.Drawing.Color.Red;
+ this.exclamation14.Location = new System.Drawing.Point(1101, 100);
+ this.exclamation14.Name = "exclamation14";
+ this.exclamation14.Size = new System.Drawing.Size(30, 38);
+ this.exclamation14.TabIndex = 59;
+ this.exclamation14.Text = "!";
+ this.exclamation14.Visible = false;
+ //
+ // endTextBox16
+ //
+ this.endTextBox16.Enabled = false;
+ this.endTextBox16.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox16.Location = new System.Drawing.Point(936, 192);
+ this.endTextBox16.Name = "endTextBox16";
+ this.endTextBox16.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox16.TabIndex = 66;
+ this.endTextBox16.Visible = false;
+ this.endTextBox16.TextChanged += new System.EventHandler(this.endTextBox16_TextChanged);
+ this.endTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox16_KeyPress);
+ //
+ // label16
+ //
+ this.label16.AutoSize = true;
+ this.label16.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label16.Location = new System.Drawing.Point(592, 195);
+ this.label16.Name = "label16";
+ this.label16.Size = new System.Drawing.Size(157, 23);
+ this.label16.TabIndex = 64;
+ this.label16.Text = "Water Meter 16";
+ this.label16.Visible = false;
+ //
+ // startTextBox15
+ //
+ this.startTextBox15.Enabled = false;
+ this.startTextBox15.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox15.Location = new System.Drawing.Point(754, 148);
+ this.startTextBox15.Name = "startTextBox15";
+ this.startTextBox15.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox15.TabIndex = 61;
+ this.startTextBox15.Visible = false;
+ this.startTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox15_KeyPress);
+ //
+ // exclamation13
+ //
+ this.exclamation13.AutoSize = true;
+ this.exclamation13.Font = new System.Drawing.Font("Verdana", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.exclamation13.ForeColor = System.Drawing.Color.Red;
+ this.exclamation13.Location = new System.Drawing.Point(1101, 56);
+ this.exclamation13.Name = "exclamation13";
+ this.exclamation13.Size = new System.Drawing.Size(30, 38);
+ this.exclamation13.TabIndex = 55;
+ this.exclamation13.Text = "!";
+ this.exclamation13.Visible = false;
+ //
+ // endTextBox15
+ //
+ this.endTextBox15.Enabled = false;
+ this.endTextBox15.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox15.Location = new System.Drawing.Point(936, 148);
+ this.endTextBox15.Name = "endTextBox15";
+ this.endTextBox15.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox15.TabIndex = 62;
+ this.endTextBox15.Visible = false;
+ this.endTextBox15.TextChanged += new System.EventHandler(this.endTextBox15_TextChanged);
+ this.endTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox15_KeyPress);
+ //
+ // label15
+ //
+ this.label15.AutoSize = true;
+ this.label15.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label15.Location = new System.Drawing.Point(592, 151);
+ this.label15.Name = "label15";
+ this.label15.Size = new System.Drawing.Size(157, 23);
+ this.label15.TabIndex = 60;
+ this.label15.Text = "Water Meter 15";
+ this.label15.Visible = false;
+ //
+ // startTextBox14
+ //
+ this.startTextBox14.Enabled = false;
+ this.startTextBox14.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox14.Location = new System.Drawing.Point(754, 104);
+ this.startTextBox14.Name = "startTextBox14";
+ this.startTextBox14.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox14.TabIndex = 57;
+ this.startTextBox14.Visible = false;
+ this.startTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox14_KeyPress);
+ //
+ // label35
+ //
+ this.label35.AutoSize = true;
+ this.label35.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label35.Location = new System.Drawing.Point(992, 21);
+ this.label35.Name = "label35";
+ this.label35.Size = new System.Drawing.Size(46, 23);
+ this.label35.TabIndex = 51;
+ this.label35.Text = "End";
+ //
+ // endTextBox14
+ //
+ this.endTextBox14.Enabled = false;
+ this.endTextBox14.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox14.Location = new System.Drawing.Point(936, 104);
+ this.endTextBox14.Name = "endTextBox14";
+ this.endTextBox14.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox14.TabIndex = 58;
+ this.endTextBox14.Visible = false;
+ this.endTextBox14.TextChanged += new System.EventHandler(this.endTextBox14_TextChanged);
+ this.endTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox14_KeyPress);
+ //
+ // label14
+ //
+ this.label14.AutoSize = true;
+ this.label14.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label14.Location = new System.Drawing.Point(592, 107);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(157, 23);
+ this.label14.TabIndex = 56;
+ this.label14.Text = "Water Meter 14";
+ this.label14.Visible = false;
+ //
+ // startTextBox13
+ //
+ this.startTextBox13.Enabled = false;
+ this.startTextBox13.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.startTextBox13.Location = new System.Drawing.Point(754, 60);
+ this.startTextBox13.Name = "startTextBox13";
+ this.startTextBox13.Size = new System.Drawing.Size(163, 31);
+ this.startTextBox13.TabIndex = 53;
+ this.startTextBox13.Visible = false;
+ this.startTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox13_KeyPress);
+ //
+ // label37
+ //
+ this.label37.AutoSize = true;
+ this.label37.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label37.Location = new System.Drawing.Point(806, 21);
+ this.label37.Name = "label37";
+ this.label37.Size = new System.Drawing.Size(56, 23);
+ this.label37.TabIndex = 50;
+ this.label37.Text = "Start";
+ //
+ // endTextBox13
+ //
+ this.endTextBox13.Enabled = false;
+ this.endTextBox13.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.endTextBox13.Location = new System.Drawing.Point(936, 60);
+ this.endTextBox13.Name = "endTextBox13";
+ this.endTextBox13.Size = new System.Drawing.Size(163, 31);
+ this.endTextBox13.TabIndex = 54;
+ this.endTextBox13.Visible = false;
+ this.endTextBox13.TextChanged += new System.EventHandler(this.endTextBox13_TextChanged);
+ this.endTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox13_KeyPress);
+ //
+ // label13
+ //
+ this.label13.AutoSize = true;
+ this.label13.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.label13.Location = new System.Drawing.Point(592, 63);
+ this.label13.Name = "label13";
+ this.label13.Size = new System.Drawing.Size(157, 23);
+ this.label13.TabIndex = 52;
+ this.label13.Text = "Water Meter 13";
+ this.label13.Visible = false;
+ //
+ // TestStartEndForm
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.DarkGoldenrod;
+ this.ClientSize = new System.Drawing.Size(1292, 613);
+ this.Controls.Add(this.exclamation24);
+ this.Controls.Add(this.startTextBox24);
+ this.Controls.Add(this.endTextBox24);
+ this.Controls.Add(this.label24);
+ this.Controls.Add(this.exclamation23);
+ this.Controls.Add(this.startTextBox23);
+ this.Controls.Add(this.endTextBox23);
+ this.Controls.Add(this.label23);
+ this.Controls.Add(this.exclamation22);
+ this.Controls.Add(this.startTextBox22);
+ this.Controls.Add(this.endTextBox22);
+ this.Controls.Add(this.label22);
+ this.Controls.Add(this.exclamation21);
+ this.Controls.Add(this.startTextBox21);
+ this.Controls.Add(this.endTextBox21);
+ this.Controls.Add(this.label21);
+ this.Controls.Add(this.exclamation20);
+ this.Controls.Add(this.startTextBox20);
+ this.Controls.Add(this.endTextBox20);
+ this.Controls.Add(this.label20);
+ this.Controls.Add(this.exclamation19);
+ this.Controls.Add(this.startTextBox19);
+ this.Controls.Add(this.endTextBox19);
+ this.Controls.Add(this.label19);
+ this.Controls.Add(this.exclamation18);
+ this.Controls.Add(this.exclamation17);
+ this.Controls.Add(this.startTextBox18);
+ this.Controls.Add(this.exclamation16);
+ this.Controls.Add(this.endTextBox18);
+ this.Controls.Add(this.label18);
+ this.Controls.Add(this.startTextBox17);
+ this.Controls.Add(this.exclamation15);
+ this.Controls.Add(this.endTextBox17);
+ this.Controls.Add(this.label17);
+ this.Controls.Add(this.startTextBox16);
+ this.Controls.Add(this.exclamation14);
+ this.Controls.Add(this.endTextBox16);
+ this.Controls.Add(this.label16);
+ this.Controls.Add(this.startTextBox15);
+ this.Controls.Add(this.exclamation13);
+ this.Controls.Add(this.endTextBox15);
+ this.Controls.Add(this.label15);
+ this.Controls.Add(this.startTextBox14);
+ this.Controls.Add(this.label35);
+ this.Controls.Add(this.endTextBox14);
+ this.Controls.Add(this.label14);
+ this.Controls.Add(this.startTextBox13);
+ this.Controls.Add(this.label37);
+ this.Controls.Add(this.endTextBox13);
+ this.Controls.Add(this.label13);
+ this.Controls.Add(this.exclamation12);
+ this.Controls.Add(this.startTextBox12);
+ this.Controls.Add(this.endTextBox12);
+ this.Controls.Add(this.label12);
+ this.Controls.Add(this.exclamation11);
+ this.Controls.Add(this.startTextBox11);
+ this.Controls.Add(this.endTextBox11);
+ this.Controls.Add(this.label11);
+ this.Controls.Add(this.exclamation10);
+ this.Controls.Add(this.startTextBox10);
+ this.Controls.Add(this.endTextBox10);
+ this.Controls.Add(this.label10);
+ this.Controls.Add(this.exclamation9);
+ this.Controls.Add(this.startTextBox9);
+ this.Controls.Add(this.endTextBox9);
+ this.Controls.Add(this.label9);
+ this.Controls.Add(this.exclamation8);
+ this.Controls.Add(this.startTextBox8);
+ this.Controls.Add(this.endTextBox8);
+ this.Controls.Add(this.label8);
+ this.Controls.Add(this.exclamation7);
+ this.Controls.Add(this.startTextBox7);
+ this.Controls.Add(this.endTextBox7);
+ this.Controls.Add(this.label7);
+ this.Controls.Add(this.exclamation6);
+ this.Controls.Add(this.exclamation5);
+ this.Controls.Add(this.startTextBox6);
+ this.Controls.Add(this.exclamation4);
+ this.Controls.Add(this.endTextBox6);
+ this.Controls.Add(this.label6);
+ this.Controls.Add(this.startTextBox5);
+ this.Controls.Add(this.exclamation3);
+ this.Controls.Add(this.endTextBox5);
+ this.Controls.Add(this.label5);
+ this.Controls.Add(this.startTextBox4);
+ this.Controls.Add(this.exclamation2);
+ this.Controls.Add(this.endTextBox4);
+ this.Controls.Add(this.label4);
+ this.Controls.Add(this.startTextBox3);
+ this.Controls.Add(this.exclamation1);
+ this.Controls.Add(this.endTextBox3);
+ this.Controls.Add(this.label3);
+ this.Controls.Add(this.startTextBox2);
+ this.Controls.Add(this.endLabel);
+ this.Controls.Add(this.endTextBox2);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.startTextBox1);
+ this.Controls.Add(this.startLabel);
+ this.Controls.Add(this.endTextBox1);
+ this.Controls.Add(this.label1);
+ this.Controls.Add(this.okButton);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.Name = "TestStartEndForm";
+ this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
+ this.Text = "End States";
+ this.TopMost = true;
+ this.Load += new System.EventHandler(this.CycleEndForm_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.TextBox endTextBox1;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Button okButton;
+ private System.Windows.Forms.TextBox endTextBox3;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.TextBox endTextBox4;
+ private System.Windows.Forms.Label label4;
+ private System.Windows.Forms.TextBox endTextBox5;
+ private System.Windows.Forms.Label label5;
+ private System.Windows.Forms.TextBox endTextBox6;
+ private System.Windows.Forms.Label label6;
+ private System.Windows.Forms.TextBox startTextBox1;
+ private System.Windows.Forms.TextBox startTextBox3;
+ private System.Windows.Forms.TextBox startTextBox4;
+ private System.Windows.Forms.TextBox startTextBox5;
+ private System.Windows.Forms.TextBox startTextBox6;
+ private System.Windows.Forms.Label startLabel;
+ private System.Windows.Forms.Label endLabel;
+ private System.Windows.Forms.Label exclamation1;
+ private System.Windows.Forms.Label exclamation3;
+ private System.Windows.Forms.Label exclamation4;
+ private System.Windows.Forms.Label exclamation5;
+ private System.Windows.Forms.Label exclamation6;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.TextBox endTextBox2;
+ private System.Windows.Forms.TextBox startTextBox2;
+ private System.Windows.Forms.Label exclamation2;
+ private System.Windows.Forms.Label exclamation7;
+ private System.Windows.Forms.TextBox startTextBox7;
+ private System.Windows.Forms.TextBox endTextBox7;
+ private System.Windows.Forms.Label label7;
+ private System.Windows.Forms.Label exclamation8;
+ private System.Windows.Forms.TextBox startTextBox8;
+ private System.Windows.Forms.TextBox endTextBox8;
+ private System.Windows.Forms.Label label8;
+ private System.Windows.Forms.Label exclamation9;
+ private System.Windows.Forms.TextBox startTextBox9;
+ private System.Windows.Forms.TextBox endTextBox9;
+ private System.Windows.Forms.Label label9;
+ private System.Windows.Forms.Label exclamation10;
+ private System.Windows.Forms.TextBox startTextBox10;
+ private System.Windows.Forms.TextBox endTextBox10;
+ private System.Windows.Forms.Label label10;
+ private System.Windows.Forms.Label exclamation11;
+ private System.Windows.Forms.TextBox startTextBox11;
+ private System.Windows.Forms.TextBox endTextBox11;
+ private System.Windows.Forms.Label label11;
+ private System.Windows.Forms.Label exclamation12;
+ private System.Windows.Forms.TextBox startTextBox12;
+ private System.Windows.Forms.TextBox endTextBox12;
+ private System.Windows.Forms.Label label12;
+ private System.Windows.Forms.Label exclamation24;
+ private System.Windows.Forms.TextBox startTextBox24;
+ private System.Windows.Forms.TextBox endTextBox24;
+ private System.Windows.Forms.Label label24;
+ private System.Windows.Forms.Label exclamation23;
+ private System.Windows.Forms.TextBox startTextBox23;
+ private System.Windows.Forms.TextBox endTextBox23;
+ private System.Windows.Forms.Label label23;
+ private System.Windows.Forms.Label exclamation22;
+ private System.Windows.Forms.TextBox startTextBox22;
+ private System.Windows.Forms.TextBox endTextBox22;
+ private System.Windows.Forms.Label label22;
+ private System.Windows.Forms.Label exclamation21;
+ private System.Windows.Forms.TextBox startTextBox21;
+ private System.Windows.Forms.TextBox endTextBox21;
+ private System.Windows.Forms.Label label21;
+ private System.Windows.Forms.Label exclamation20;
+ private System.Windows.Forms.TextBox startTextBox20;
+ private System.Windows.Forms.TextBox endTextBox20;
+ private System.Windows.Forms.Label label20;
+ private System.Windows.Forms.Label exclamation19;
+ private System.Windows.Forms.TextBox startTextBox19;
+ private System.Windows.Forms.TextBox endTextBox19;
+ private System.Windows.Forms.Label label19;
+ private System.Windows.Forms.Label exclamation18;
+ private System.Windows.Forms.Label exclamation17;
+ private System.Windows.Forms.TextBox startTextBox18;
+ private System.Windows.Forms.Label exclamation16;
+ private System.Windows.Forms.TextBox endTextBox18;
+ private System.Windows.Forms.Label label18;
+ private System.Windows.Forms.TextBox startTextBox17;
+ private System.Windows.Forms.Label exclamation15;
+ private System.Windows.Forms.TextBox endTextBox17;
+ private System.Windows.Forms.Label label17;
+ private System.Windows.Forms.TextBox startTextBox16;
+ private System.Windows.Forms.Label exclamation14;
+ private System.Windows.Forms.TextBox endTextBox16;
+ private System.Windows.Forms.Label label16;
+ private System.Windows.Forms.TextBox startTextBox15;
+ private System.Windows.Forms.Label exclamation13;
+ private System.Windows.Forms.TextBox endTextBox15;
+ private System.Windows.Forms.Label label15;
+ private System.Windows.Forms.TextBox startTextBox14;
+ private System.Windows.Forms.Label label35;
+ private System.Windows.Forms.TextBox endTextBox14;
+ private System.Windows.Forms.Label label14;
+ private System.Windows.Forms.TextBox startTextBox13;
+ private System.Windows.Forms.Label label37;
+ private System.Windows.Forms.TextBox endTextBox13;
+ private System.Windows.Forms.Label label13;
+
+ }
+}
\ No newline at end of file
diff --git a/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.resx b/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.resx
new file mode 100644
index 000000000..1af7de150
--- /dev/null
+++ b/TestBenchFramework/BenchControl/DataEntry/iPerl/TestStartEndForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/TestBenchFramework/Properties/AssemblyInfo.cs b/TestBenchFramework/Properties/AssemblyInfo.cs
index 5be2aea0b..a88f53250 100644
--- a/TestBenchFramework/Properties/AssemblyInfo.cs
+++ b/TestBenchFramework/Properties/AssemblyInfo.cs
@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
// Build Number
// Revision
//
-[assembly: AssemblyVersion("1.5.94.1")]
-[assembly: AssemblyFileVersion("1.5.94.1")]
+[assembly: AssemblyVersion("1.5.95.1")]
+[assembly: AssemblyFileVersion("1.5.95.1")]
diff --git a/TestBenchFramework/TBF.csproj b/TestBenchFramework/TBF.csproj
index ff47cc25d..89e84ca98 100644
--- a/TestBenchFramework/TBF.csproj
+++ b/TestBenchFramework/TBF.csproj
@@ -176,6 +176,33 @@
TestStartEndForm.cs
+
+ Form
+
+
+ CycleBeginningForm.cs
+
+
+ Form
+
+
+ CycleEndForm.cs
+
+
+
+
+ UserControl
+
+
+ EntryFormCfgCtrl.cs
+
+
+
+ Form
+
+
+ TestStartEndForm.cs
+
Form
@@ -1343,6 +1370,18 @@
TestStartEndForm.cs
+
+ CycleBeginningForm.cs
+
+
+ CycleEndForm.cs
+
+
+ EntryFormCfgCtrl.cs
+
+
+ TestStartEndForm.cs
+
CycleBeginningForm.cs