diff --git a/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs b/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs index e3655f87a..2ee54aeb5 100644 --- a/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs +++ b/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.cs @@ -2,6 +2,7 @@ /// Copyright (c) 2015 Sensus Metering Systems /// using System; +using System.Collections.Generic; using System.Windows.Forms; using log4net; using TBF.Resources; @@ -35,6 +36,10 @@ namespace TBF.BenchControl.DataEntry.Standard24 float warningLimLo; /// limit to display exclamation mark, typically 2x errLimLo float warningLimHi; /// limit to display exclamation mark, typically 2x errLimHi + TextBox[] startTextBoxes; + TextBox[] endTextBoxes; + IList enabledTextBoxes; + /// /// Constructor to fill in start states /// @@ -50,6 +55,23 @@ namespace TBF.BenchControl.DataEntry.Standard24 WMStartState = new float[waterMetersCount]; WMStartStateStr = new string[waterMetersCount]; completed = false; + + 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(); + StartForceCloseHandler(); } @@ -87,7 +109,7 @@ namespace TBF.BenchControl.DataEntry.Standard24 { Localize(); - Height = 115 + 90 * WaterMetersCount; + //Height = 115 + 90 * WaterMetersCount; if (WaterMetersCount < 1) { label1.Visible = startTextBox1.Visible = endTextBox1.Visible = false; } if (WaterMetersCount < 2) { label2.Visible = startTextBox2.Visible = endTextBox2.Visible = false; } @@ -95,30 +117,55 @@ namespace TBF.BenchControl.DataEntry.Standard24 if (WaterMetersCount < 4) { label4.Visible = startTextBox4.Visible = endTextBox4.Visible = false; } if (WaterMetersCount < 5) { label5.Visible = startTextBox5.Visible = endTextBox5.Visible = false; } if (WaterMetersCount < 6) { label6.Visible = startTextBox6.Visible = endTextBox6.Visible = false; } + if (WaterMetersCount < 7) { label7.Visible = startTextBox7.Visible = endTextBox7.Visible = false; } + if (WaterMetersCount < 8) { label8.Visible = startTextBox8.Visible = endTextBox8.Visible = false; } + if (WaterMetersCount < 9) { label9.Visible = startTextBox9.Visible = endTextBox9.Visible = false; } + if (WaterMetersCount < 10) { label10.Visible = startTextBox10.Visible = endTextBox10.Visible = false; } + if (WaterMetersCount < 11) { label11.Visible = startTextBox11.Visible = endTextBox11.Visible = false; } + if (WaterMetersCount < 12) { label12.Visible = startTextBox12.Visible = endTextBox12.Visible = false; } + if (WaterMetersCount < 13) { label13.Visible = startTextBox13.Visible = endTextBox13.Visible = false; } + if (WaterMetersCount < 14) { label14.Visible = startTextBox14.Visible = endTextBox14.Visible = false; } + if (WaterMetersCount < 15) { label15.Visible = startTextBox15.Visible = endTextBox15.Visible = false; } + if (WaterMetersCount < 16) { label16.Visible = startTextBox16.Visible = endTextBox16.Visible = false; } + if (WaterMetersCount < 17) { label17.Visible = startTextBox17.Visible = endTextBox17.Visible = false; } + if (WaterMetersCount < 18) { label18.Visible = startTextBox18.Visible = endTextBox18.Visible = false; } + if (WaterMetersCount < 19) { label19.Visible = startTextBox19.Visible = endTextBox19.Visible = false; } + if (WaterMetersCount < 20) { label20.Visible = startTextBox20.Visible = endTextBox20.Visible = false; } + if (WaterMetersCount < 21) { label21.Visible = startTextBox21.Visible = endTextBox21.Visible = false; } + if (WaterMetersCount < 22) { label22.Visible = startTextBox22.Visible = endTextBox22.Visible = false; } + if (WaterMetersCount < 23) { label23.Visible = startTextBox23.Visible = endTextBox23.Visible = false; } + if (WaterMetersCount < 24) { label24.Visible = startTextBox24.Visible = endTextBox24.Visible = false; } if (endStates) { - if (WaterMetersCount >= 1) startTextBox1.Text = WMStartStateStr[0]; - if (WaterMetersCount >= 2) startTextBox2.Text = WMStartStateStr[1]; - if (WaterMetersCount >= 3) startTextBox3.Text = WMStartStateStr[2]; - if (WaterMetersCount >= 4) startTextBox4.Text = WMStartStateStr[3]; - if (WaterMetersCount >= 5) startTextBox5.Text = WMStartStateStr[4]; - if (WaterMetersCount >= 6) startTextBox6.Text = WMStartStateStr[5]; - endTextBox1.Enabled = (disabled == null || disabled.Length < 1 || !disabled[0]); - endTextBox2.Enabled = (disabled == null || disabled.Length < 2 || !disabled[1]); - endTextBox3.Enabled = (disabled == null || disabled.Length < 3 || !disabled[2]); - endTextBox4.Enabled = (disabled == null || disabled.Length < 4 || !disabled[3]); - endTextBox5.Enabled = (disabled == null || disabled.Length < 5 || !disabled[4]); - endTextBox6.Enabled = (disabled == null || disabled.Length < 6 || !disabled[5]); + for (int i = 0; i < 24; i++) + { + if (WaterMetersCount > i) startTextBoxes[i].Text = WMStartStateStr[i]; + if (disabled != null && disabled.Length > i && disabled[i]) + { + endTextBoxes[i].Enabled = false; + } + else + { + endTextBoxes[i].Enabled = true; + enabledTextBoxes.Add(endTextBoxes[i]); + } + } } else { - startTextBox1.Enabled = (disabled == null || disabled.Length < 1 || !disabled[0]); - startTextBox2.Enabled = (disabled == null || disabled.Length < 2 || !disabled[1]); - startTextBox3.Enabled = (disabled == null || disabled.Length < 3 || !disabled[2]); - startTextBox4.Enabled = (disabled == null || disabled.Length < 4 || !disabled[3]); - startTextBox5.Enabled = (disabled == null || disabled.Length < 5 || !disabled[4]); - startTextBox6.Enabled = (disabled == null || disabled.Length < 6 || !disabled[5]); + for (int i = 0; i < 24; i++) + { + if (disabled != null && disabled.Length > i && disabled[i]) + { + startTextBoxes[i].Enabled = false; + } + else + { + startTextBoxes[i].Enabled = true; + enabledTextBoxes.Add(startTextBoxes[i]); + } + } } } @@ -126,17 +173,29 @@ namespace TBF.BenchControl.DataEntry.Standard24 { Text = Strings.Water_Meter_States; label1.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.WMState; - label2.Text = Strings.WMState; - label3.Text = Strings.WMState; - label4.Text = Strings.WMState; - label5.Text = Strings.WMState; - label6.Text = Strings.WMState; + label2.Text = Strings.Water_Meter + " 2"; + label3.Text = Strings.Water_Meter + " 3"; + label4.Text = Strings.Water_Meter + " 4"; + label5.Text = Strings.Water_Meter + " 5"; + label6.Text = Strings.Water_Meter + " 6"; + label7.Text = Strings.Water_Meter + " 7"; + label8.Text = Strings.Water_Meter + " 8"; + label9.Text = Strings.Water_Meter + " 9"; + label10.Text = Strings.Water_Meter + " 10"; + label11.Text = Strings.Water_Meter + " 11"; + label12.Text = Strings.Water_Meter + " 12"; + label13.Text = Strings.Water_Meter + " 13"; + label14.Text = Strings.Water_Meter + " 14"; + label15.Text = Strings.Water_Meter + " 15"; + label16.Text = Strings.Water_Meter + " 16"; + label17.Text = Strings.Water_Meter + " 17"; + label18.Text = Strings.Water_Meter + " 18"; + label19.Text = Strings.Water_Meter + " 19"; + label20.Text = Strings.Water_Meter + " 20"; + label21.Text = Strings.Water_Meter + " 21"; + label22.Text = Strings.Water_Meter + " 22"; + label23.Text = Strings.Water_Meter + " 23"; + label24.Text = Strings.Water_Meter + " 24"; startLabel.Text = Strings.Start; endLabel.Text = Strings.End; okButton.Text = Strings.OkBtnText; @@ -154,39 +213,51 @@ namespace TBF.BenchControl.DataEntry.Standard24 if (endTextBox4.Enabled) WMEndState[3] = Utils.ParseUFloat(endTextBox4.Text); if (endTextBox5.Enabled) WMEndState[4] = Utils.ParseUFloat(endTextBox5.Text); if (endTextBox6.Enabled) WMEndState[5] = Utils.ParseUFloat(endTextBox6.Text); + if (endTextBox7.Enabled) WMEndState[6] = Utils.ParseUFloat(endTextBox7.Text); + if (endTextBox8.Enabled) WMEndState[7] = Utils.ParseUFloat(endTextBox8.Text); + if (endTextBox9.Enabled) WMEndState[8] = Utils.ParseUFloat(endTextBox9.Text); + if (endTextBox10.Enabled) WMEndState[9] = Utils.ParseUFloat(endTextBox10.Text); + if (endTextBox11.Enabled) WMEndState[10] = Utils.ParseUFloat(endTextBox11.Text); + if (endTextBox12.Enabled) WMEndState[11] = Utils.ParseUFloat(endTextBox12.Text); + if (endTextBox13.Enabled) WMEndState[12] = Utils.ParseUFloat(endTextBox13.Text); + if (endTextBox14.Enabled) WMEndState[13] = Utils.ParseUFloat(endTextBox14.Text); + if (endTextBox15.Enabled) WMEndState[14] = Utils.ParseUFloat(endTextBox15.Text); + if (endTextBox16.Enabled) WMEndState[15] = Utils.ParseUFloat(endTextBox16.Text); + if (endTextBox17.Enabled) WMEndState[16] = Utils.ParseUFloat(endTextBox17.Text); + if (endTextBox18.Enabled) WMEndState[17] = Utils.ParseUFloat(endTextBox18.Text); + if (endTextBox19.Enabled) WMEndState[18] = Utils.ParseUFloat(endTextBox19.Text); + if (endTextBox20.Enabled) WMEndState[19] = Utils.ParseUFloat(endTextBox20.Text); + if (endTextBox21.Enabled) WMEndState[20] = Utils.ParseUFloat(endTextBox21.Text); + if (endTextBox22.Enabled) WMEndState[21] = Utils.ParseUFloat(endTextBox22.Text); + if (endTextBox23.Enabled) WMEndState[22] = Utils.ParseUFloat(endTextBox23.Text); + if (endTextBox24.Enabled) WMEndState[23] = Utils.ParseUFloat(endTextBox24.Text); } else { - if (startTextBox1.Enabled) - { - WMStartStateStr[0] = startTextBox1.Text; - WMStartState[0] = Utils.ParseUFloat(startTextBox1.Text); - } - if (startTextBox2.Enabled) - { - WMStartStateStr[1] = startTextBox2.Text; - WMStartState[1] = Utils.ParseUFloat(startTextBox2.Text); - } - if (startTextBox3.Enabled) - { - WMStartStateStr[2] = startTextBox3.Text; - WMStartState[2] = Utils.ParseUFloat(startTextBox3.Text); - } - if (startTextBox4.Enabled) - { - WMStartStateStr[3] = startTextBox4.Text; - WMStartState[3] = Utils.ParseUFloat(startTextBox4.Text); - } - if (startTextBox5.Enabled) - { - WMStartStateStr[4] = startTextBox5.Text; - WMStartState[4] = Utils.ParseUFloat(startTextBox5.Text); - } - if (startTextBox6.Enabled) - { - WMStartStateStr[5] = startTextBox6.Text; - WMStartState[5] = Utils.ParseUFloat(startTextBox6.Text); - } + if (startTextBox1.Enabled) { WMStartStateStr[0] = startTextBox1.Text; WMStartState[0] = Utils.ParseUFloat(startTextBox1.Text); } + if (startTextBox2.Enabled) { WMStartStateStr[1] = startTextBox2.Text; WMStartState[1] = Utils.ParseUFloat(startTextBox2.Text); } + if (startTextBox3.Enabled) { WMStartStateStr[2] = startTextBox3.Text; WMStartState[2] = Utils.ParseUFloat(startTextBox3.Text); } + if (startTextBox4.Enabled) { WMStartStateStr[3] = startTextBox4.Text; WMStartState[3] = Utils.ParseUFloat(startTextBox4.Text); } + if (startTextBox5.Enabled) { WMStartStateStr[4] = startTextBox5.Text; WMStartState[4] = Utils.ParseUFloat(startTextBox5.Text); } + if (startTextBox6.Enabled) { WMStartStateStr[5] = startTextBox6.Text; WMStartState[5] = Utils.ParseUFloat(startTextBox6.Text); } + if (startTextBox7.Enabled) { WMStartStateStr[6] = startTextBox7.Text; WMStartState[6] = Utils.ParseUFloat(startTextBox7.Text); } + if (startTextBox8.Enabled) { WMStartStateStr[7] = startTextBox8.Text; WMStartState[7] = Utils.ParseUFloat(startTextBox8.Text); } + if (startTextBox9.Enabled) { WMStartStateStr[8] = startTextBox9.Text; WMStartState[8] = Utils.ParseUFloat(startTextBox9.Text); } + if (startTextBox10.Enabled) { WMStartStateStr[9] = startTextBox10.Text; WMStartState[9] = Utils.ParseUFloat(startTextBox10.Text); } + if (startTextBox11.Enabled) { WMStartStateStr[10] = startTextBox11.Text; WMStartState[10] = Utils.ParseUFloat(startTextBox11.Text); } + if (startTextBox12.Enabled) { WMStartStateStr[11] = startTextBox12.Text; WMStartState[11] = Utils.ParseUFloat(startTextBox12.Text); } + if (startTextBox13.Enabled) { WMStartStateStr[12] = startTextBox13.Text; WMStartState[12] = Utils.ParseUFloat(startTextBox13.Text); } + if (startTextBox14.Enabled) { WMStartStateStr[13] = startTextBox14.Text; WMStartState[13] = Utils.ParseUFloat(startTextBox14.Text); } + if (startTextBox15.Enabled) { WMStartStateStr[14] = startTextBox15.Text; WMStartState[14] = Utils.ParseUFloat(startTextBox15.Text); } + if (startTextBox16.Enabled) { WMStartStateStr[15] = startTextBox16.Text; WMStartState[15] = Utils.ParseUFloat(startTextBox16.Text); } + if (startTextBox17.Enabled) { WMStartStateStr[16] = startTextBox17.Text; WMStartState[16] = Utils.ParseUFloat(startTextBox17.Text); } + if (startTextBox18.Enabled) { WMStartStateStr[17] = startTextBox18.Text; WMStartState[17] = Utils.ParseUFloat(startTextBox18.Text); } + if (startTextBox19.Enabled) { WMStartStateStr[18] = startTextBox19.Text; WMStartState[18] = Utils.ParseUFloat(startTextBox19.Text); } + if (startTextBox20.Enabled) { WMStartStateStr[19] = startTextBox20.Text; WMStartState[19] = Utils.ParseUFloat(startTextBox20.Text); } + if (startTextBox21.Enabled) { WMStartStateStr[20] = startTextBox21.Text; WMStartState[20] = Utils.ParseUFloat(startTextBox21.Text); } + if (startTextBox22.Enabled) { WMStartStateStr[21] = startTextBox22.Text; WMStartState[21] = Utils.ParseUFloat(startTextBox22.Text); } + if (startTextBox23.Enabled) { WMStartStateStr[22] = startTextBox23.Text; WMStartState[22] = Utils.ParseUFloat(startTextBox23.Text); } + if (startTextBox24.Enabled) { WMStartStateStr[23] = startTextBox24.Text; WMStartState[23] = Utils.ParseUFloat(startTextBox24.Text); } } } catch @@ -217,7 +288,12 @@ namespace TBF.BenchControl.DataEntry.Standard24 #endregion - private void wmEndStateTextBox1_TextChanged(object sender, EventArgs e) + /// + /// 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 exdTextBoxes (1..24). + /// + private void endTextBox1_TextChanged(object sender, EventArgs e) { float err = 0; try @@ -227,11 +303,9 @@ namespace TBF.BenchControl.DataEntry.Standard24 err = 100.0f * (endState - startState - refVolume) / refVolume; } catch { }; - exclamation1.Visible = (err < warningLimLo) || (warningLimHi < err); } - - private void wmEndStateTextBox2_TextChanged(object sender, EventArgs e) + private void endTextBox2_TextChanged(object sender, EventArgs e) { float err = 0; try @@ -241,11 +315,9 @@ namespace TBF.BenchControl.DataEntry.Standard24 err = 100.0f * (endState - startState - refVolume) / refVolume; } catch { err = 1000.0f; }; - exclamation2.Visible = (err < warningLimLo) || (warningLimHi < err); } - - private void wmEndStateTextBox3_TextChanged(object sender, EventArgs e) + private void endTextBox3_TextChanged(object sender, EventArgs e) { float err = 0; try @@ -255,11 +327,9 @@ namespace TBF.BenchControl.DataEntry.Standard24 err = 100.0f * (endState - startState - refVolume) / refVolume; } catch { err = 1000.0f; }; - exclamation3.Visible = (err < warningLimLo) || (warningLimHi < err); } - - private void wmEndStateTextBox4_TextChanged(object sender, EventArgs e) + private void endTextBox4_TextChanged(object sender, EventArgs e) { float err = 0; try @@ -269,11 +339,9 @@ namespace TBF.BenchControl.DataEntry.Standard24 err = 100.0f * (endState - startState - refVolume) / refVolume; } catch { err = 1000.0f; }; - exclamation4.Visible = (err < warningLimLo) || (warningLimHi < err); } - - private void wmEndStateTextBox5_TextChanged(object sender, EventArgs e) + private void endTextBox5_TextChanged(object sender, EventArgs e) { float err = 0; try @@ -283,11 +351,9 @@ namespace TBF.BenchControl.DataEntry.Standard24 err = 100.0f * (endState - startState - refVolume) / refVolume; } catch { err = 1000.0f; }; - exclamation5.Visible = (err < warningLimLo) || (warningLimHi < err); } - - private void wmEndStateTextBox6_TextChanged(object sender, EventArgs e) + private void endTextBox6_TextChanged(object sender, EventArgs e) { float err = 0; try @@ -297,164 +363,305 @@ namespace TBF.BenchControl.DataEntry.Standard24 err = 100.0f * (endState - startState - refVolume) / refVolume; } catch { err = 1000.0f; }; - exclamation6.Visible = (err < warningLimLo) || (warningLimHi < err); } - - private void wmStartStateTextBox1_KeyPress(object sender, KeyPressEventArgs e) + private void endTextBox7_TextChanged(object sender, EventArgs e) { - if (e.KeyChar == '\r') + float err = 0; + try { - if (startTextBox2.Enabled) startTextBox2.Focus(); - else if (startTextBox3.Enabled) startTextBox3.Focus(); - else if (startTextBox4.Enabled) startTextBox4.Focus(); - else if (startTextBox5.Enabled) startTextBox5.Focus(); - else if (startTextBox6.Enabled) startTextBox6.Focus(); + float endState = Utils.ParseUFloat(endTextBox7.Text); + float startState = Utils.ParseUFloat(startTextBox7.Text); + err = 100.0f * (endState - startState - refVolume) / refVolume; } - else if (e.KeyChar == '+') okButton_Click(sender, e); + 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 wmStartStateTextBox2_KeyPress(object sender, KeyPressEventArgs e) + private void endTextBox10_TextChanged(object sender, EventArgs e) { - if (e.KeyChar == '\r') + float err = 0; + try { - if (startTextBox3.Enabled) startTextBox3.Focus(); - else if (startTextBox4.Enabled) startTextBox4.Focus(); - else if (startTextBox5.Enabled) startTextBox5.Focus(); - else if (startTextBox6.Enabled) startTextBox6.Focus(); - else if (startTextBox1.Enabled) startTextBox1.Focus(); + float endState = Utils.ParseUFloat(endTextBox10.Text); + float startState = Utils.ParseUFloat(startTextBox10.Text); + err = 100.0f * (endState - startState - refVolume) / refVolume; } - else if (e.KeyChar == '+') okButton_Click(sender, e); + catch { err = 1000.0f; }; + exclamation10.Visible = (err < warningLimLo) || (warningLimHi < err); } - private void wmStartStateTextBox3_KeyPress(object sender, KeyPressEventArgs e) + private void endTextBox11_TextChanged(object sender, EventArgs e) { - if (e.KeyChar == '\r') + float err = 0; + try { - if (startTextBox4.Enabled) startTextBox4.Focus(); - else if (startTextBox5.Enabled) startTextBox5.Focus(); - else if (startTextBox6.Enabled) startTextBox6.Focus(); - else if (startTextBox1.Enabled) startTextBox1.Focus(); - else if (startTextBox2.Enabled) startTextBox2.Focus(); + float endState = Utils.ParseUFloat(endTextBox11.Text); + float startState = Utils.ParseUFloat(startTextBox11.Text); + err = 100.0f * (endState - startState - refVolume) / refVolume; } - else if (e.KeyChar == '+') okButton_Click(sender, e); + 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); } - private void wmStartStateTextBox4_KeyPress(object sender, KeyPressEventArgs e) + /// + /// 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') { - if (startTextBox5.Enabled) startTextBox5.Focus(); - else if (startTextBox6.Enabled) startTextBox6.Focus(); - else if (startTextBox1.Enabled) startTextBox1.Focus(); - else if (startTextBox2.Enabled) startTextBox2.Focus(); - else if (startTextBox3.Enabled) startTextBox3.Focus(); + /// 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 teh next enabled text box + enabledTextBoxes[(i + 1) % enabledTextBoxes.Count].Focus(); + return; + } + } } - else if (e.KeyChar == '+') okButton_Click(sender, e); } - private void wmStartStateTextBox5_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (startTextBox6.Enabled) startTextBox6.Focus(); - else if (startTextBox1.Enabled) startTextBox1.Focus(); - else if (startTextBox2.Enabled) startTextBox2.Focus(); - else if (startTextBox3.Enabled) startTextBox3.Focus(); - else if (startTextBox4.Enabled) startTextBox4.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } + 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 wmStartStateTextBox6_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (startTextBox1.Enabled) startTextBox1.Focus(); - else if (startTextBox1.Enabled) startTextBox1.Focus(); - else if (startTextBox3.Enabled) startTextBox3.Focus(); - else if (startTextBox4.Enabled) startTextBox4.Focus(); - else if (startTextBox5.Enabled) startTextBox5.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } - - private void wmEndStateTextBox1_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (endTextBox2.Enabled) endTextBox2.Focus(); - else if (endTextBox3.Enabled) endTextBox3.Focus(); - else if (endTextBox4.Enabled) endTextBox4.Focus(); - else if (endTextBox5.Enabled) endTextBox5.Focus(); - else if (endTextBox6.Enabled) endTextBox6.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } - - private void wmEndStateTextBox2_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (endTextBox3.Enabled) endTextBox3.Focus(); - else if (endTextBox4.Enabled) endTextBox4.Focus(); - else if (endTextBox5.Enabled) endTextBox5.Focus(); - else if (endTextBox6.Enabled) endTextBox6.Focus(); - else if (endTextBox1.Enabled) endTextBox1.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } - - private void wmEndStateTextBox3_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (endTextBox4.Enabled) endTextBox4.Focus(); - else if (endTextBox5.Enabled) endTextBox5.Focus(); - else if (endTextBox6.Enabled) endTextBox6.Focus(); - else if (endTextBox1.Enabled) endTextBox1.Focus(); - else if (endTextBox2.Enabled) endTextBox2.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } - - private void wmEndStateTextBox4_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (endTextBox5.Enabled) endTextBox5.Focus(); - else if (endTextBox6.Enabled) endTextBox6.Focus(); - else if (endTextBox1.Enabled) endTextBox1.Focus(); - else if (endTextBox2.Enabled) endTextBox2.Focus(); - else if (endTextBox3.Enabled) endTextBox3.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } - - private void wmEndStateTextBox5_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (endTextBox6.Enabled) endTextBox6.Focus(); - else if (endTextBox1.Enabled) endTextBox1.Focus(); - else if (endTextBox2.Enabled) endTextBox2.Focus(); - else if (endTextBox3.Enabled) endTextBox3.Focus(); - else if (endTextBox4.Enabled) endTextBox4.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } - - private void wmEndStateTextBox6_KeyPress(object sender, KeyPressEventArgs e) - { - if (e.KeyChar == '\r') - { - if (endTextBox1.Enabled) endTextBox1.Focus(); - else if (endTextBox1.Enabled) endTextBox1.Focus(); - else if (endTextBox3.Enabled) endTextBox3.Focus(); - else if (endTextBox4.Enabled) endTextBox4.Focus(); - else if (endTextBox5.Enabled) endTextBox5.Focus(); - } - else if (e.KeyChar == '+') okButton_Click(sender, e); - } + 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/Standard24/TestStartEndForm.designer.cs b/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.designer.cs index b7df1d15b..0689828d4 100644 --- a/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.designer.cs +++ b/TestBenchFramework/BenchControl/DataEntry/Standard24/TestStartEndForm.designer.cs @@ -31,109 +31,118 @@ namespace TBF.BenchControl.DataEntry.Standard24 /// private void InitializeComponent() { - this.groupBox2 = new System.Windows.Forms.GroupBox(); - this.exclamation2 = new System.Windows.Forms.Label(); - this.startTextBox2 = new System.Windows.Forms.TextBox(); - this.endTextBox2 = new System.Windows.Forms.TextBox(); - this.label2 = new System.Windows.Forms.Label(); 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.groupBox3 = new System.Windows.Forms.GroupBox(); 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.groupBox4 = new System.Windows.Forms.GroupBox(); 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.groupBox5 = new System.Windows.Forms.GroupBox(); 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.groupBox6 = new System.Windows.Forms.GroupBox(); 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.groupBox2.SuspendLayout(); - this.groupBox3.SuspendLayout(); - this.groupBox4.SuspendLayout(); - this.groupBox5.SuspendLayout(); - this.groupBox6.SuspendLayout(); + 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(); // - // groupBox2 - // - this.groupBox2.Controls.Add(this.exclamation2); - this.groupBox2.Controls.Add(this.startTextBox2); - this.groupBox2.Controls.Add(this.endTextBox2); - 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, 122); - this.groupBox2.Name = "groupBox2"; - this.groupBox2.Size = new System.Drawing.Size(547, 81); - this.groupBox2.TabIndex = 2; - this.groupBox2.TabStop = false; - this.groupBox2.Text = "Water Meter 2"; - // - // 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(515, 27); - this.exclamation2.Name = "exclamation2"; - this.exclamation2.Size = new System.Drawing.Size(30, 38); - this.exclamation2.TabIndex = 4; - this.exclamation2.Text = "!"; - this.exclamation2.Visible = false; - // - // startTextBox2 - // - this.startTextBox2.Enabled = false; - this.startTextBox2.Location = new System.Drawing.Point(164, 31); - this.startTextBox2.Name = "startTextBox2"; - this.startTextBox2.Size = new System.Drawing.Size(163, 31); - this.startTextBox2.TabIndex = 3; - this.startTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmStartStateTextBox2_KeyPress); - // - // endTextBox2 - // - this.endTextBox2.Enabled = false; - this.endTextBox2.Location = new System.Drawing.Point(350, 31); - this.endTextBox2.Name = "endTextBox2"; - this.endTextBox2.Size = new System.Drawing.Size(163, 31); - this.endTextBox2.TabIndex = 1; - this.endTextBox2.TextChanged += new System.EventHandler(this.wmEndStateTextBox2_TextChanged); - this.endTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmEndStateTextBox2_KeyPress); - // - // 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(68, 23); - this.label2.TabIndex = 0; - this.label2.Text = "State:"; - // // 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(540, 51); + 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 = 3; + this.exclamation1.TabIndex = 5; this.exclamation1.Text = "!"; this.exclamation1.Visible = false; // @@ -141,319 +150,1187 @@ namespace TBF.BenchControl.DataEntry.Standard24 // 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(193, 55); + 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 = 2; - this.startTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmStartStateTextBox1_KeyPress); + this.startTextBox1.TabIndex = 3; + 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(375, 55); + 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 = 1; - this.endTextBox1.TextChanged += new System.EventHandler(this.wmEndStateTextBox1_TextChanged); - this.endTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmEndStateTextBox1_KeyPress); + this.endTextBox1.TabIndex = 4; + 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(39, 58); + 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 = 0; + this.label1.TabIndex = 2; this.label1.Text = "Water Meter 1"; // // 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(945, 12); + 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 = 7; + this.okButton.TabIndex = 100; this.okButton.Text = "OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // - // groupBox3 - // - this.groupBox3.Controls.Add(this.exclamation3); - this.groupBox3.Controls.Add(this.startTextBox3); - this.groupBox3.Controls.Add(this.endTextBox3); - 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, 212); - this.groupBox3.Name = "groupBox3"; - this.groupBox3.Size = new System.Drawing.Size(547, 81); - this.groupBox3.TabIndex = 3; - this.groupBox3.TabStop = false; - this.groupBox3.Text = "Water Meter 3"; - // // 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(515, 27); + 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 = 5; + this.exclamation3.TabIndex = 13; this.exclamation3.Text = "!"; this.exclamation3.Visible = false; // // startTextBox3 // this.startTextBox3.Enabled = false; - this.startTextBox3.Location = new System.Drawing.Point(164, 31); + 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 = 4; - this.startTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmStartStateTextBox3_KeyPress); + this.startTextBox3.TabIndex = 11; + this.startTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox3_KeyPress); // // endTextBox3 // this.endTextBox3.Enabled = false; - this.endTextBox3.Location = new System.Drawing.Point(350, 31); + 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 = 1; - this.endTextBox3.TextChanged += new System.EventHandler(this.wmEndStateTextBox3_TextChanged); - this.endTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmEndStateTextBox3_KeyPress); + this.endTextBox3.TabIndex = 12; + 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.Location = new System.Drawing.Point(18, 34); + 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(68, 23); - this.label3.TabIndex = 0; - this.label3.Text = "State:"; - // - // groupBox4 - // - this.groupBox4.Controls.Add(this.exclamation4); - this.groupBox4.Controls.Add(this.startTextBox4); - this.groupBox4.Controls.Add(this.endTextBox4); - 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, 302); - this.groupBox4.Name = "groupBox4"; - this.groupBox4.Size = new System.Drawing.Size(547, 81); - this.groupBox4.TabIndex = 4; - this.groupBox4.TabStop = false; - this.groupBox4.Text = "Water Meter 4"; + this.label3.Size = new System.Drawing.Size(145, 23); + this.label3.TabIndex = 10; + this.label3.Text = "Water Meter 3"; // // 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(515, 27); + 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 = 5; + this.exclamation4.TabIndex = 17; this.exclamation4.Text = "!"; this.exclamation4.Visible = false; // // startTextBox4 // this.startTextBox4.Enabled = false; - this.startTextBox4.Location = new System.Drawing.Point(164, 31); + 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 = 4; - this.startTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmStartStateTextBox4_KeyPress); + this.startTextBox4.TabIndex = 15; + this.startTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox4_KeyPress); // // endTextBox4 // this.endTextBox4.Enabled = false; - this.endTextBox4.Location = new System.Drawing.Point(350, 31); + 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 = 1; - this.endTextBox4.TextChanged += new System.EventHandler(this.wmEndStateTextBox4_TextChanged); - this.endTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmEndStateTextBox4_KeyPress); + this.endTextBox4.TabIndex = 16; + 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.Location = new System.Drawing.Point(18, 34); + 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(68, 23); - this.label4.TabIndex = 0; - this.label4.Text = "State:"; - // - // groupBox5 - // - this.groupBox5.Controls.Add(this.exclamation5); - this.groupBox5.Controls.Add(this.startTextBox5); - this.groupBox5.Controls.Add(this.endTextBox5); - 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, 392); - this.groupBox5.Name = "groupBox5"; - this.groupBox5.Size = new System.Drawing.Size(547, 81); - this.groupBox5.TabIndex = 5; - this.groupBox5.TabStop = false; - this.groupBox5.Text = "Water Meter 5"; + this.label4.Size = new System.Drawing.Size(145, 23); + this.label4.TabIndex = 14; + this.label4.Text = "Water Meter 4"; // // 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(515, 27); + 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 = 5; + this.exclamation5.TabIndex = 21; this.exclamation5.Text = "!"; this.exclamation5.Visible = false; // // startTextBox5 // this.startTextBox5.Enabled = false; - this.startTextBox5.Location = new System.Drawing.Point(164, 31); + 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 = 4; - this.startTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmStartStateTextBox5_KeyPress); + this.startTextBox5.TabIndex = 19; + this.startTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox5_KeyPress); // // endTextBox5 // this.endTextBox5.Enabled = false; - this.endTextBox5.Location = new System.Drawing.Point(350, 31); + 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 = 1; - this.endTextBox5.TextChanged += new System.EventHandler(this.wmEndStateTextBox5_TextChanged); - this.endTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmEndStateTextBox5_KeyPress); + this.endTextBox5.TabIndex = 20; + 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.Location = new System.Drawing.Point(18, 34); + 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(68, 23); - this.label5.TabIndex = 0; - this.label5.Text = "State:"; - // - // groupBox6 - // - this.groupBox6.Controls.Add(this.exclamation6); - this.groupBox6.Controls.Add(this.startTextBox6); - this.groupBox6.Controls.Add(this.endTextBox6); - 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, 482); - this.groupBox6.Name = "groupBox6"; - this.groupBox6.Size = new System.Drawing.Size(547, 81); - this.groupBox6.TabIndex = 6; - this.groupBox6.TabStop = false; - this.groupBox6.Text = "Water Meter 6"; + this.label5.Size = new System.Drawing.Size(145, 23); + this.label5.TabIndex = 18; + this.label5.Text = "Water Meter 5"; // // 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(515, 27); + 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 = 5; + this.exclamation6.TabIndex = 25; this.exclamation6.Text = "!"; this.exclamation6.Visible = false; // // startTextBox6 // this.startTextBox6.Enabled = false; - this.startTextBox6.Location = new System.Drawing.Point(164, 31); + 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 = 4; - this.startTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmStartStateTextBox6_KeyPress); + this.startTextBox6.TabIndex = 23; + this.startTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox6_KeyPress); // // endTextBox6 // this.endTextBox6.Enabled = false; - this.endTextBox6.Location = new System.Drawing.Point(350, 31); + 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 = 1; - this.endTextBox6.TextChanged += new System.EventHandler(this.wmEndStateTextBox6_TextChanged); - this.endTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.wmEndStateTextBox6_KeyPress); + this.endTextBox6.TabIndex = 24; + 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.Location = new System.Drawing.Point(18, 34); + 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(68, 23); - this.label6.TabIndex = 0; - this.label6.Text = "State:"; + this.label6.Size = new System.Drawing.Size(145, 23); + this.label6.TabIndex = 22; + this.label6.Text = "Water Meter 6"; // // 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(245, 11); + 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 = 8; + 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(431, 11); + 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 = 9; + 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"; + // + // 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.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.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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // + // 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.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.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"; + // // 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(1154, 586); + 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.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.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.groupBox2.ResumeLayout(false); - this.groupBox2.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); this.PerformLayout(); @@ -461,25 +1338,17 @@ namespace TBF.BenchControl.DataEntry.Standard24 #endregion - private System.Windows.Forms.GroupBox groupBox2; - private System.Windows.Forms.TextBox endTextBox2; - private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox endTextBox1; private System.Windows.Forms.Label label1; - private System.Windows.Forms.Button okButton; - private System.Windows.Forms.GroupBox groupBox3; + private System.Windows.Forms.Button okButton; private System.Windows.Forms.TextBox endTextBox3; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.GroupBox groupBox4; + private System.Windows.Forms.Label label3; private System.Windows.Forms.TextBox endTextBox4; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.GroupBox groupBox5; + private System.Windows.Forms.Label label4; private System.Windows.Forms.TextBox endTextBox5; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.GroupBox groupBox6; + private System.Windows.Forms.Label label5; private System.Windows.Forms.TextBox endTextBox6; - private System.Windows.Forms.Label label6; - private System.Windows.Forms.TextBox startTextBox2; + private System.Windows.Forms.Label label6; private System.Windows.Forms.TextBox startTextBox1; private System.Windows.Forms.TextBox startTextBox3; private System.Windows.Forms.TextBox startTextBox4; @@ -487,12 +1356,89 @@ namespace TBF.BenchControl.DataEntry.Standard24 private System.Windows.Forms.TextBox startTextBox6; private System.Windows.Forms.Label startLabel; private System.Windows.Forms.Label endLabel; - private System.Windows.Forms.Label exclamation2; 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/Properties/AssemblyInfo.cs b/TestBenchFramework/Properties/AssemblyInfo.cs index 985ab289e..b288c1f3c 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.4.38.1")] -[assembly: AssemblyFileVersion("1.4.38.1")] +[assembly: AssemblyVersion("1.4.39.1")] +[assembly: AssemblyFileVersion("1.4.39.1")]