diff --git a/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.cs b/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.cs index 166e64503..915ce400e 100644 --- a/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.cs +++ b/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.cs @@ -146,17 +146,19 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication buffer = new byte[lenght]; for (int i = 0; i < lenght; i++) buffer[i] = buf[i]; + string name = string.Format("{0}({1})", wm.Name, wm.SerialNr); + /// if ((messageID == MessageID.Configuration) && (offset == 0) && (lenght == WaterMeters.iPerl.ConfigStruct.Length)) { - rfidDataLogger.InfoFormat("{0}, ReadRequestPort({1},...) returned {2} {3}", wm.Name, messageID, retv, (retv != 0) ? "!" : WaterMeters.iPerl.ConfigStruct.FromByteArray(buffer).ToString()); + rfidDataLogger.InfoFormat("{0}: ReadRequestPort({1},...) returned {2} {3}", name, messageID, retv, (retv != 0) ? "!" : WaterMeters.iPerl.ConfigStruct.FromByteArray(buffer).ToString()); } else if ((messageID == MessageID.Calibration) && (offset == 0) && (lenght == WaterMeters.iPerl.CalibrationStruct.Length)) { - rfidDataLogger.InfoFormat("{0}, ReadRequestPort({1},...) returned {2} {3}", wm.Name, messageID, retv, (retv != 0) ? "!" : WaterMeters.iPerl.CalibrationStruct.FromByteArray(buffer).ToString()); + rfidDataLogger.InfoFormat("{0}: ReadRequestPort({1},...) returned {2} {3}", name, messageID, retv, (retv != 0) ? "!" : WaterMeters.iPerl.CalibrationStruct.FromByteArray(buffer).ToString()); } else { - rfidDataLogger.InfoFormat("{0}, ReadRequestPort({1}, {2}, {3}, ...) returned {4} {5}", wm.Name, messageID, offset, lenght, retv, (retv != 0) ? "!" : ""); + rfidDataLogger.InfoFormat("{0}: ReadRequestPort({1}, {2}, {3}, ...) returned {4} {5}", name, messageID, offset, lenght, retv, (retv != 0) ? "!" : ""); } } @@ -199,25 +201,27 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication retv = 0; } - if (lenght == 1) + string name = string.Format("{0}({1})", wm.Name, wm.SerialNr); + /// + if (lenght == 1) { - rfidDataLogger.InfoFormat("{0}, WriteRequestPort({2}, {3}, {4}, {5}) returned {1} {6}", wm.Name, retv, messageID, offset, lenght, pBuf[0].ToString("X2"), (retv != 0) ? "!" : ""); + rfidDataLogger.InfoFormat("{0}: WriteRequestPort({2}, {3}, {4}, {5}) returned {1} {6}", name, retv, messageID, offset, lenght, pBuf[0].ToString("X2"), (retv != 0) ? "!" : ""); } else if (lenght == 2) { if (messageID == MessageID.Calibration && offset == 2) { UInt16 calibFactor = (UInt16)(pBuf[0] + 256 * pBuf[1]); - rfidDataLogger.InfoFormat("{0}, WriteRequestPort(calibFactor={1}) returned {2} {3}", wm.Name, calibFactor, retv, (retv != 0) ? "!" : ""); + rfidDataLogger.InfoFormat("{0}: WriteRequestPort(calibFactor={1}) returned {2} {3}", name, calibFactor, retv, (retv != 0) ? "!" : ""); } else { - rfidDataLogger.InfoFormat("{0}, WriteRequestPort({2}, {3}, {4}, {5} {6}) returned {1} {7}", wm.Name, retv, messageID, offset, lenght, pBuf[0].ToString("X2"), pBuf[1].ToString("X2"), (retv != 0) ? "!" : ""); + rfidDataLogger.InfoFormat("{0}: WriteRequestPort({2}, {3}, {4}, {5} {6}) returned {1} {7}", name, retv, messageID, offset, lenght, pBuf[0].ToString("X2"), pBuf[1].ToString("X2"), (retv != 0) ? "!" : ""); } } else { - rfidDataLogger.InfoFormat("{0}, WriteRequestPort({2}, {3}, {4}, {5} {6} ...) returned {1} {7}", wm.Name, retv, messageID, offset, lenght, pBuf[0].ToString("X2"), pBuf[1].ToString("X2"), (retv != 0) ? "!" : ""); + rfidDataLogger.InfoFormat("{0}: WriteRequestPort({2}, {3}, {4}, {5} {6} ...) returned {1} {7}", name, retv, messageID, offset, lenght, pBuf[0].ToString("X2"), pBuf[1].ToString("X2"), (retv != 0) ? "!" : ""); } } return retv; @@ -245,6 +249,7 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication int textBoxesCount; Label[] labels; + TextBox[] counters; TextBox[] messages; static IList waterMeters; @@ -289,6 +294,19 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication wmLabel41, wmLabel42, wmLabel43, wmLabel44, wmLabel45, wmLabel46, wmLabel47, wmLabel48, }; + counters = new TextBox[48] + { + textBox1, textBox2, textBox3, textBox4, textBox5, + textBox6, textBox7, textBox8, textBox9, textBox10, + textBox11, textBox12, textBox13, textBox14, textBox15, + textBox16, textBox17, textBox18, textBox19, textBox20, + textBox21, textBox22, textBox23, textBox24, textBox25, + textBox26, textBox27, textBox28, textBox29, textBox30, + textBox31, textBox32, textBox33, textBox34, textBox35, + textBox36, textBox37, textBox38, textBox39, textBox40, + textBox41, textBox42, textBox43, textBox44, textBox45, + textBox46, textBox47, textBox48, + }; messages = new TextBox[48] { wmTextBox1, wmTextBox2, wmTextBox3, wmTextBox4, wmTextBox5, @@ -438,6 +456,7 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication for (int i = 0; i < lineSize; i++) { labels[dest] = labels[l * lineSize + l * gap + i]; + counters[dest] = counters[l * lineSize + l * gap + i]; messages[dest] = messages[l * lineSize + l * gap + i]; dest++; } @@ -471,7 +490,7 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication //} //else { - labels[i].Visible = messages[i].Visible = true; + labels[i].Visible = counters[i].Visible = messages[i].Visible = true; messages[i].Text = "---"; } } @@ -480,6 +499,13 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication Left = (ls.iPerlCommunicationsFormLeft != 0) ? ls.iPerlCommunicationsFormLeft : 150; Top = (ls.iPerlCommunicationsFormTop != 0) ? ls.iPerlCommunicationsFormTop : 150; + /// Reset opto-data indication + for (int i = 0; i < waterMeters.Count; i++) + { + waterMeters[i].FlushedDataCount = 0; + counters[i].Text = "0"; + } + /// /// Start worker threads, etc. /// @@ -1051,6 +1077,11 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication { if (data.WMNr >= 0) messages[data.WMNr].Text = data.CommMessage; + for (int i = 0; i < waterMeters.Count; i++) + { + counters[i].Text = (waterMeters[i].FlushedDataCount % 1000).ToString(); + } + lock (this) { if (++completedCommCount < rfidPortNrs.Count) return; diff --git a/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.designer.cs b/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.designer.cs index 6012874ec..13bc239a1 100644 --- a/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.designer.cs +++ b/TestBenchFramework/BenchControl/TestMethods/iPerlCommunication/iPerlCommunicationForm.designer.cs @@ -32,1186 +32,1714 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication /// private void InitializeComponent() { - this.wmTextBox2 = new System.Windows.Forms.TextBox(); - this.wmLabel2 = new System.Windows.Forms.Label(); - this.wmLabel1 = new System.Windows.Forms.Label(); - this.wmTextBox3 = new System.Windows.Forms.TextBox(); - this.wmLabel3 = new System.Windows.Forms.Label(); - this.wmTextBox4 = new System.Windows.Forms.TextBox(); - this.wmLabel4 = new System.Windows.Forms.Label(); - this.wmTextBox5 = new System.Windows.Forms.TextBox(); - this.wmLabel5 = new System.Windows.Forms.Label(); - this.wmTextBox6 = new System.Windows.Forms.TextBox(); - this.wmLabel6 = new System.Windows.Forms.Label(); - this.wmTextBox1 = new System.Windows.Forms.TextBox(); - this.wmTextBox7 = new System.Windows.Forms.TextBox(); - this.wmLabel7 = new System.Windows.Forms.Label(); - this.wmTextBox8 = new System.Windows.Forms.TextBox(); - this.wmLabel8 = new System.Windows.Forms.Label(); - this.wmTextBox9 = new System.Windows.Forms.TextBox(); - this.wmLabel9 = new System.Windows.Forms.Label(); - this.wmTextBox10 = new System.Windows.Forms.TextBox(); - this.wmLabel10 = new System.Windows.Forms.Label(); - this.wmTextBox12 = new System.Windows.Forms.TextBox(); - this.wmLabel12 = new System.Windows.Forms.Label(); - this.wmTextBox11 = new System.Windows.Forms.TextBox(); - this.wmLabel11 = new System.Windows.Forms.Label(); - this.wmTextBox24 = new System.Windows.Forms.TextBox(); - this.wmLabel24 = new System.Windows.Forms.Label(); - this.wmTextBox23 = new System.Windows.Forms.TextBox(); - this.wmLabel23 = new System.Windows.Forms.Label(); - this.wmTextBox22 = new System.Windows.Forms.TextBox(); - this.wmLabel22 = new System.Windows.Forms.Label(); - this.wmTextBox21 = new System.Windows.Forms.TextBox(); - this.wmLabel21 = new System.Windows.Forms.Label(); - this.wmTextBox20 = new System.Windows.Forms.TextBox(); - this.wmLabel20 = new System.Windows.Forms.Label(); - this.wmTextBox19 = new System.Windows.Forms.TextBox(); - this.wmLabel19 = new System.Windows.Forms.Label(); - this.wmTextBox18 = new System.Windows.Forms.TextBox(); - this.wmLabel18 = new System.Windows.Forms.Label(); - this.wmTextBox17 = new System.Windows.Forms.TextBox(); - this.wmLabel17 = new System.Windows.Forms.Label(); - this.wmTextBox16 = new System.Windows.Forms.TextBox(); - this.wmLabel16 = new System.Windows.Forms.Label(); - this.wmTextBox15 = new System.Windows.Forms.TextBox(); - this.wmLabel15 = new System.Windows.Forms.Label(); - this.wmTextBox14 = new System.Windows.Forms.TextBox(); - this.wmLabel14 = new System.Windows.Forms.Label(); - this.wmTextBox13 = new System.Windows.Forms.TextBox(); - this.wmLabel13 = new System.Windows.Forms.Label(); - this.wmTextBox48 = new System.Windows.Forms.TextBox(); - this.wmLabel48 = new System.Windows.Forms.Label(); - this.wmTextBox47 = new System.Windows.Forms.TextBox(); - this.wmLabel47 = new System.Windows.Forms.Label(); - this.wmTextBox46 = new System.Windows.Forms.TextBox(); - this.wmLabel46 = new System.Windows.Forms.Label(); - this.wmTextBox45 = new System.Windows.Forms.TextBox(); - this.wmLabel45 = new System.Windows.Forms.Label(); - this.wmTextBox44 = new System.Windows.Forms.TextBox(); - this.wmLabel44 = new System.Windows.Forms.Label(); - this.wmTextBox43 = new System.Windows.Forms.TextBox(); - this.wmLabel43 = new System.Windows.Forms.Label(); - this.wmTextBox42 = new System.Windows.Forms.TextBox(); - this.wmLabel42 = new System.Windows.Forms.Label(); - this.wmTextBox41 = new System.Windows.Forms.TextBox(); - this.wmLabel41 = new System.Windows.Forms.Label(); - this.wmTextBox40 = new System.Windows.Forms.TextBox(); - this.wmLabel40 = new System.Windows.Forms.Label(); - this.wmTextBox39 = new System.Windows.Forms.TextBox(); - this.wmLabel39 = new System.Windows.Forms.Label(); - this.wmTextBox38 = new System.Windows.Forms.TextBox(); - this.wmLabel38 = new System.Windows.Forms.Label(); - this.wmTextBox37 = new System.Windows.Forms.TextBox(); - this.wmLabel37 = new System.Windows.Forms.Label(); - this.wmTextBox36 = new System.Windows.Forms.TextBox(); - this.wmLabel36 = new System.Windows.Forms.Label(); - this.wmTextBox35 = new System.Windows.Forms.TextBox(); - this.wmLabel35 = new System.Windows.Forms.Label(); - this.wmTextBox34 = new System.Windows.Forms.TextBox(); - this.wmLabel34 = new System.Windows.Forms.Label(); - this.wmTextBox33 = new System.Windows.Forms.TextBox(); - this.wmLabel33 = new System.Windows.Forms.Label(); - this.wmTextBox32 = new System.Windows.Forms.TextBox(); - this.wmLabel32 = new System.Windows.Forms.Label(); - this.wmTextBox31 = new System.Windows.Forms.TextBox(); - this.wmLabel31 = new System.Windows.Forms.Label(); - this.wmTextBox30 = new System.Windows.Forms.TextBox(); - this.wmLabel30 = new System.Windows.Forms.Label(); - this.wmTextBox29 = new System.Windows.Forms.TextBox(); - this.wmLabel29 = new System.Windows.Forms.Label(); - this.wmTextBox28 = new System.Windows.Forms.TextBox(); - this.wmLabel28 = new System.Windows.Forms.Label(); - this.wmTextBox27 = new System.Windows.Forms.TextBox(); - this.wmLabel27 = new System.Windows.Forms.Label(); - this.wmTextBox26 = new System.Windows.Forms.TextBox(); - this.wmLabel26 = new System.Windows.Forms.Label(); - this.wmTextBox25 = new System.Windows.Forms.TextBox(); - this.wmLabel25 = new System.Windows.Forms.Label(); - this.activityLabel = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // wmTextBox2 - // - this.wmTextBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox2.Location = new System.Drawing.Point(191, 118); - this.wmTextBox2.Name = "wmTextBox2"; - this.wmTextBox2.Size = new System.Drawing.Size(380, 23); - this.wmTextBox2.TabIndex = 1; - this.wmTextBox2.Visible = false; - // - // wmLabel2 - // - this.wmLabel2.AutoSize = true; - this.wmLabel2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel2.Location = new System.Drawing.Point(26, 124); - this.wmLabel2.Name = "wmLabel2"; - this.wmLabel2.Size = new System.Drawing.Size(40, 16); - this.wmLabel2.TabIndex = 0; - this.wmLabel2.Text = "WM2"; - this.wmLabel2.Visible = false; - // - // wmLabel1 - // - this.wmLabel1.AutoSize = true; - this.wmLabel1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel1.Location = new System.Drawing.Point(26, 95); - this.wmLabel1.Name = "wmLabel1"; - this.wmLabel1.Size = new System.Drawing.Size(40, 16); - this.wmLabel1.TabIndex = 0; - this.wmLabel1.Text = "WM1"; - this.wmLabel1.Visible = false; - // - // wmTextBox3 - // - this.wmTextBox3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox3.Location = new System.Drawing.Point(191, 147); - this.wmTextBox3.Name = "wmTextBox3"; - this.wmTextBox3.Size = new System.Drawing.Size(380, 23); - this.wmTextBox3.TabIndex = 1; - this.wmTextBox3.Visible = false; - // - // wmLabel3 - // - this.wmLabel3.AutoSize = true; - this.wmLabel3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel3.Location = new System.Drawing.Point(26, 153); - this.wmLabel3.Name = "wmLabel3"; - this.wmLabel3.Size = new System.Drawing.Size(40, 16); - this.wmLabel3.TabIndex = 0; - this.wmLabel3.Text = "WM3"; - this.wmLabel3.Visible = false; - // - // wmTextBox4 - // - this.wmTextBox4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox4.Location = new System.Drawing.Point(191, 176); - this.wmTextBox4.Name = "wmTextBox4"; - this.wmTextBox4.Size = new System.Drawing.Size(380, 23); - this.wmTextBox4.TabIndex = 1; - this.wmTextBox4.Visible = false; - // - // wmLabel4 - // - this.wmLabel4.AutoSize = true; - this.wmLabel4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel4.Location = new System.Drawing.Point(26, 182); - this.wmLabel4.Name = "wmLabel4"; - this.wmLabel4.Size = new System.Drawing.Size(69, 16); - this.wmLabel4.TabIndex = 0; - this.wmLabel4.Text = "Error [%]"; - this.wmLabel4.Visible = false; - // - // wmTextBox5 - // - this.wmTextBox5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox5.Location = new System.Drawing.Point(191, 205); - this.wmTextBox5.Name = "wmTextBox5"; - this.wmTextBox5.Size = new System.Drawing.Size(380, 23); - this.wmTextBox5.TabIndex = 1; - this.wmTextBox5.Visible = false; - // - // wmLabel5 - // - this.wmLabel5.AutoSize = true; - this.wmLabel5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel5.Location = new System.Drawing.Point(26, 211); - this.wmLabel5.Name = "wmLabel5"; - this.wmLabel5.Size = new System.Drawing.Size(69, 16); - this.wmLabel5.TabIndex = 0; - this.wmLabel5.Text = "Error [%]"; - this.wmLabel5.Visible = false; - // - // wmTextBox6 - // - this.wmTextBox6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox6.Location = new System.Drawing.Point(191, 234); - this.wmTextBox6.Name = "wmTextBox6"; - this.wmTextBox6.Size = new System.Drawing.Size(380, 23); - this.wmTextBox6.TabIndex = 1; - this.wmTextBox6.Visible = false; - // - // wmLabel6 - // - this.wmLabel6.AutoSize = true; - this.wmLabel6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel6.Location = new System.Drawing.Point(26, 241); - this.wmLabel6.Name = "wmLabel6"; - this.wmLabel6.Size = new System.Drawing.Size(69, 16); - this.wmLabel6.TabIndex = 0; - this.wmLabel6.Text = "Error [%]"; - this.wmLabel6.Visible = false; - // - // wmTextBox1 - // - this.wmTextBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox1.Location = new System.Drawing.Point(191, 89); - this.wmTextBox1.Name = "wmTextBox1"; - this.wmTextBox1.Size = new System.Drawing.Size(380, 23); - this.wmTextBox1.TabIndex = 1; - this.wmTextBox1.Visible = false; - // - // wmTextBox7 - // - this.wmTextBox7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox7.Location = new System.Drawing.Point(191, 263); - this.wmTextBox7.Name = "wmTextBox7"; - this.wmTextBox7.Size = new System.Drawing.Size(380, 23); - this.wmTextBox7.TabIndex = 9; - this.wmTextBox7.Visible = false; - // - // wmLabel7 - // - this.wmLabel7.AutoSize = true; - this.wmLabel7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel7.Location = new System.Drawing.Point(26, 270); - this.wmLabel7.Name = "wmLabel7"; - this.wmLabel7.Size = new System.Drawing.Size(69, 16); - this.wmLabel7.TabIndex = 8; - this.wmLabel7.Text = "Error [%]"; - this.wmLabel7.Visible = false; - // - // wmTextBox8 - // - this.wmTextBox8.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox8.Location = new System.Drawing.Point(191, 292); - this.wmTextBox8.Name = "wmTextBox8"; - this.wmTextBox8.Size = new System.Drawing.Size(380, 23); - this.wmTextBox8.TabIndex = 11; - this.wmTextBox8.Visible = false; - // - // wmLabel8 - // - this.wmLabel8.AutoSize = true; - this.wmLabel8.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel8.Location = new System.Drawing.Point(26, 299); - this.wmLabel8.Name = "wmLabel8"; - this.wmLabel8.Size = new System.Drawing.Size(69, 16); - this.wmLabel8.TabIndex = 10; - this.wmLabel8.Text = "Error [%]"; - this.wmLabel8.Visible = false; - // - // wmTextBox9 - // - this.wmTextBox9.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox9.Location = new System.Drawing.Point(191, 321); - this.wmTextBox9.Name = "wmTextBox9"; - this.wmTextBox9.Size = new System.Drawing.Size(380, 23); - this.wmTextBox9.TabIndex = 13; - this.wmTextBox9.Visible = false; - // - // wmLabel9 - // - this.wmLabel9.AutoSize = true; - this.wmLabel9.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel9.Location = new System.Drawing.Point(26, 327); - this.wmLabel9.Name = "wmLabel9"; - this.wmLabel9.Size = new System.Drawing.Size(69, 16); - this.wmLabel9.TabIndex = 12; - this.wmLabel9.Text = "Error [%]"; - this.wmLabel9.Visible = false; - // - // wmTextBox10 - // - this.wmTextBox10.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox10.Location = new System.Drawing.Point(191, 350); - this.wmTextBox10.Name = "wmTextBox10"; - this.wmTextBox10.Size = new System.Drawing.Size(380, 23); - this.wmTextBox10.TabIndex = 15; - this.wmTextBox10.Visible = false; - // - // wmLabel10 - // - this.wmLabel10.AutoSize = true; - this.wmLabel10.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel10.Location = new System.Drawing.Point(26, 356); - this.wmLabel10.Name = "wmLabel10"; - this.wmLabel10.Size = new System.Drawing.Size(69, 16); - this.wmLabel10.TabIndex = 14; - this.wmLabel10.Text = "Error [%]"; - this.wmLabel10.Visible = false; - // - // wmTextBox12 - // - this.wmTextBox12.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox12.Location = new System.Drawing.Point(191, 408); - this.wmTextBox12.Name = "wmTextBox12"; - this.wmTextBox12.Size = new System.Drawing.Size(380, 23); - this.wmTextBox12.TabIndex = 19; - this.wmTextBox12.Visible = false; - // - // wmLabel12 - // - this.wmLabel12.AutoSize = true; - this.wmLabel12.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel12.Location = new System.Drawing.Point(26, 414); - this.wmLabel12.Name = "wmLabel12"; - this.wmLabel12.Size = new System.Drawing.Size(69, 16); - this.wmLabel12.TabIndex = 18; - this.wmLabel12.Text = "Error [%]"; - this.wmLabel12.Visible = false; - // - // wmTextBox11 - // - this.wmTextBox11.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox11.Location = new System.Drawing.Point(191, 379); - this.wmTextBox11.Name = "wmTextBox11"; - this.wmTextBox11.Size = new System.Drawing.Size(380, 23); - this.wmTextBox11.TabIndex = 17; - this.wmTextBox11.Visible = false; - // - // wmLabel11 - // - this.wmLabel11.AutoSize = true; - this.wmLabel11.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel11.Location = new System.Drawing.Point(26, 385); - this.wmLabel11.Name = "wmLabel11"; - this.wmLabel11.Size = new System.Drawing.Size(69, 16); - this.wmLabel11.TabIndex = 16; - this.wmLabel11.Text = "Error [%]"; - this.wmLabel11.Visible = false; - // - // wmTextBox24 - // - this.wmTextBox24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox24.Location = new System.Drawing.Point(191, 756); - this.wmTextBox24.Name = "wmTextBox24"; - this.wmTextBox24.Size = new System.Drawing.Size(380, 23); - this.wmTextBox24.TabIndex = 43; - this.wmTextBox24.Visible = false; - // - // wmLabel24 - // - this.wmLabel24.AutoSize = true; - this.wmLabel24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel24.Location = new System.Drawing.Point(26, 762); - this.wmLabel24.Name = "wmLabel24"; - this.wmLabel24.Size = new System.Drawing.Size(69, 16); - this.wmLabel24.TabIndex = 42; - this.wmLabel24.Text = "Error [%]"; - this.wmLabel24.Visible = false; - // - // wmTextBox23 - // - this.wmTextBox23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox23.Location = new System.Drawing.Point(191, 727); - this.wmTextBox23.Name = "wmTextBox23"; - this.wmTextBox23.Size = new System.Drawing.Size(380, 23); - this.wmTextBox23.TabIndex = 41; - this.wmTextBox23.Visible = false; - // - // wmLabel23 - // - this.wmLabel23.AutoSize = true; - this.wmLabel23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel23.Location = new System.Drawing.Point(26, 733); - this.wmLabel23.Name = "wmLabel23"; - this.wmLabel23.Size = new System.Drawing.Size(69, 16); - this.wmLabel23.TabIndex = 40; - this.wmLabel23.Text = "Error [%]"; - this.wmLabel23.Visible = false; - // - // wmTextBox22 - // - this.wmTextBox22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox22.Location = new System.Drawing.Point(191, 698); - this.wmTextBox22.Name = "wmTextBox22"; - this.wmTextBox22.Size = new System.Drawing.Size(380, 23); - this.wmTextBox22.TabIndex = 39; - this.wmTextBox22.Visible = false; - // - // wmLabel22 - // - this.wmLabel22.AutoSize = true; - this.wmLabel22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel22.Location = new System.Drawing.Point(26, 704); - this.wmLabel22.Name = "wmLabel22"; - this.wmLabel22.Size = new System.Drawing.Size(69, 16); - this.wmLabel22.TabIndex = 38; - this.wmLabel22.Text = "Error [%]"; - this.wmLabel22.Visible = false; - // - // wmTextBox21 - // - this.wmTextBox21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox21.Location = new System.Drawing.Point(191, 669); - this.wmTextBox21.Name = "wmTextBox21"; - this.wmTextBox21.Size = new System.Drawing.Size(380, 23); - this.wmTextBox21.TabIndex = 37; - this.wmTextBox21.Visible = false; - // - // wmLabel21 - // - this.wmLabel21.AutoSize = true; - this.wmLabel21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel21.Location = new System.Drawing.Point(26, 675); - this.wmLabel21.Name = "wmLabel21"; - this.wmLabel21.Size = new System.Drawing.Size(69, 16); - this.wmLabel21.TabIndex = 36; - this.wmLabel21.Text = "Error [%]"; - this.wmLabel21.Visible = false; - // - // wmTextBox20 - // - this.wmTextBox20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox20.Location = new System.Drawing.Point(191, 640); - this.wmTextBox20.Name = "wmTextBox20"; - this.wmTextBox20.Size = new System.Drawing.Size(380, 23); - this.wmTextBox20.TabIndex = 35; - this.wmTextBox20.Visible = false; - // - // wmLabel20 - // - this.wmLabel20.AutoSize = true; - this.wmLabel20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel20.Location = new System.Drawing.Point(26, 647); - this.wmLabel20.Name = "wmLabel20"; - this.wmLabel20.Size = new System.Drawing.Size(69, 16); - this.wmLabel20.TabIndex = 34; - this.wmLabel20.Text = "Error [%]"; - this.wmLabel20.Visible = false; - // - // wmTextBox19 - // - this.wmTextBox19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox19.Location = new System.Drawing.Point(191, 611); - this.wmTextBox19.Name = "wmTextBox19"; - this.wmTextBox19.Size = new System.Drawing.Size(380, 23); - this.wmTextBox19.TabIndex = 33; - this.wmTextBox19.Visible = false; - // - // wmLabel19 - // - this.wmLabel19.AutoSize = true; - this.wmLabel19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel19.Location = new System.Drawing.Point(26, 618); - this.wmLabel19.Name = "wmLabel19"; - this.wmLabel19.Size = new System.Drawing.Size(69, 16); - this.wmLabel19.TabIndex = 32; - this.wmLabel19.Text = "Error [%]"; - this.wmLabel19.Visible = false; - // - // wmTextBox18 - // - this.wmTextBox18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox18.Location = new System.Drawing.Point(191, 582); - this.wmTextBox18.Name = "wmTextBox18"; - this.wmTextBox18.Size = new System.Drawing.Size(380, 23); - this.wmTextBox18.TabIndex = 27; - this.wmTextBox18.Visible = false; - // - // wmLabel18 - // - this.wmLabel18.AutoSize = true; - this.wmLabel18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel18.Location = new System.Drawing.Point(26, 589); - this.wmLabel18.Name = "wmLabel18"; - this.wmLabel18.Size = new System.Drawing.Size(69, 16); - this.wmLabel18.TabIndex = 23; - this.wmLabel18.Text = "Error [%]"; - this.wmLabel18.Visible = false; - // - // wmTextBox17 - // - this.wmTextBox17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox17.Location = new System.Drawing.Point(191, 553); - this.wmTextBox17.Name = "wmTextBox17"; - this.wmTextBox17.Size = new System.Drawing.Size(380, 23); - this.wmTextBox17.TabIndex = 26; - this.wmTextBox17.Visible = false; - // - // wmLabel17 - // - this.wmLabel17.AutoSize = true; - this.wmLabel17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel17.Location = new System.Drawing.Point(26, 559); - this.wmLabel17.Name = "wmLabel17"; - this.wmLabel17.Size = new System.Drawing.Size(69, 16); - this.wmLabel17.TabIndex = 22; - this.wmLabel17.Text = "Error [%]"; - this.wmLabel17.Visible = false; - // - // wmTextBox16 - // - this.wmTextBox16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox16.Location = new System.Drawing.Point(191, 524); - this.wmTextBox16.Name = "wmTextBox16"; - this.wmTextBox16.Size = new System.Drawing.Size(380, 23); - this.wmTextBox16.TabIndex = 30; - this.wmTextBox16.Visible = false; - // - // wmLabel16 - // - this.wmLabel16.AutoSize = true; - this.wmLabel16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel16.Location = new System.Drawing.Point(26, 530); - this.wmLabel16.Name = "wmLabel16"; - this.wmLabel16.Size = new System.Drawing.Size(69, 16); - this.wmLabel16.TabIndex = 21; - this.wmLabel16.Text = "Error [%]"; - this.wmLabel16.Visible = false; - // - // wmTextBox15 - // - this.wmTextBox15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox15.Location = new System.Drawing.Point(191, 495); - this.wmTextBox15.Name = "wmTextBox15"; - this.wmTextBox15.Size = new System.Drawing.Size(380, 23); - this.wmTextBox15.TabIndex = 31; - this.wmTextBox15.Visible = false; - // - // wmLabel15 - // - this.wmLabel15.AutoSize = true; - this.wmLabel15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel15.Location = new System.Drawing.Point(26, 501); - this.wmLabel15.Name = "wmLabel15"; - this.wmLabel15.Size = new System.Drawing.Size(69, 16); - this.wmLabel15.TabIndex = 20; - this.wmLabel15.Text = "Error [%]"; - this.wmLabel15.Visible = false; - // - // wmTextBox14 - // - this.wmTextBox14.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox14.Location = new System.Drawing.Point(191, 466); - this.wmTextBox14.Name = "wmTextBox14"; - this.wmTextBox14.Size = new System.Drawing.Size(380, 23); - this.wmTextBox14.TabIndex = 28; - this.wmTextBox14.Visible = false; - // - // wmLabel14 - // - this.wmLabel14.AutoSize = true; - this.wmLabel14.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel14.Location = new System.Drawing.Point(26, 472); - this.wmLabel14.Name = "wmLabel14"; - this.wmLabel14.Size = new System.Drawing.Size(69, 16); - this.wmLabel14.TabIndex = 25; - this.wmLabel14.Text = "Error [%]"; - this.wmLabel14.Visible = false; - // - // wmTextBox13 - // - this.wmTextBox13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox13.Location = new System.Drawing.Point(191, 437); - this.wmTextBox13.Name = "wmTextBox13"; - this.wmTextBox13.Size = new System.Drawing.Size(380, 23); - this.wmTextBox13.TabIndex = 29; - this.wmTextBox13.Visible = false; - // - // wmLabel13 - // - this.wmLabel13.AutoSize = true; - this.wmLabel13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel13.Location = new System.Drawing.Point(26, 443); - this.wmLabel13.Name = "wmLabel13"; - this.wmLabel13.Size = new System.Drawing.Size(69, 16); - this.wmLabel13.TabIndex = 24; - this.wmLabel13.Text = "Error [%]"; - this.wmLabel13.Visible = false; - // - // wmTextBox48 - // - this.wmTextBox48.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox48.Location = new System.Drawing.Point(752, 756); - this.wmTextBox48.Name = "wmTextBox48"; - this.wmTextBox48.Size = new System.Drawing.Size(380, 23); - this.wmTextBox48.TabIndex = 94; - this.wmTextBox48.Visible = false; - // - // wmLabel48 - // - this.wmLabel48.AutoSize = true; - this.wmLabel48.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel48.Location = new System.Drawing.Point(587, 762); - this.wmLabel48.Name = "wmLabel48"; - this.wmLabel48.Size = new System.Drawing.Size(69, 16); - this.wmLabel48.TabIndex = 93; - this.wmLabel48.Text = "Error [%]"; - this.wmLabel48.Visible = false; - // - // wmTextBox47 - // - this.wmTextBox47.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox47.Location = new System.Drawing.Point(752, 727); - this.wmTextBox47.Name = "wmTextBox47"; - this.wmTextBox47.Size = new System.Drawing.Size(380, 23); - this.wmTextBox47.TabIndex = 92; - this.wmTextBox47.Visible = false; - // - // wmLabel47 - // - this.wmLabel47.AutoSize = true; - this.wmLabel47.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel47.Location = new System.Drawing.Point(587, 733); - this.wmLabel47.Name = "wmLabel47"; - this.wmLabel47.Size = new System.Drawing.Size(69, 16); - this.wmLabel47.TabIndex = 91; - this.wmLabel47.Text = "Error [%]"; - this.wmLabel47.Visible = false; - // - // wmTextBox46 - // - this.wmTextBox46.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox46.Location = new System.Drawing.Point(752, 698); - this.wmTextBox46.Name = "wmTextBox46"; - this.wmTextBox46.Size = new System.Drawing.Size(380, 23); - this.wmTextBox46.TabIndex = 90; - this.wmTextBox46.Visible = false; - // - // wmLabel46 - // - this.wmLabel46.AutoSize = true; - this.wmLabel46.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel46.Location = new System.Drawing.Point(587, 704); - this.wmLabel46.Name = "wmLabel46"; - this.wmLabel46.Size = new System.Drawing.Size(69, 16); - this.wmLabel46.TabIndex = 89; - this.wmLabel46.Text = "Error [%]"; - this.wmLabel46.Visible = false; - // - // wmTextBox45 - // - this.wmTextBox45.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox45.Location = new System.Drawing.Point(752, 669); - this.wmTextBox45.Name = "wmTextBox45"; - this.wmTextBox45.Size = new System.Drawing.Size(380, 23); - this.wmTextBox45.TabIndex = 88; - this.wmTextBox45.Visible = false; - // - // wmLabel45 - // - this.wmLabel45.AutoSize = true; - this.wmLabel45.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel45.Location = new System.Drawing.Point(587, 675); - this.wmLabel45.Name = "wmLabel45"; - this.wmLabel45.Size = new System.Drawing.Size(69, 16); - this.wmLabel45.TabIndex = 87; - this.wmLabel45.Text = "Error [%]"; - this.wmLabel45.Visible = false; - // - // wmTextBox44 - // - this.wmTextBox44.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox44.Location = new System.Drawing.Point(752, 640); - this.wmTextBox44.Name = "wmTextBox44"; - this.wmTextBox44.Size = new System.Drawing.Size(380, 23); - this.wmTextBox44.TabIndex = 86; - this.wmTextBox44.Visible = false; - // - // wmLabel44 - // - this.wmLabel44.AutoSize = true; - this.wmLabel44.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel44.Location = new System.Drawing.Point(587, 647); - this.wmLabel44.Name = "wmLabel44"; - this.wmLabel44.Size = new System.Drawing.Size(69, 16); - this.wmLabel44.TabIndex = 85; - this.wmLabel44.Text = "Error [%]"; - this.wmLabel44.Visible = false; - // - // wmTextBox43 - // - this.wmTextBox43.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox43.Location = new System.Drawing.Point(752, 611); - this.wmTextBox43.Name = "wmTextBox43"; - this.wmTextBox43.Size = new System.Drawing.Size(380, 23); - this.wmTextBox43.TabIndex = 84; - this.wmTextBox43.Visible = false; - // - // wmLabel43 - // - this.wmLabel43.AutoSize = true; - this.wmLabel43.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel43.Location = new System.Drawing.Point(587, 618); - this.wmLabel43.Name = "wmLabel43"; - this.wmLabel43.Size = new System.Drawing.Size(69, 16); - this.wmLabel43.TabIndex = 83; - this.wmLabel43.Text = "Error [%]"; - this.wmLabel43.Visible = false; - // - // wmTextBox42 - // - this.wmTextBox42.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox42.Location = new System.Drawing.Point(752, 582); - this.wmTextBox42.Name = "wmTextBox42"; - this.wmTextBox42.Size = new System.Drawing.Size(380, 23); - this.wmTextBox42.TabIndex = 78; - this.wmTextBox42.Visible = false; - // - // wmLabel42 - // - this.wmLabel42.AutoSize = true; - this.wmLabel42.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel42.Location = new System.Drawing.Point(587, 589); - this.wmLabel42.Name = "wmLabel42"; - this.wmLabel42.Size = new System.Drawing.Size(69, 16); - this.wmLabel42.TabIndex = 74; - this.wmLabel42.Text = "Error [%]"; - this.wmLabel42.Visible = false; - // - // wmTextBox41 - // - this.wmTextBox41.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox41.Location = new System.Drawing.Point(752, 553); - this.wmTextBox41.Name = "wmTextBox41"; - this.wmTextBox41.Size = new System.Drawing.Size(380, 23); - this.wmTextBox41.TabIndex = 77; - this.wmTextBox41.Visible = false; - // - // wmLabel41 - // - this.wmLabel41.AutoSize = true; - this.wmLabel41.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel41.Location = new System.Drawing.Point(587, 559); - this.wmLabel41.Name = "wmLabel41"; - this.wmLabel41.Size = new System.Drawing.Size(69, 16); - this.wmLabel41.TabIndex = 73; - this.wmLabel41.Text = "Error [%]"; - this.wmLabel41.Visible = false; - // - // wmTextBox40 - // - this.wmTextBox40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox40.Location = new System.Drawing.Point(752, 524); - this.wmTextBox40.Name = "wmTextBox40"; - this.wmTextBox40.Size = new System.Drawing.Size(380, 23); - this.wmTextBox40.TabIndex = 81; - this.wmTextBox40.Visible = false; - // - // wmLabel40 - // - this.wmLabel40.AutoSize = true; - this.wmLabel40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel40.Location = new System.Drawing.Point(587, 530); - this.wmLabel40.Name = "wmLabel40"; - this.wmLabel40.Size = new System.Drawing.Size(69, 16); - this.wmLabel40.TabIndex = 72; - this.wmLabel40.Text = "Error [%]"; - this.wmLabel40.Visible = false; - // - // wmTextBox39 - // - this.wmTextBox39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox39.Location = new System.Drawing.Point(752, 495); - this.wmTextBox39.Name = "wmTextBox39"; - this.wmTextBox39.Size = new System.Drawing.Size(380, 23); - this.wmTextBox39.TabIndex = 82; - this.wmTextBox39.Visible = false; - // - // wmLabel39 - // - this.wmLabel39.AutoSize = true; - this.wmLabel39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel39.Location = new System.Drawing.Point(587, 501); - this.wmLabel39.Name = "wmLabel39"; - this.wmLabel39.Size = new System.Drawing.Size(69, 16); - this.wmLabel39.TabIndex = 71; - this.wmLabel39.Text = "Error [%]"; - this.wmLabel39.Visible = false; - // - // wmTextBox38 - // - this.wmTextBox38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox38.Location = new System.Drawing.Point(752, 466); - this.wmTextBox38.Name = "wmTextBox38"; - this.wmTextBox38.Size = new System.Drawing.Size(380, 23); - this.wmTextBox38.TabIndex = 79; - this.wmTextBox38.Visible = false; - // - // wmLabel38 - // - this.wmLabel38.AutoSize = true; - this.wmLabel38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel38.Location = new System.Drawing.Point(587, 472); - this.wmLabel38.Name = "wmLabel38"; - this.wmLabel38.Size = new System.Drawing.Size(69, 16); - this.wmLabel38.TabIndex = 76; - this.wmLabel38.Text = "Error [%]"; - this.wmLabel38.Visible = false; - // - // wmTextBox37 - // - this.wmTextBox37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox37.Location = new System.Drawing.Point(752, 437); - this.wmTextBox37.Name = "wmTextBox37"; - this.wmTextBox37.Size = new System.Drawing.Size(380, 23); - this.wmTextBox37.TabIndex = 80; - this.wmTextBox37.Visible = false; - // - // wmLabel37 - // - this.wmLabel37.AutoSize = true; - this.wmLabel37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel37.Location = new System.Drawing.Point(587, 443); - this.wmLabel37.Name = "wmLabel37"; - this.wmLabel37.Size = new System.Drawing.Size(69, 16); - this.wmLabel37.TabIndex = 75; - this.wmLabel37.Text = "Error [%]"; - this.wmLabel37.Visible = false; - // - // wmTextBox36 - // - this.wmTextBox36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox36.Location = new System.Drawing.Point(752, 408); - this.wmTextBox36.Name = "wmTextBox36"; - this.wmTextBox36.Size = new System.Drawing.Size(380, 23); - this.wmTextBox36.TabIndex = 70; - this.wmTextBox36.Visible = false; - // - // wmLabel36 - // - this.wmLabel36.AutoSize = true; - this.wmLabel36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel36.Location = new System.Drawing.Point(587, 414); - this.wmLabel36.Name = "wmLabel36"; - this.wmLabel36.Size = new System.Drawing.Size(69, 16); - this.wmLabel36.TabIndex = 69; - this.wmLabel36.Text = "Error [%]"; - this.wmLabel36.Visible = false; - // - // wmTextBox35 - // - this.wmTextBox35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox35.Location = new System.Drawing.Point(752, 379); - this.wmTextBox35.Name = "wmTextBox35"; - this.wmTextBox35.Size = new System.Drawing.Size(380, 23); - this.wmTextBox35.TabIndex = 68; - this.wmTextBox35.Visible = false; - // - // wmLabel35 - // - this.wmLabel35.AutoSize = true; - this.wmLabel35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel35.Location = new System.Drawing.Point(587, 385); - this.wmLabel35.Name = "wmLabel35"; - this.wmLabel35.Size = new System.Drawing.Size(69, 16); - this.wmLabel35.TabIndex = 67; - this.wmLabel35.Text = "Error [%]"; - this.wmLabel35.Visible = false; - // - // wmTextBox34 - // - this.wmTextBox34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox34.Location = new System.Drawing.Point(752, 350); - this.wmTextBox34.Name = "wmTextBox34"; - this.wmTextBox34.Size = new System.Drawing.Size(380, 23); - this.wmTextBox34.TabIndex = 66; - this.wmTextBox34.Visible = false; - // - // wmLabel34 - // - this.wmLabel34.AutoSize = true; - this.wmLabel34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel34.Location = new System.Drawing.Point(587, 356); - this.wmLabel34.Name = "wmLabel34"; - this.wmLabel34.Size = new System.Drawing.Size(69, 16); - this.wmLabel34.TabIndex = 65; - this.wmLabel34.Text = "Error [%]"; - this.wmLabel34.Visible = false; - // - // wmTextBox33 - // - this.wmTextBox33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox33.Location = new System.Drawing.Point(752, 321); - this.wmTextBox33.Name = "wmTextBox33"; - this.wmTextBox33.Size = new System.Drawing.Size(380, 23); - this.wmTextBox33.TabIndex = 64; - this.wmTextBox33.Visible = false; - // - // wmLabel33 - // - this.wmLabel33.AutoSize = true; - this.wmLabel33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel33.Location = new System.Drawing.Point(587, 327); - this.wmLabel33.Name = "wmLabel33"; - this.wmLabel33.Size = new System.Drawing.Size(69, 16); - this.wmLabel33.TabIndex = 63; - this.wmLabel33.Text = "Error [%]"; - this.wmLabel33.Visible = false; - // - // wmTextBox32 - // - this.wmTextBox32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox32.Location = new System.Drawing.Point(752, 292); - this.wmTextBox32.Name = "wmTextBox32"; - this.wmTextBox32.Size = new System.Drawing.Size(380, 23); - this.wmTextBox32.TabIndex = 62; - this.wmTextBox32.Visible = false; - // - // wmLabel32 - // - this.wmLabel32.AutoSize = true; - this.wmLabel32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel32.Location = new System.Drawing.Point(587, 299); - this.wmLabel32.Name = "wmLabel32"; - this.wmLabel32.Size = new System.Drawing.Size(69, 16); - this.wmLabel32.TabIndex = 61; - this.wmLabel32.Text = "Error [%]"; - this.wmLabel32.Visible = false; - // - // wmTextBox31 - // - this.wmTextBox31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox31.Location = new System.Drawing.Point(752, 263); - this.wmTextBox31.Name = "wmTextBox31"; - this.wmTextBox31.Size = new System.Drawing.Size(380, 23); - this.wmTextBox31.TabIndex = 60; - this.wmTextBox31.Visible = false; - // - // wmLabel31 - // - this.wmLabel31.AutoSize = true; - this.wmLabel31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel31.Location = new System.Drawing.Point(587, 270); - this.wmLabel31.Name = "wmLabel31"; - this.wmLabel31.Size = new System.Drawing.Size(69, 16); - this.wmLabel31.TabIndex = 59; - this.wmLabel31.Text = "Error [%]"; - this.wmLabel31.Visible = false; - // - // wmTextBox30 - // - this.wmTextBox30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox30.Location = new System.Drawing.Point(752, 234); - this.wmTextBox30.Name = "wmTextBox30"; - this.wmTextBox30.Size = new System.Drawing.Size(380, 23); - this.wmTextBox30.TabIndex = 54; - this.wmTextBox30.Visible = false; - // - // wmLabel30 - // - this.wmLabel30.AutoSize = true; - this.wmLabel30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel30.Location = new System.Drawing.Point(587, 241); - this.wmLabel30.Name = "wmLabel30"; - this.wmLabel30.Size = new System.Drawing.Size(69, 16); - this.wmLabel30.TabIndex = 50; - this.wmLabel30.Text = "Error [%]"; - this.wmLabel30.Visible = false; - // - // wmTextBox29 - // - this.wmTextBox29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox29.Location = new System.Drawing.Point(752, 205); - this.wmTextBox29.Name = "wmTextBox29"; - this.wmTextBox29.Size = new System.Drawing.Size(380, 23); - this.wmTextBox29.TabIndex = 53; - this.wmTextBox29.Visible = false; - // - // wmLabel29 - // - this.wmLabel29.AutoSize = true; - this.wmLabel29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel29.Location = new System.Drawing.Point(587, 211); - this.wmLabel29.Name = "wmLabel29"; - this.wmLabel29.Size = new System.Drawing.Size(69, 16); - this.wmLabel29.TabIndex = 49; - this.wmLabel29.Text = "Error [%]"; - this.wmLabel29.Visible = false; - // - // wmTextBox28 - // - this.wmTextBox28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox28.Location = new System.Drawing.Point(752, 176); - this.wmTextBox28.Name = "wmTextBox28"; - this.wmTextBox28.Size = new System.Drawing.Size(380, 23); - this.wmTextBox28.TabIndex = 57; - this.wmTextBox28.Visible = false; - // - // wmLabel28 - // - this.wmLabel28.AutoSize = true; - this.wmLabel28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel28.Location = new System.Drawing.Point(587, 182); - this.wmLabel28.Name = "wmLabel28"; - this.wmLabel28.Size = new System.Drawing.Size(69, 16); - this.wmLabel28.TabIndex = 48; - this.wmLabel28.Text = "Error [%]"; - this.wmLabel28.Visible = false; - // - // wmTextBox27 - // - this.wmTextBox27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox27.Location = new System.Drawing.Point(752, 147); - this.wmTextBox27.Name = "wmTextBox27"; - this.wmTextBox27.Size = new System.Drawing.Size(380, 23); - this.wmTextBox27.TabIndex = 58; - this.wmTextBox27.Visible = false; - // - // wmLabel27 - // - this.wmLabel27.AutoSize = true; - this.wmLabel27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel27.Location = new System.Drawing.Point(587, 153); - this.wmLabel27.Name = "wmLabel27"; - this.wmLabel27.Size = new System.Drawing.Size(69, 16); - this.wmLabel27.TabIndex = 47; - this.wmLabel27.Text = "Error [%]"; - this.wmLabel27.Visible = false; - // - // wmTextBox26 - // - this.wmTextBox26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox26.Location = new System.Drawing.Point(752, 118); - this.wmTextBox26.Name = "wmTextBox26"; - this.wmTextBox26.Size = new System.Drawing.Size(380, 23); - this.wmTextBox26.TabIndex = 55; - this.wmTextBox26.Visible = false; - // - // wmLabel26 - // - this.wmLabel26.AutoSize = true; - this.wmLabel26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel26.Location = new System.Drawing.Point(587, 124); - this.wmLabel26.Name = "wmLabel26"; - this.wmLabel26.Size = new System.Drawing.Size(69, 16); - this.wmLabel26.TabIndex = 52; - this.wmLabel26.Text = "Error [%]"; - this.wmLabel26.Visible = false; - // - // wmTextBox25 - // - this.wmTextBox25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmTextBox25.Location = new System.Drawing.Point(752, 89); - this.wmTextBox25.Name = "wmTextBox25"; - this.wmTextBox25.Size = new System.Drawing.Size(380, 23); - this.wmTextBox25.TabIndex = 56; - this.wmTextBox25.Visible = false; - // - // wmLabel25 - // - this.wmLabel25.AutoSize = true; - this.wmLabel25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel25.Location = new System.Drawing.Point(587, 95); - this.wmLabel25.Name = "wmLabel25"; - this.wmLabel25.Size = new System.Drawing.Size(69, 16); - this.wmLabel25.TabIndex = 51; - this.wmLabel25.Text = "Error [%]"; - this.wmLabel25.Visible = false; - // - // activityLabel - // - this.activityLabel.AutoSize = true; - this.activityLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.activityLabel.Location = new System.Drawing.Point(31, 22); - this.activityLabel.Name = "activityLabel"; - this.activityLabel.Size = new System.Drawing.Size(225, 42); - this.activityLabel.TabIndex = 95; - this.activityLabel.Text = "Activity label"; - // - // iPerlCommunicationForm - // - 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(1161, 795); - this.Controls.Add(this.activityLabel); - this.Controls.Add(this.wmTextBox48); - this.Controls.Add(this.wmLabel48); - this.Controls.Add(this.wmTextBox47); - this.Controls.Add(this.wmLabel47); - this.Controls.Add(this.wmTextBox46); - this.Controls.Add(this.wmLabel46); - this.Controls.Add(this.wmTextBox45); - this.Controls.Add(this.wmLabel45); - this.Controls.Add(this.wmTextBox44); - this.Controls.Add(this.wmLabel44); - this.Controls.Add(this.wmTextBox43); - this.Controls.Add(this.wmLabel43); - this.Controls.Add(this.wmTextBox42); - this.Controls.Add(this.wmLabel42); - this.Controls.Add(this.wmTextBox41); - this.Controls.Add(this.wmLabel41); - this.Controls.Add(this.wmTextBox40); - this.Controls.Add(this.wmLabel40); - this.Controls.Add(this.wmTextBox39); - this.Controls.Add(this.wmLabel39); - this.Controls.Add(this.wmTextBox38); - this.Controls.Add(this.wmLabel38); - this.Controls.Add(this.wmTextBox37); - this.Controls.Add(this.wmLabel37); - this.Controls.Add(this.wmTextBox36); - this.Controls.Add(this.wmLabel36); - this.Controls.Add(this.wmTextBox35); - this.Controls.Add(this.wmLabel35); - this.Controls.Add(this.wmTextBox34); - this.Controls.Add(this.wmLabel34); - this.Controls.Add(this.wmTextBox33); - this.Controls.Add(this.wmLabel33); - this.Controls.Add(this.wmTextBox32); - this.Controls.Add(this.wmLabel32); - this.Controls.Add(this.wmTextBox31); - this.Controls.Add(this.wmLabel31); - this.Controls.Add(this.wmTextBox30); - this.Controls.Add(this.wmLabel30); - this.Controls.Add(this.wmTextBox29); - this.Controls.Add(this.wmLabel29); - this.Controls.Add(this.wmTextBox28); - this.Controls.Add(this.wmLabel28); - this.Controls.Add(this.wmTextBox27); - this.Controls.Add(this.wmLabel27); - this.Controls.Add(this.wmTextBox26); - this.Controls.Add(this.wmLabel26); - this.Controls.Add(this.wmTextBox25); - this.Controls.Add(this.wmLabel25); - this.Controls.Add(this.wmTextBox24); - this.Controls.Add(this.wmLabel24); - this.Controls.Add(this.wmTextBox23); - this.Controls.Add(this.wmLabel23); - this.Controls.Add(this.wmTextBox22); - this.Controls.Add(this.wmLabel22); - this.Controls.Add(this.wmTextBox21); - this.Controls.Add(this.wmLabel21); - this.Controls.Add(this.wmTextBox20); - this.Controls.Add(this.wmLabel20); - this.Controls.Add(this.wmTextBox19); - this.Controls.Add(this.wmLabel19); - this.Controls.Add(this.wmTextBox18); - this.Controls.Add(this.wmLabel18); - this.Controls.Add(this.wmTextBox17); - this.Controls.Add(this.wmLabel17); - this.Controls.Add(this.wmTextBox16); - this.Controls.Add(this.wmLabel16); - this.Controls.Add(this.wmTextBox15); - this.Controls.Add(this.wmLabel15); - this.Controls.Add(this.wmTextBox14); - this.Controls.Add(this.wmLabel14); - this.Controls.Add(this.wmTextBox13); - this.Controls.Add(this.wmLabel13); - this.Controls.Add(this.wmTextBox12); - this.Controls.Add(this.wmLabel12); - this.Controls.Add(this.wmTextBox11); - this.Controls.Add(this.wmLabel11); - this.Controls.Add(this.wmTextBox10); - this.Controls.Add(this.wmLabel10); - this.Controls.Add(this.wmTextBox9); - this.Controls.Add(this.wmLabel9); - this.Controls.Add(this.wmTextBox8); - this.Controls.Add(this.wmLabel8); - this.Controls.Add(this.wmTextBox7); - this.Controls.Add(this.wmLabel7); - this.Controls.Add(this.wmTextBox6); - this.Controls.Add(this.wmLabel6); - this.Controls.Add(this.wmTextBox5); - this.Controls.Add(this.wmLabel5); - this.Controls.Add(this.wmTextBox4); - this.Controls.Add(this.wmLabel4); - this.Controls.Add(this.wmTextBox3); - this.Controls.Add(this.wmLabel3); - this.Controls.Add(this.wmTextBox2); - this.Controls.Add(this.wmLabel2); - this.Controls.Add(this.wmTextBox1); - this.Controls.Add(this.wmLabel1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Name = "iPerlCommunicationForm"; - this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; - this.Text = "Water Meter States"; - this.TopMost = true; - this.Load += new System.EventHandler(this.iPerlCommunicationForm_Load); - this.ResumeLayout(false); - this.PerformLayout(); + this.wmTextBox2 = new System.Windows.Forms.TextBox(); + this.wmLabel2 = new System.Windows.Forms.Label(); + this.wmLabel1 = new System.Windows.Forms.Label(); + this.wmTextBox3 = new System.Windows.Forms.TextBox(); + this.wmLabel3 = new System.Windows.Forms.Label(); + this.wmTextBox4 = new System.Windows.Forms.TextBox(); + this.wmLabel4 = new System.Windows.Forms.Label(); + this.wmTextBox5 = new System.Windows.Forms.TextBox(); + this.wmLabel5 = new System.Windows.Forms.Label(); + this.wmTextBox6 = new System.Windows.Forms.TextBox(); + this.wmLabel6 = new System.Windows.Forms.Label(); + this.wmTextBox1 = new System.Windows.Forms.TextBox(); + this.wmTextBox7 = new System.Windows.Forms.TextBox(); + this.wmLabel7 = new System.Windows.Forms.Label(); + this.wmTextBox8 = new System.Windows.Forms.TextBox(); + this.wmLabel8 = new System.Windows.Forms.Label(); + this.wmTextBox9 = new System.Windows.Forms.TextBox(); + this.wmLabel9 = new System.Windows.Forms.Label(); + this.wmTextBox10 = new System.Windows.Forms.TextBox(); + this.wmLabel10 = new System.Windows.Forms.Label(); + this.wmTextBox12 = new System.Windows.Forms.TextBox(); + this.wmLabel12 = new System.Windows.Forms.Label(); + this.wmTextBox11 = new System.Windows.Forms.TextBox(); + this.wmLabel11 = new System.Windows.Forms.Label(); + this.wmTextBox24 = new System.Windows.Forms.TextBox(); + this.wmLabel24 = new System.Windows.Forms.Label(); + this.wmTextBox23 = new System.Windows.Forms.TextBox(); + this.wmLabel23 = new System.Windows.Forms.Label(); + this.wmTextBox22 = new System.Windows.Forms.TextBox(); + this.wmLabel22 = new System.Windows.Forms.Label(); + this.wmTextBox21 = new System.Windows.Forms.TextBox(); + this.wmLabel21 = new System.Windows.Forms.Label(); + this.wmTextBox20 = new System.Windows.Forms.TextBox(); + this.wmLabel20 = new System.Windows.Forms.Label(); + this.wmTextBox19 = new System.Windows.Forms.TextBox(); + this.wmLabel19 = new System.Windows.Forms.Label(); + this.wmTextBox18 = new System.Windows.Forms.TextBox(); + this.wmLabel18 = new System.Windows.Forms.Label(); + this.wmTextBox17 = new System.Windows.Forms.TextBox(); + this.wmLabel17 = new System.Windows.Forms.Label(); + this.wmTextBox16 = new System.Windows.Forms.TextBox(); + this.wmLabel16 = new System.Windows.Forms.Label(); + this.wmTextBox15 = new System.Windows.Forms.TextBox(); + this.wmLabel15 = new System.Windows.Forms.Label(); + this.wmTextBox14 = new System.Windows.Forms.TextBox(); + this.wmLabel14 = new System.Windows.Forms.Label(); + this.wmTextBox13 = new System.Windows.Forms.TextBox(); + this.wmLabel13 = new System.Windows.Forms.Label(); + this.wmTextBox48 = new System.Windows.Forms.TextBox(); + this.wmLabel48 = new System.Windows.Forms.Label(); + this.wmTextBox47 = new System.Windows.Forms.TextBox(); + this.wmLabel47 = new System.Windows.Forms.Label(); + this.wmTextBox46 = new System.Windows.Forms.TextBox(); + this.wmLabel46 = new System.Windows.Forms.Label(); + this.wmTextBox45 = new System.Windows.Forms.TextBox(); + this.wmLabel45 = new System.Windows.Forms.Label(); + this.wmTextBox44 = new System.Windows.Forms.TextBox(); + this.wmLabel44 = new System.Windows.Forms.Label(); + this.wmTextBox43 = new System.Windows.Forms.TextBox(); + this.wmLabel43 = new System.Windows.Forms.Label(); + this.wmTextBox42 = new System.Windows.Forms.TextBox(); + this.wmLabel42 = new System.Windows.Forms.Label(); + this.wmTextBox41 = new System.Windows.Forms.TextBox(); + this.wmLabel41 = new System.Windows.Forms.Label(); + this.wmTextBox40 = new System.Windows.Forms.TextBox(); + this.wmLabel40 = new System.Windows.Forms.Label(); + this.wmTextBox39 = new System.Windows.Forms.TextBox(); + this.wmLabel39 = new System.Windows.Forms.Label(); + this.wmTextBox38 = new System.Windows.Forms.TextBox(); + this.wmLabel38 = new System.Windows.Forms.Label(); + this.wmTextBox37 = new System.Windows.Forms.TextBox(); + this.wmLabel37 = new System.Windows.Forms.Label(); + this.wmTextBox36 = new System.Windows.Forms.TextBox(); + this.wmLabel36 = new System.Windows.Forms.Label(); + this.wmTextBox35 = new System.Windows.Forms.TextBox(); + this.wmLabel35 = new System.Windows.Forms.Label(); + this.wmTextBox34 = new System.Windows.Forms.TextBox(); + this.wmLabel34 = new System.Windows.Forms.Label(); + this.wmTextBox33 = new System.Windows.Forms.TextBox(); + this.wmLabel33 = new System.Windows.Forms.Label(); + this.wmTextBox32 = new System.Windows.Forms.TextBox(); + this.wmLabel32 = new System.Windows.Forms.Label(); + this.wmTextBox31 = new System.Windows.Forms.TextBox(); + this.wmLabel31 = new System.Windows.Forms.Label(); + this.wmTextBox30 = new System.Windows.Forms.TextBox(); + this.wmLabel30 = new System.Windows.Forms.Label(); + this.wmTextBox29 = new System.Windows.Forms.TextBox(); + this.wmLabel29 = new System.Windows.Forms.Label(); + this.wmTextBox28 = new System.Windows.Forms.TextBox(); + this.wmLabel28 = new System.Windows.Forms.Label(); + this.wmTextBox27 = new System.Windows.Forms.TextBox(); + this.wmLabel27 = new System.Windows.Forms.Label(); + this.wmTextBox26 = new System.Windows.Forms.TextBox(); + this.wmLabel26 = new System.Windows.Forms.Label(); + this.wmTextBox25 = new System.Windows.Forms.TextBox(); + this.wmLabel25 = new System.Windows.Forms.Label(); + this.activityLabel = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.textBox4 = new System.Windows.Forms.TextBox(); + this.textBox5 = new System.Windows.Forms.TextBox(); + this.textBox6 = new System.Windows.Forms.TextBox(); + this.textBox7 = new System.Windows.Forms.TextBox(); + this.textBox8 = new System.Windows.Forms.TextBox(); + this.textBox9 = new System.Windows.Forms.TextBox(); + this.textBox10 = new System.Windows.Forms.TextBox(); + this.textBox11 = new System.Windows.Forms.TextBox(); + this.textBox12 = new System.Windows.Forms.TextBox(); + this.textBox13 = new System.Windows.Forms.TextBox(); + this.textBox14 = new System.Windows.Forms.TextBox(); + this.textBox15 = new System.Windows.Forms.TextBox(); + this.textBox16 = new System.Windows.Forms.TextBox(); + this.textBox17 = new System.Windows.Forms.TextBox(); + this.textBox18 = new System.Windows.Forms.TextBox(); + this.textBox19 = new System.Windows.Forms.TextBox(); + this.textBox20 = new System.Windows.Forms.TextBox(); + this.textBox21 = new System.Windows.Forms.TextBox(); + this.textBox22 = new System.Windows.Forms.TextBox(); + this.textBox23 = new System.Windows.Forms.TextBox(); + this.textBox24 = new System.Windows.Forms.TextBox(); + this.textBox25 = new System.Windows.Forms.TextBox(); + this.textBox26 = new System.Windows.Forms.TextBox(); + this.textBox27 = new System.Windows.Forms.TextBox(); + this.textBox28 = new System.Windows.Forms.TextBox(); + this.textBox29 = new System.Windows.Forms.TextBox(); + this.textBox30 = new System.Windows.Forms.TextBox(); + this.textBox31 = new System.Windows.Forms.TextBox(); + this.textBox32 = new System.Windows.Forms.TextBox(); + this.textBox33 = new System.Windows.Forms.TextBox(); + this.textBox34 = new System.Windows.Forms.TextBox(); + this.textBox35 = new System.Windows.Forms.TextBox(); + this.textBox36 = new System.Windows.Forms.TextBox(); + this.textBox37 = new System.Windows.Forms.TextBox(); + this.textBox38 = new System.Windows.Forms.TextBox(); + this.textBox39 = new System.Windows.Forms.TextBox(); + this.textBox40 = new System.Windows.Forms.TextBox(); + this.textBox41 = new System.Windows.Forms.TextBox(); + this.textBox42 = new System.Windows.Forms.TextBox(); + this.textBox43 = new System.Windows.Forms.TextBox(); + this.textBox44 = new System.Windows.Forms.TextBox(); + this.textBox45 = new System.Windows.Forms.TextBox(); + this.textBox46 = new System.Windows.Forms.TextBox(); + this.textBox47 = new System.Windows.Forms.TextBox(); + this.textBox48 = new System.Windows.Forms.TextBox(); + this.SuspendLayout(); + // + // wmTextBox2 + // + this.wmTextBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox2.Location = new System.Drawing.Point(191, 118); + this.wmTextBox2.Name = "wmTextBox2"; + this.wmTextBox2.Size = new System.Drawing.Size(380, 23); + this.wmTextBox2.TabIndex = 1; + this.wmTextBox2.Visible = false; + // + // wmLabel2 + // + this.wmLabel2.AutoSize = true; + this.wmLabel2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel2.Location = new System.Drawing.Point(26, 124); + this.wmLabel2.Name = "wmLabel2"; + this.wmLabel2.Size = new System.Drawing.Size(40, 16); + this.wmLabel2.TabIndex = 0; + this.wmLabel2.Text = "WM2"; + this.wmLabel2.Visible = false; + // + // wmLabel1 + // + this.wmLabel1.AutoSize = true; + this.wmLabel1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel1.Location = new System.Drawing.Point(26, 95); + this.wmLabel1.Name = "wmLabel1"; + this.wmLabel1.Size = new System.Drawing.Size(40, 16); + this.wmLabel1.TabIndex = 0; + this.wmLabel1.Text = "WM1"; + this.wmLabel1.Visible = false; + // + // wmTextBox3 + // + this.wmTextBox3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox3.Location = new System.Drawing.Point(191, 147); + this.wmTextBox3.Name = "wmTextBox3"; + this.wmTextBox3.Size = new System.Drawing.Size(380, 23); + this.wmTextBox3.TabIndex = 1; + this.wmTextBox3.Visible = false; + // + // wmLabel3 + // + this.wmLabel3.AutoSize = true; + this.wmLabel3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel3.Location = new System.Drawing.Point(26, 153); + this.wmLabel3.Name = "wmLabel3"; + this.wmLabel3.Size = new System.Drawing.Size(40, 16); + this.wmLabel3.TabIndex = 0; + this.wmLabel3.Text = "WM3"; + this.wmLabel3.Visible = false; + // + // wmTextBox4 + // + this.wmTextBox4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox4.Location = new System.Drawing.Point(191, 176); + this.wmTextBox4.Name = "wmTextBox4"; + this.wmTextBox4.Size = new System.Drawing.Size(380, 23); + this.wmTextBox4.TabIndex = 1; + this.wmTextBox4.Visible = false; + // + // wmLabel4 + // + this.wmLabel4.AutoSize = true; + this.wmLabel4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel4.Location = new System.Drawing.Point(26, 182); + this.wmLabel4.Name = "wmLabel4"; + this.wmLabel4.Size = new System.Drawing.Size(40, 16); + this.wmLabel4.TabIndex = 0; + this.wmLabel4.Text = "WM4"; + this.wmLabel4.Visible = false; + // + // wmTextBox5 + // + this.wmTextBox5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox5.Location = new System.Drawing.Point(191, 205); + this.wmTextBox5.Name = "wmTextBox5"; + this.wmTextBox5.Size = new System.Drawing.Size(380, 23); + this.wmTextBox5.TabIndex = 1; + this.wmTextBox5.Visible = false; + // + // wmLabel5 + // + this.wmLabel5.AutoSize = true; + this.wmLabel5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel5.Location = new System.Drawing.Point(26, 211); + this.wmLabel5.Name = "wmLabel5"; + this.wmLabel5.Size = new System.Drawing.Size(40, 16); + this.wmLabel5.TabIndex = 0; + this.wmLabel5.Text = "WM5"; + this.wmLabel5.Visible = false; + // + // wmTextBox6 + // + this.wmTextBox6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox6.Location = new System.Drawing.Point(191, 234); + this.wmTextBox6.Name = "wmTextBox6"; + this.wmTextBox6.Size = new System.Drawing.Size(380, 23); + this.wmTextBox6.TabIndex = 1; + this.wmTextBox6.Visible = false; + // + // wmLabel6 + // + this.wmLabel6.AutoSize = true; + this.wmLabel6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel6.Location = new System.Drawing.Point(26, 241); + this.wmLabel6.Name = "wmLabel6"; + this.wmLabel6.Size = new System.Drawing.Size(40, 16); + this.wmLabel6.TabIndex = 0; + this.wmLabel6.Text = "WM6"; + this.wmLabel6.Visible = false; + // + // wmTextBox1 + // + this.wmTextBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox1.Location = new System.Drawing.Point(191, 89); + this.wmTextBox1.Name = "wmTextBox1"; + this.wmTextBox1.Size = new System.Drawing.Size(380, 23); + this.wmTextBox1.TabIndex = 1; + this.wmTextBox1.Visible = false; + // + // wmTextBox7 + // + this.wmTextBox7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox7.Location = new System.Drawing.Point(191, 263); + this.wmTextBox7.Name = "wmTextBox7"; + this.wmTextBox7.Size = new System.Drawing.Size(380, 23); + this.wmTextBox7.TabIndex = 9; + this.wmTextBox7.Visible = false; + // + // wmLabel7 + // + this.wmLabel7.AutoSize = true; + this.wmLabel7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel7.Location = new System.Drawing.Point(26, 270); + this.wmLabel7.Name = "wmLabel7"; + this.wmLabel7.Size = new System.Drawing.Size(40, 16); + this.wmLabel7.TabIndex = 8; + this.wmLabel7.Text = "WM7"; + this.wmLabel7.Visible = false; + // + // wmTextBox8 + // + this.wmTextBox8.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox8.Location = new System.Drawing.Point(191, 292); + this.wmTextBox8.Name = "wmTextBox8"; + this.wmTextBox8.Size = new System.Drawing.Size(380, 23); + this.wmTextBox8.TabIndex = 11; + this.wmTextBox8.Visible = false; + // + // wmLabel8 + // + this.wmLabel8.AutoSize = true; + this.wmLabel8.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel8.Location = new System.Drawing.Point(26, 299); + this.wmLabel8.Name = "wmLabel8"; + this.wmLabel8.Size = new System.Drawing.Size(40, 16); + this.wmLabel8.TabIndex = 10; + this.wmLabel8.Text = "WM8"; + this.wmLabel8.Visible = false; + // + // wmTextBox9 + // + this.wmTextBox9.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox9.Location = new System.Drawing.Point(191, 321); + this.wmTextBox9.Name = "wmTextBox9"; + this.wmTextBox9.Size = new System.Drawing.Size(380, 23); + this.wmTextBox9.TabIndex = 13; + this.wmTextBox9.Visible = false; + // + // wmLabel9 + // + this.wmLabel9.AutoSize = true; + this.wmLabel9.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel9.Location = new System.Drawing.Point(26, 327); + this.wmLabel9.Name = "wmLabel9"; + this.wmLabel9.Size = new System.Drawing.Size(40, 16); + this.wmLabel9.TabIndex = 12; + this.wmLabel9.Text = "WM9"; + this.wmLabel9.Visible = false; + // + // wmTextBox10 + // + this.wmTextBox10.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox10.Location = new System.Drawing.Point(191, 350); + this.wmTextBox10.Name = "wmTextBox10"; + this.wmTextBox10.Size = new System.Drawing.Size(380, 23); + this.wmTextBox10.TabIndex = 15; + this.wmTextBox10.Visible = false; + // + // wmLabel10 + // + this.wmLabel10.AutoSize = true; + this.wmLabel10.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel10.Location = new System.Drawing.Point(26, 356); + this.wmLabel10.Name = "wmLabel10"; + this.wmLabel10.Size = new System.Drawing.Size(48, 16); + this.wmLabel10.TabIndex = 14; + this.wmLabel10.Text = "WM10"; + this.wmLabel10.Visible = false; + // + // wmTextBox12 + // + this.wmTextBox12.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox12.Location = new System.Drawing.Point(191, 408); + this.wmTextBox12.Name = "wmTextBox12"; + this.wmTextBox12.Size = new System.Drawing.Size(380, 23); + this.wmTextBox12.TabIndex = 19; + this.wmTextBox12.Visible = false; + // + // wmLabel12 + // + this.wmLabel12.AutoSize = true; + this.wmLabel12.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel12.Location = new System.Drawing.Point(26, 414); + this.wmLabel12.Name = "wmLabel12"; + this.wmLabel12.Size = new System.Drawing.Size(48, 16); + this.wmLabel12.TabIndex = 18; + this.wmLabel12.Text = "WM12"; + this.wmLabel12.Visible = false; + // + // wmTextBox11 + // + this.wmTextBox11.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox11.Location = new System.Drawing.Point(191, 379); + this.wmTextBox11.Name = "wmTextBox11"; + this.wmTextBox11.Size = new System.Drawing.Size(380, 23); + this.wmTextBox11.TabIndex = 17; + this.wmTextBox11.Visible = false; + // + // wmLabel11 + // + this.wmLabel11.AutoSize = true; + this.wmLabel11.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel11.Location = new System.Drawing.Point(26, 385); + this.wmLabel11.Name = "wmLabel11"; + this.wmLabel11.Size = new System.Drawing.Size(48, 16); + this.wmLabel11.TabIndex = 16; + this.wmLabel11.Text = "WM11"; + this.wmLabel11.Visible = false; + // + // wmTextBox24 + // + this.wmTextBox24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox24.Location = new System.Drawing.Point(191, 756); + this.wmTextBox24.Name = "wmTextBox24"; + this.wmTextBox24.Size = new System.Drawing.Size(380, 23); + this.wmTextBox24.TabIndex = 43; + this.wmTextBox24.Visible = false; + // + // wmLabel24 + // + this.wmLabel24.AutoSize = true; + this.wmLabel24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel24.Location = new System.Drawing.Point(26, 762); + this.wmLabel24.Name = "wmLabel24"; + this.wmLabel24.Size = new System.Drawing.Size(48, 16); + this.wmLabel24.TabIndex = 42; + this.wmLabel24.Text = "WM24"; + this.wmLabel24.Visible = false; + // + // wmTextBox23 + // + this.wmTextBox23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox23.Location = new System.Drawing.Point(191, 727); + this.wmTextBox23.Name = "wmTextBox23"; + this.wmTextBox23.Size = new System.Drawing.Size(380, 23); + this.wmTextBox23.TabIndex = 41; + this.wmTextBox23.Visible = false; + // + // wmLabel23 + // + this.wmLabel23.AutoSize = true; + this.wmLabel23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel23.Location = new System.Drawing.Point(26, 733); + this.wmLabel23.Name = "wmLabel23"; + this.wmLabel23.Size = new System.Drawing.Size(48, 16); + this.wmLabel23.TabIndex = 40; + this.wmLabel23.Text = "WM23"; + this.wmLabel23.Visible = false; + // + // wmTextBox22 + // + this.wmTextBox22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox22.Location = new System.Drawing.Point(191, 698); + this.wmTextBox22.Name = "wmTextBox22"; + this.wmTextBox22.Size = new System.Drawing.Size(380, 23); + this.wmTextBox22.TabIndex = 39; + this.wmTextBox22.Visible = false; + // + // wmLabel22 + // + this.wmLabel22.AutoSize = true; + this.wmLabel22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel22.Location = new System.Drawing.Point(26, 704); + this.wmLabel22.Name = "wmLabel22"; + this.wmLabel22.Size = new System.Drawing.Size(48, 16); + this.wmLabel22.TabIndex = 38; + this.wmLabel22.Text = "WM22"; + this.wmLabel22.Visible = false; + // + // wmTextBox21 + // + this.wmTextBox21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox21.Location = new System.Drawing.Point(191, 669); + this.wmTextBox21.Name = "wmTextBox21"; + this.wmTextBox21.Size = new System.Drawing.Size(380, 23); + this.wmTextBox21.TabIndex = 37; + this.wmTextBox21.Visible = false; + // + // wmLabel21 + // + this.wmLabel21.AutoSize = true; + this.wmLabel21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel21.Location = new System.Drawing.Point(26, 675); + this.wmLabel21.Name = "wmLabel21"; + this.wmLabel21.Size = new System.Drawing.Size(48, 16); + this.wmLabel21.TabIndex = 36; + this.wmLabel21.Text = "WM21"; + this.wmLabel21.Visible = false; + // + // wmTextBox20 + // + this.wmTextBox20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox20.Location = new System.Drawing.Point(191, 640); + this.wmTextBox20.Name = "wmTextBox20"; + this.wmTextBox20.Size = new System.Drawing.Size(380, 23); + this.wmTextBox20.TabIndex = 35; + this.wmTextBox20.Visible = false; + // + // wmLabel20 + // + this.wmLabel20.AutoSize = true; + this.wmLabel20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel20.Location = new System.Drawing.Point(26, 647); + this.wmLabel20.Name = "wmLabel20"; + this.wmLabel20.Size = new System.Drawing.Size(48, 16); + this.wmLabel20.TabIndex = 34; + this.wmLabel20.Text = "WM20"; + this.wmLabel20.Visible = false; + // + // wmTextBox19 + // + this.wmTextBox19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox19.Location = new System.Drawing.Point(191, 611); + this.wmTextBox19.Name = "wmTextBox19"; + this.wmTextBox19.Size = new System.Drawing.Size(380, 23); + this.wmTextBox19.TabIndex = 33; + this.wmTextBox19.Visible = false; + // + // wmLabel19 + // + this.wmLabel19.AutoSize = true; + this.wmLabel19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel19.Location = new System.Drawing.Point(26, 618); + this.wmLabel19.Name = "wmLabel19"; + this.wmLabel19.Size = new System.Drawing.Size(48, 16); + this.wmLabel19.TabIndex = 32; + this.wmLabel19.Text = "WM19"; + this.wmLabel19.Visible = false; + // + // wmTextBox18 + // + this.wmTextBox18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox18.Location = new System.Drawing.Point(191, 582); + this.wmTextBox18.Name = "wmTextBox18"; + this.wmTextBox18.Size = new System.Drawing.Size(380, 23); + this.wmTextBox18.TabIndex = 27; + this.wmTextBox18.Visible = false; + // + // wmLabel18 + // + this.wmLabel18.AutoSize = true; + this.wmLabel18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel18.Location = new System.Drawing.Point(26, 589); + this.wmLabel18.Name = "wmLabel18"; + this.wmLabel18.Size = new System.Drawing.Size(48, 16); + this.wmLabel18.TabIndex = 23; + this.wmLabel18.Text = "WM18"; + this.wmLabel18.Visible = false; + // + // wmTextBox17 + // + this.wmTextBox17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox17.Location = new System.Drawing.Point(191, 553); + this.wmTextBox17.Name = "wmTextBox17"; + this.wmTextBox17.Size = new System.Drawing.Size(380, 23); + this.wmTextBox17.TabIndex = 26; + this.wmTextBox17.Visible = false; + // + // wmLabel17 + // + this.wmLabel17.AutoSize = true; + this.wmLabel17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel17.Location = new System.Drawing.Point(26, 559); + this.wmLabel17.Name = "wmLabel17"; + this.wmLabel17.Size = new System.Drawing.Size(48, 16); + this.wmLabel17.TabIndex = 22; + this.wmLabel17.Text = "WM17"; + this.wmLabel17.Visible = false; + // + // wmTextBox16 + // + this.wmTextBox16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox16.Location = new System.Drawing.Point(191, 524); + this.wmTextBox16.Name = "wmTextBox16"; + this.wmTextBox16.Size = new System.Drawing.Size(380, 23); + this.wmTextBox16.TabIndex = 30; + this.wmTextBox16.Visible = false; + // + // wmLabel16 + // + this.wmLabel16.AutoSize = true; + this.wmLabel16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel16.Location = new System.Drawing.Point(26, 530); + this.wmLabel16.Name = "wmLabel16"; + this.wmLabel16.Size = new System.Drawing.Size(48, 16); + this.wmLabel16.TabIndex = 21; + this.wmLabel16.Text = "WM16"; + this.wmLabel16.Visible = false; + // + // wmTextBox15 + // + this.wmTextBox15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox15.Location = new System.Drawing.Point(191, 495); + this.wmTextBox15.Name = "wmTextBox15"; + this.wmTextBox15.Size = new System.Drawing.Size(380, 23); + this.wmTextBox15.TabIndex = 31; + this.wmTextBox15.Visible = false; + // + // wmLabel15 + // + this.wmLabel15.AutoSize = true; + this.wmLabel15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel15.Location = new System.Drawing.Point(26, 501); + this.wmLabel15.Name = "wmLabel15"; + this.wmLabel15.Size = new System.Drawing.Size(48, 16); + this.wmLabel15.TabIndex = 20; + this.wmLabel15.Text = "WM15"; + this.wmLabel15.Visible = false; + // + // wmTextBox14 + // + this.wmTextBox14.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox14.Location = new System.Drawing.Point(191, 466); + this.wmTextBox14.Name = "wmTextBox14"; + this.wmTextBox14.Size = new System.Drawing.Size(380, 23); + this.wmTextBox14.TabIndex = 28; + this.wmTextBox14.Visible = false; + // + // wmLabel14 + // + this.wmLabel14.AutoSize = true; + this.wmLabel14.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel14.Location = new System.Drawing.Point(26, 472); + this.wmLabel14.Name = "wmLabel14"; + this.wmLabel14.Size = new System.Drawing.Size(48, 16); + this.wmLabel14.TabIndex = 25; + this.wmLabel14.Text = "WM14"; + this.wmLabel14.Visible = false; + // + // wmTextBox13 + // + this.wmTextBox13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox13.Location = new System.Drawing.Point(191, 437); + this.wmTextBox13.Name = "wmTextBox13"; + this.wmTextBox13.Size = new System.Drawing.Size(380, 23); + this.wmTextBox13.TabIndex = 29; + this.wmTextBox13.Visible = false; + // + // wmLabel13 + // + this.wmLabel13.AutoSize = true; + this.wmLabel13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel13.Location = new System.Drawing.Point(26, 443); + this.wmLabel13.Name = "wmLabel13"; + this.wmLabel13.Size = new System.Drawing.Size(48, 16); + this.wmLabel13.TabIndex = 24; + this.wmLabel13.Text = "WM13"; + this.wmLabel13.Visible = false; + // + // wmTextBox48 + // + this.wmTextBox48.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox48.Location = new System.Drawing.Point(752, 756); + this.wmTextBox48.Name = "wmTextBox48"; + this.wmTextBox48.Size = new System.Drawing.Size(380, 23); + this.wmTextBox48.TabIndex = 94; + this.wmTextBox48.Visible = false; + // + // wmLabel48 + // + this.wmLabel48.AutoSize = true; + this.wmLabel48.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel48.Location = new System.Drawing.Point(587, 762); + this.wmLabel48.Name = "wmLabel48"; + this.wmLabel48.Size = new System.Drawing.Size(48, 16); + this.wmLabel48.TabIndex = 93; + this.wmLabel48.Text = "WM48"; + this.wmLabel48.Visible = false; + // + // wmTextBox47 + // + this.wmTextBox47.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox47.Location = new System.Drawing.Point(752, 727); + this.wmTextBox47.Name = "wmTextBox47"; + this.wmTextBox47.Size = new System.Drawing.Size(380, 23); + this.wmTextBox47.TabIndex = 92; + this.wmTextBox47.Visible = false; + // + // wmLabel47 + // + this.wmLabel47.AutoSize = true; + this.wmLabel47.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel47.Location = new System.Drawing.Point(587, 733); + this.wmLabel47.Name = "wmLabel47"; + this.wmLabel47.Size = new System.Drawing.Size(48, 16); + this.wmLabel47.TabIndex = 91; + this.wmLabel47.Text = "WM47"; + this.wmLabel47.Visible = false; + // + // wmTextBox46 + // + this.wmTextBox46.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox46.Location = new System.Drawing.Point(752, 698); + this.wmTextBox46.Name = "wmTextBox46"; + this.wmTextBox46.Size = new System.Drawing.Size(380, 23); + this.wmTextBox46.TabIndex = 90; + this.wmTextBox46.Visible = false; + // + // wmLabel46 + // + this.wmLabel46.AutoSize = true; + this.wmLabel46.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel46.Location = new System.Drawing.Point(587, 704); + this.wmLabel46.Name = "wmLabel46"; + this.wmLabel46.Size = new System.Drawing.Size(48, 16); + this.wmLabel46.TabIndex = 89; + this.wmLabel46.Text = "WM46"; + this.wmLabel46.Visible = false; + // + // wmTextBox45 + // + this.wmTextBox45.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox45.Location = new System.Drawing.Point(752, 669); + this.wmTextBox45.Name = "wmTextBox45"; + this.wmTextBox45.Size = new System.Drawing.Size(380, 23); + this.wmTextBox45.TabIndex = 88; + this.wmTextBox45.Visible = false; + // + // wmLabel45 + // + this.wmLabel45.AutoSize = true; + this.wmLabel45.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel45.Location = new System.Drawing.Point(587, 675); + this.wmLabel45.Name = "wmLabel45"; + this.wmLabel45.Size = new System.Drawing.Size(48, 16); + this.wmLabel45.TabIndex = 87; + this.wmLabel45.Text = "WM45"; + this.wmLabel45.Visible = false; + // + // wmTextBox44 + // + this.wmTextBox44.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox44.Location = new System.Drawing.Point(752, 640); + this.wmTextBox44.Name = "wmTextBox44"; + this.wmTextBox44.Size = new System.Drawing.Size(380, 23); + this.wmTextBox44.TabIndex = 86; + this.wmTextBox44.Visible = false; + // + // wmLabel44 + // + this.wmLabel44.AutoSize = true; + this.wmLabel44.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel44.Location = new System.Drawing.Point(587, 647); + this.wmLabel44.Name = "wmLabel44"; + this.wmLabel44.Size = new System.Drawing.Size(48, 16); + this.wmLabel44.TabIndex = 85; + this.wmLabel44.Text = "WM44"; + this.wmLabel44.Visible = false; + // + // wmTextBox43 + // + this.wmTextBox43.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox43.Location = new System.Drawing.Point(752, 611); + this.wmTextBox43.Name = "wmTextBox43"; + this.wmTextBox43.Size = new System.Drawing.Size(380, 23); + this.wmTextBox43.TabIndex = 84; + this.wmTextBox43.Visible = false; + // + // wmLabel43 + // + this.wmLabel43.AutoSize = true; + this.wmLabel43.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel43.Location = new System.Drawing.Point(587, 618); + this.wmLabel43.Name = "wmLabel43"; + this.wmLabel43.Size = new System.Drawing.Size(48, 16); + this.wmLabel43.TabIndex = 83; + this.wmLabel43.Text = "WM43"; + this.wmLabel43.Visible = false; + // + // wmTextBox42 + // + this.wmTextBox42.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox42.Location = new System.Drawing.Point(752, 582); + this.wmTextBox42.Name = "wmTextBox42"; + this.wmTextBox42.Size = new System.Drawing.Size(380, 23); + this.wmTextBox42.TabIndex = 78; + this.wmTextBox42.Visible = false; + // + // wmLabel42 + // + this.wmLabel42.AutoSize = true; + this.wmLabel42.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel42.Location = new System.Drawing.Point(587, 589); + this.wmLabel42.Name = "wmLabel42"; + this.wmLabel42.Size = new System.Drawing.Size(48, 16); + this.wmLabel42.TabIndex = 74; + this.wmLabel42.Text = "WM42"; + this.wmLabel42.Visible = false; + // + // wmTextBox41 + // + this.wmTextBox41.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox41.Location = new System.Drawing.Point(752, 553); + this.wmTextBox41.Name = "wmTextBox41"; + this.wmTextBox41.Size = new System.Drawing.Size(380, 23); + this.wmTextBox41.TabIndex = 77; + this.wmTextBox41.Visible = false; + // + // wmLabel41 + // + this.wmLabel41.AutoSize = true; + this.wmLabel41.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel41.Location = new System.Drawing.Point(587, 559); + this.wmLabel41.Name = "wmLabel41"; + this.wmLabel41.Size = new System.Drawing.Size(48, 16); + this.wmLabel41.TabIndex = 73; + this.wmLabel41.Text = "WM41"; + this.wmLabel41.Visible = false; + // + // wmTextBox40 + // + this.wmTextBox40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox40.Location = new System.Drawing.Point(752, 524); + this.wmTextBox40.Name = "wmTextBox40"; + this.wmTextBox40.Size = new System.Drawing.Size(380, 23); + this.wmTextBox40.TabIndex = 81; + this.wmTextBox40.Visible = false; + // + // wmLabel40 + // + this.wmLabel40.AutoSize = true; + this.wmLabel40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel40.Location = new System.Drawing.Point(587, 530); + this.wmLabel40.Name = "wmLabel40"; + this.wmLabel40.Size = new System.Drawing.Size(48, 16); + this.wmLabel40.TabIndex = 72; + this.wmLabel40.Text = "WM40"; + this.wmLabel40.Visible = false; + // + // wmTextBox39 + // + this.wmTextBox39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox39.Location = new System.Drawing.Point(752, 495); + this.wmTextBox39.Name = "wmTextBox39"; + this.wmTextBox39.Size = new System.Drawing.Size(380, 23); + this.wmTextBox39.TabIndex = 82; + this.wmTextBox39.Visible = false; + // + // wmLabel39 + // + this.wmLabel39.AutoSize = true; + this.wmLabel39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel39.Location = new System.Drawing.Point(587, 501); + this.wmLabel39.Name = "wmLabel39"; + this.wmLabel39.Size = new System.Drawing.Size(48, 16); + this.wmLabel39.TabIndex = 71; + this.wmLabel39.Text = "WM39"; + this.wmLabel39.Visible = false; + // + // wmTextBox38 + // + this.wmTextBox38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox38.Location = new System.Drawing.Point(752, 466); + this.wmTextBox38.Name = "wmTextBox38"; + this.wmTextBox38.Size = new System.Drawing.Size(380, 23); + this.wmTextBox38.TabIndex = 79; + this.wmTextBox38.Visible = false; + // + // wmLabel38 + // + this.wmLabel38.AutoSize = true; + this.wmLabel38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel38.Location = new System.Drawing.Point(587, 472); + this.wmLabel38.Name = "wmLabel38"; + this.wmLabel38.Size = new System.Drawing.Size(48, 16); + this.wmLabel38.TabIndex = 76; + this.wmLabel38.Text = "WM38"; + this.wmLabel38.Visible = false; + // + // wmTextBox37 + // + this.wmTextBox37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox37.Location = new System.Drawing.Point(752, 437); + this.wmTextBox37.Name = "wmTextBox37"; + this.wmTextBox37.Size = new System.Drawing.Size(380, 23); + this.wmTextBox37.TabIndex = 80; + this.wmTextBox37.Visible = false; + // + // wmLabel37 + // + this.wmLabel37.AutoSize = true; + this.wmLabel37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel37.Location = new System.Drawing.Point(587, 443); + this.wmLabel37.Name = "wmLabel37"; + this.wmLabel37.Size = new System.Drawing.Size(48, 16); + this.wmLabel37.TabIndex = 75; + this.wmLabel37.Text = "WM37"; + this.wmLabel37.Visible = false; + // + // wmTextBox36 + // + this.wmTextBox36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox36.Location = new System.Drawing.Point(752, 408); + this.wmTextBox36.Name = "wmTextBox36"; + this.wmTextBox36.Size = new System.Drawing.Size(380, 23); + this.wmTextBox36.TabIndex = 70; + this.wmTextBox36.Visible = false; + // + // wmLabel36 + // + this.wmLabel36.AutoSize = true; + this.wmLabel36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel36.Location = new System.Drawing.Point(587, 414); + this.wmLabel36.Name = "wmLabel36"; + this.wmLabel36.Size = new System.Drawing.Size(48, 16); + this.wmLabel36.TabIndex = 69; + this.wmLabel36.Text = "WM36"; + this.wmLabel36.Visible = false; + // + // wmTextBox35 + // + this.wmTextBox35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox35.Location = new System.Drawing.Point(752, 379); + this.wmTextBox35.Name = "wmTextBox35"; + this.wmTextBox35.Size = new System.Drawing.Size(380, 23); + this.wmTextBox35.TabIndex = 68; + this.wmTextBox35.Visible = false; + // + // wmLabel35 + // + this.wmLabel35.AutoSize = true; + this.wmLabel35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel35.Location = new System.Drawing.Point(587, 385); + this.wmLabel35.Name = "wmLabel35"; + this.wmLabel35.Size = new System.Drawing.Size(48, 16); + this.wmLabel35.TabIndex = 67; + this.wmLabel35.Text = "WM35"; + this.wmLabel35.Visible = false; + // + // wmTextBox34 + // + this.wmTextBox34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox34.Location = new System.Drawing.Point(752, 350); + this.wmTextBox34.Name = "wmTextBox34"; + this.wmTextBox34.Size = new System.Drawing.Size(380, 23); + this.wmTextBox34.TabIndex = 66; + this.wmTextBox34.Visible = false; + // + // wmLabel34 + // + this.wmLabel34.AutoSize = true; + this.wmLabel34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel34.Location = new System.Drawing.Point(587, 356); + this.wmLabel34.Name = "wmLabel34"; + this.wmLabel34.Size = new System.Drawing.Size(48, 16); + this.wmLabel34.TabIndex = 65; + this.wmLabel34.Text = "WM34"; + this.wmLabel34.Visible = false; + // + // wmTextBox33 + // + this.wmTextBox33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox33.Location = new System.Drawing.Point(752, 321); + this.wmTextBox33.Name = "wmTextBox33"; + this.wmTextBox33.Size = new System.Drawing.Size(380, 23); + this.wmTextBox33.TabIndex = 64; + this.wmTextBox33.Visible = false; + // + // wmLabel33 + // + this.wmLabel33.AutoSize = true; + this.wmLabel33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel33.Location = new System.Drawing.Point(587, 327); + this.wmLabel33.Name = "wmLabel33"; + this.wmLabel33.Size = new System.Drawing.Size(48, 16); + this.wmLabel33.TabIndex = 63; + this.wmLabel33.Text = "WM33"; + this.wmLabel33.Visible = false; + // + // wmTextBox32 + // + this.wmTextBox32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox32.Location = new System.Drawing.Point(752, 292); + this.wmTextBox32.Name = "wmTextBox32"; + this.wmTextBox32.Size = new System.Drawing.Size(380, 23); + this.wmTextBox32.TabIndex = 62; + this.wmTextBox32.Visible = false; + // + // wmLabel32 + // + this.wmLabel32.AutoSize = true; + this.wmLabel32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel32.Location = new System.Drawing.Point(587, 299); + this.wmLabel32.Name = "wmLabel32"; + this.wmLabel32.Size = new System.Drawing.Size(48, 16); + this.wmLabel32.TabIndex = 61; + this.wmLabel32.Text = "WM32"; + this.wmLabel32.Visible = false; + // + // wmTextBox31 + // + this.wmTextBox31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox31.Location = new System.Drawing.Point(752, 263); + this.wmTextBox31.Name = "wmTextBox31"; + this.wmTextBox31.Size = new System.Drawing.Size(380, 23); + this.wmTextBox31.TabIndex = 60; + this.wmTextBox31.Visible = false; + // + // wmLabel31 + // + this.wmLabel31.AutoSize = true; + this.wmLabel31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel31.Location = new System.Drawing.Point(587, 270); + this.wmLabel31.Name = "wmLabel31"; + this.wmLabel31.Size = new System.Drawing.Size(48, 16); + this.wmLabel31.TabIndex = 59; + this.wmLabel31.Text = "WM31"; + this.wmLabel31.Visible = false; + // + // wmTextBox30 + // + this.wmTextBox30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox30.Location = new System.Drawing.Point(752, 234); + this.wmTextBox30.Name = "wmTextBox30"; + this.wmTextBox30.Size = new System.Drawing.Size(380, 23); + this.wmTextBox30.TabIndex = 54; + this.wmTextBox30.Visible = false; + // + // wmLabel30 + // + this.wmLabel30.AutoSize = true; + this.wmLabel30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel30.Location = new System.Drawing.Point(587, 241); + this.wmLabel30.Name = "wmLabel30"; + this.wmLabel30.Size = new System.Drawing.Size(48, 16); + this.wmLabel30.TabIndex = 50; + this.wmLabel30.Text = "WM30"; + this.wmLabel30.Visible = false; + // + // wmTextBox29 + // + this.wmTextBox29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox29.Location = new System.Drawing.Point(752, 205); + this.wmTextBox29.Name = "wmTextBox29"; + this.wmTextBox29.Size = new System.Drawing.Size(380, 23); + this.wmTextBox29.TabIndex = 53; + this.wmTextBox29.Visible = false; + // + // wmLabel29 + // + this.wmLabel29.AutoSize = true; + this.wmLabel29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel29.Location = new System.Drawing.Point(587, 211); + this.wmLabel29.Name = "wmLabel29"; + this.wmLabel29.Size = new System.Drawing.Size(48, 16); + this.wmLabel29.TabIndex = 49; + this.wmLabel29.Text = "WM29"; + this.wmLabel29.Visible = false; + // + // wmTextBox28 + // + this.wmTextBox28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox28.Location = new System.Drawing.Point(752, 176); + this.wmTextBox28.Name = "wmTextBox28"; + this.wmTextBox28.Size = new System.Drawing.Size(380, 23); + this.wmTextBox28.TabIndex = 57; + this.wmTextBox28.Visible = false; + // + // wmLabel28 + // + this.wmLabel28.AutoSize = true; + this.wmLabel28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel28.Location = new System.Drawing.Point(587, 182); + this.wmLabel28.Name = "wmLabel28"; + this.wmLabel28.Size = new System.Drawing.Size(48, 16); + this.wmLabel28.TabIndex = 48; + this.wmLabel28.Text = "WM28"; + this.wmLabel28.Visible = false; + // + // wmTextBox27 + // + this.wmTextBox27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox27.Location = new System.Drawing.Point(752, 147); + this.wmTextBox27.Name = "wmTextBox27"; + this.wmTextBox27.Size = new System.Drawing.Size(380, 23); + this.wmTextBox27.TabIndex = 58; + this.wmTextBox27.Visible = false; + // + // wmLabel27 + // + this.wmLabel27.AutoSize = true; + this.wmLabel27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel27.Location = new System.Drawing.Point(587, 153); + this.wmLabel27.Name = "wmLabel27"; + this.wmLabel27.Size = new System.Drawing.Size(48, 16); + this.wmLabel27.TabIndex = 47; + this.wmLabel27.Text = "WM27"; + this.wmLabel27.Visible = false; + // + // wmTextBox26 + // + this.wmTextBox26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox26.Location = new System.Drawing.Point(752, 118); + this.wmTextBox26.Name = "wmTextBox26"; + this.wmTextBox26.Size = new System.Drawing.Size(380, 23); + this.wmTextBox26.TabIndex = 55; + this.wmTextBox26.Visible = false; + // + // wmLabel26 + // + this.wmLabel26.AutoSize = true; + this.wmLabel26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel26.Location = new System.Drawing.Point(587, 124); + this.wmLabel26.Name = "wmLabel26"; + this.wmLabel26.Size = new System.Drawing.Size(48, 16); + this.wmLabel26.TabIndex = 52; + this.wmLabel26.Text = "WM26"; + this.wmLabel26.Visible = false; + // + // wmTextBox25 + // + this.wmTextBox25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmTextBox25.Location = new System.Drawing.Point(752, 89); + this.wmTextBox25.Name = "wmTextBox25"; + this.wmTextBox25.Size = new System.Drawing.Size(380, 23); + this.wmTextBox25.TabIndex = 56; + this.wmTextBox25.Visible = false; + // + // wmLabel25 + // + this.wmLabel25.AutoSize = true; + this.wmLabel25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmLabel25.Location = new System.Drawing.Point(587, 95); + this.wmLabel25.Name = "wmLabel25"; + this.wmLabel25.Size = new System.Drawing.Size(48, 16); + this.wmLabel25.TabIndex = 51; + this.wmLabel25.Text = "WM25"; + this.wmLabel25.Visible = false; + // + // activityLabel + // + this.activityLabel.AutoSize = true; + this.activityLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.activityLabel.Location = new System.Drawing.Point(31, 22); + this.activityLabel.Name = "activityLabel"; + this.activityLabel.Size = new System.Drawing.Size(225, 42); + this.activityLabel.TabIndex = 95; + this.activityLabel.Text = "Activity label"; + // + // textBox1 + // + this.textBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox1.Location = new System.Drawing.Point(135, 89); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(50, 23); + this.textBox1.TabIndex = 96; + this.textBox1.Visible = false; + // + // textBox2 + // + this.textBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox2.Location = new System.Drawing.Point(135, 118); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(50, 23); + this.textBox2.TabIndex = 97; + this.textBox2.Visible = false; + // + // textBox3 + // + this.textBox3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox3.Location = new System.Drawing.Point(135, 147); + this.textBox3.Name = "textBox3"; + this.textBox3.Size = new System.Drawing.Size(50, 23); + this.textBox3.TabIndex = 98; + this.textBox3.Visible = false; + // + // textBox4 + // + this.textBox4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox4.Location = new System.Drawing.Point(135, 176); + this.textBox4.Name = "textBox4"; + this.textBox4.Size = new System.Drawing.Size(50, 23); + this.textBox4.TabIndex = 99; + this.textBox4.Visible = false; + // + // textBox5 + // + this.textBox5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox5.Location = new System.Drawing.Point(135, 205); + this.textBox5.Name = "textBox5"; + this.textBox5.Size = new System.Drawing.Size(50, 23); + this.textBox5.TabIndex = 100; + this.textBox5.Visible = false; + // + // textBox6 + // + this.textBox6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox6.Location = new System.Drawing.Point(135, 234); + this.textBox6.Name = "textBox6"; + this.textBox6.Size = new System.Drawing.Size(50, 23); + this.textBox6.TabIndex = 101; + this.textBox6.Visible = false; + // + // textBox7 + // + this.textBox7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox7.Location = new System.Drawing.Point(135, 263); + this.textBox7.Name = "textBox7"; + this.textBox7.Size = new System.Drawing.Size(50, 23); + this.textBox7.TabIndex = 102; + this.textBox7.Visible = false; + // + // textBox8 + // + this.textBox8.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox8.Location = new System.Drawing.Point(135, 292); + this.textBox8.Name = "textBox8"; + this.textBox8.Size = new System.Drawing.Size(50, 23); + this.textBox8.TabIndex = 103; + this.textBox8.Visible = false; + // + // textBox9 + // + this.textBox9.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox9.Location = new System.Drawing.Point(135, 321); + this.textBox9.Name = "textBox9"; + this.textBox9.Size = new System.Drawing.Size(50, 23); + this.textBox9.TabIndex = 104; + this.textBox9.Visible = false; + // + // textBox10 + // + this.textBox10.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox10.Location = new System.Drawing.Point(135, 350); + this.textBox10.Name = "textBox10"; + this.textBox10.Size = new System.Drawing.Size(50, 23); + this.textBox10.TabIndex = 105; + this.textBox10.Visible = false; + // + // textBox11 + // + this.textBox11.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox11.Location = new System.Drawing.Point(135, 379); + this.textBox11.Name = "textBox11"; + this.textBox11.Size = new System.Drawing.Size(50, 23); + this.textBox11.TabIndex = 106; + this.textBox11.Visible = false; + // + // textBox12 + // + this.textBox12.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox12.Location = new System.Drawing.Point(135, 408); + this.textBox12.Name = "textBox12"; + this.textBox12.Size = new System.Drawing.Size(50, 23); + this.textBox12.TabIndex = 107; + this.textBox12.Visible = false; + // + // textBox13 + // + this.textBox13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox13.Location = new System.Drawing.Point(135, 437); + this.textBox13.Name = "textBox13"; + this.textBox13.Size = new System.Drawing.Size(50, 23); + this.textBox13.TabIndex = 108; + this.textBox13.Visible = false; + // + // textBox14 + // + this.textBox14.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox14.Location = new System.Drawing.Point(135, 466); + this.textBox14.Name = "textBox14"; + this.textBox14.Size = new System.Drawing.Size(50, 23); + this.textBox14.TabIndex = 109; + this.textBox14.Visible = false; + // + // textBox15 + // + this.textBox15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox15.Location = new System.Drawing.Point(135, 495); + this.textBox15.Name = "textBox15"; + this.textBox15.Size = new System.Drawing.Size(50, 23); + this.textBox15.TabIndex = 110; + this.textBox15.Visible = false; + // + // textBox16 + // + this.textBox16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox16.Location = new System.Drawing.Point(135, 524); + this.textBox16.Name = "textBox16"; + this.textBox16.Size = new System.Drawing.Size(50, 23); + this.textBox16.TabIndex = 111; + this.textBox16.Visible = false; + // + // textBox17 + // + this.textBox17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox17.Location = new System.Drawing.Point(135, 553); + this.textBox17.Name = "textBox17"; + this.textBox17.Size = new System.Drawing.Size(50, 23); + this.textBox17.TabIndex = 112; + this.textBox17.Visible = false; + // + // textBox18 + // + this.textBox18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox18.Location = new System.Drawing.Point(135, 582); + this.textBox18.Name = "textBox18"; + this.textBox18.Size = new System.Drawing.Size(50, 23); + this.textBox18.TabIndex = 113; + this.textBox18.Visible = false; + // + // textBox19 + // + this.textBox19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox19.Location = new System.Drawing.Point(135, 611); + this.textBox19.Name = "textBox19"; + this.textBox19.Size = new System.Drawing.Size(50, 23); + this.textBox19.TabIndex = 114; + this.textBox19.Visible = false; + // + // textBox20 + // + this.textBox20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox20.Location = new System.Drawing.Point(135, 640); + this.textBox20.Name = "textBox20"; + this.textBox20.Size = new System.Drawing.Size(50, 23); + this.textBox20.TabIndex = 115; + this.textBox20.Visible = false; + // + // textBox21 + // + this.textBox21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox21.Location = new System.Drawing.Point(135, 669); + this.textBox21.Name = "textBox21"; + this.textBox21.Size = new System.Drawing.Size(50, 23); + this.textBox21.TabIndex = 116; + this.textBox21.Visible = false; + // + // textBox22 + // + this.textBox22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox22.Location = new System.Drawing.Point(135, 698); + this.textBox22.Name = "textBox22"; + this.textBox22.Size = new System.Drawing.Size(50, 23); + this.textBox22.TabIndex = 117; + this.textBox22.Visible = false; + // + // textBox23 + // + this.textBox23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox23.Location = new System.Drawing.Point(135, 727); + this.textBox23.Name = "textBox23"; + this.textBox23.Size = new System.Drawing.Size(50, 23); + this.textBox23.TabIndex = 118; + this.textBox23.Visible = false; + // + // textBox24 + // + this.textBox24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox24.Location = new System.Drawing.Point(135, 756); + this.textBox24.Name = "textBox24"; + this.textBox24.Size = new System.Drawing.Size(50, 23); + this.textBox24.TabIndex = 119; + this.textBox24.Visible = false; + // + // textBox25 + // + this.textBox25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox25.Location = new System.Drawing.Point(696, 89); + this.textBox25.Name = "textBox25"; + this.textBox25.Size = new System.Drawing.Size(50, 23); + this.textBox25.TabIndex = 120; + this.textBox25.Visible = false; + // + // textBox26 + // + this.textBox26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox26.Location = new System.Drawing.Point(696, 118); + this.textBox26.Name = "textBox26"; + this.textBox26.Size = new System.Drawing.Size(50, 23); + this.textBox26.TabIndex = 121; + this.textBox26.Visible = false; + // + // textBox27 + // + this.textBox27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox27.Location = new System.Drawing.Point(696, 147); + this.textBox27.Name = "textBox27"; + this.textBox27.Size = new System.Drawing.Size(50, 23); + this.textBox27.TabIndex = 122; + this.textBox27.Visible = false; + // + // textBox28 + // + this.textBox28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox28.Location = new System.Drawing.Point(696, 176); + this.textBox28.Name = "textBox28"; + this.textBox28.Size = new System.Drawing.Size(50, 23); + this.textBox28.TabIndex = 123; + this.textBox28.Visible = false; + // + // textBox29 + // + this.textBox29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox29.Location = new System.Drawing.Point(696, 205); + this.textBox29.Name = "textBox29"; + this.textBox29.Size = new System.Drawing.Size(50, 23); + this.textBox29.TabIndex = 124; + this.textBox29.Visible = false; + // + // textBox30 + // + this.textBox30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox30.Location = new System.Drawing.Point(696, 234); + this.textBox30.Name = "textBox30"; + this.textBox30.Size = new System.Drawing.Size(50, 23); + this.textBox30.TabIndex = 125; + this.textBox30.Visible = false; + // + // textBox31 + // + this.textBox31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox31.Location = new System.Drawing.Point(696, 263); + this.textBox31.Name = "textBox31"; + this.textBox31.Size = new System.Drawing.Size(50, 23); + this.textBox31.TabIndex = 126; + this.textBox31.Visible = false; + // + // textBox32 + // + this.textBox32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox32.Location = new System.Drawing.Point(696, 292); + this.textBox32.Name = "textBox32"; + this.textBox32.Size = new System.Drawing.Size(50, 23); + this.textBox32.TabIndex = 127; + this.textBox32.Visible = false; + // + // textBox33 + // + this.textBox33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox33.Location = new System.Drawing.Point(696, 321); + this.textBox33.Name = "textBox33"; + this.textBox33.Size = new System.Drawing.Size(50, 23); + this.textBox33.TabIndex = 128; + this.textBox33.Visible = false; + // + // textBox34 + // + this.textBox34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox34.Location = new System.Drawing.Point(696, 350); + this.textBox34.Name = "textBox34"; + this.textBox34.Size = new System.Drawing.Size(50, 23); + this.textBox34.TabIndex = 129; + this.textBox34.Visible = false; + // + // textBox35 + // + this.textBox35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox35.Location = new System.Drawing.Point(696, 379); + this.textBox35.Name = "textBox35"; + this.textBox35.Size = new System.Drawing.Size(50, 23); + this.textBox35.TabIndex = 130; + this.textBox35.Visible = false; + // + // textBox36 + // + this.textBox36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox36.Location = new System.Drawing.Point(696, 408); + this.textBox36.Name = "textBox36"; + this.textBox36.Size = new System.Drawing.Size(50, 23); + this.textBox36.TabIndex = 131; + this.textBox36.Visible = false; + // + // textBox37 + // + this.textBox37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox37.Location = new System.Drawing.Point(696, 437); + this.textBox37.Name = "textBox37"; + this.textBox37.Size = new System.Drawing.Size(50, 23); + this.textBox37.TabIndex = 132; + this.textBox37.Visible = false; + // + // textBox38 + // + this.textBox38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox38.Location = new System.Drawing.Point(696, 466); + this.textBox38.Name = "textBox38"; + this.textBox38.Size = new System.Drawing.Size(50, 23); + this.textBox38.TabIndex = 133; + this.textBox38.Visible = false; + // + // textBox39 + // + this.textBox39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox39.Location = new System.Drawing.Point(696, 495); + this.textBox39.Name = "textBox39"; + this.textBox39.Size = new System.Drawing.Size(50, 23); + this.textBox39.TabIndex = 134; + this.textBox39.Visible = false; + // + // textBox40 + // + this.textBox40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox40.Location = new System.Drawing.Point(696, 523); + this.textBox40.Name = "textBox40"; + this.textBox40.Size = new System.Drawing.Size(50, 23); + this.textBox40.TabIndex = 135; + this.textBox40.Visible = false; + // + // textBox41 + // + this.textBox41.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox41.Location = new System.Drawing.Point(696, 553); + this.textBox41.Name = "textBox41"; + this.textBox41.Size = new System.Drawing.Size(50, 23); + this.textBox41.TabIndex = 136; + this.textBox41.Visible = false; + // + // textBox42 + // + this.textBox42.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox42.Location = new System.Drawing.Point(696, 582); + this.textBox42.Name = "textBox42"; + this.textBox42.Size = new System.Drawing.Size(50, 23); + this.textBox42.TabIndex = 137; + this.textBox42.Visible = false; + // + // textBox43 + // + this.textBox43.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox43.Location = new System.Drawing.Point(696, 611); + this.textBox43.Name = "textBox43"; + this.textBox43.Size = new System.Drawing.Size(50, 23); + this.textBox43.TabIndex = 138; + this.textBox43.Visible = false; + // + // textBox44 + // + this.textBox44.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox44.Location = new System.Drawing.Point(696, 640); + this.textBox44.Name = "textBox44"; + this.textBox44.Size = new System.Drawing.Size(50, 23); + this.textBox44.TabIndex = 139; + this.textBox44.Visible = false; + // + // textBox45 + // + this.textBox45.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox45.Location = new System.Drawing.Point(696, 669); + this.textBox45.Name = "textBox45"; + this.textBox45.Size = new System.Drawing.Size(50, 23); + this.textBox45.TabIndex = 140; + this.textBox45.Visible = false; + // + // textBox46 + // + this.textBox46.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox46.Location = new System.Drawing.Point(696, 698); + this.textBox46.Name = "textBox46"; + this.textBox46.Size = new System.Drawing.Size(50, 23); + this.textBox46.TabIndex = 141; + this.textBox46.Visible = false; + // + // textBox47 + // + this.textBox47.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox47.Location = new System.Drawing.Point(696, 727); + this.textBox47.Name = "textBox47"; + this.textBox47.Size = new System.Drawing.Size(50, 23); + this.textBox47.TabIndex = 142; + this.textBox47.Visible = false; + // + // textBox48 + // + this.textBox48.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox48.Location = new System.Drawing.Point(696, 756); + this.textBox48.Name = "textBox48"; + this.textBox48.Size = new System.Drawing.Size(50, 23); + this.textBox48.TabIndex = 143; + this.textBox48.Visible = false; + // + // iPerlCommunicationForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.OliveDrab; + this.ClientSize = new System.Drawing.Size(1161, 795); + this.Controls.Add(this.textBox48); + this.Controls.Add(this.textBox47); + this.Controls.Add(this.textBox46); + this.Controls.Add(this.textBox45); + this.Controls.Add(this.textBox44); + this.Controls.Add(this.textBox43); + this.Controls.Add(this.textBox42); + this.Controls.Add(this.textBox41); + this.Controls.Add(this.textBox40); + this.Controls.Add(this.textBox39); + this.Controls.Add(this.textBox38); + this.Controls.Add(this.textBox37); + this.Controls.Add(this.textBox36); + this.Controls.Add(this.textBox35); + this.Controls.Add(this.textBox34); + this.Controls.Add(this.textBox33); + this.Controls.Add(this.textBox32); + this.Controls.Add(this.textBox31); + this.Controls.Add(this.textBox30); + this.Controls.Add(this.textBox29); + this.Controls.Add(this.textBox28); + this.Controls.Add(this.textBox27); + this.Controls.Add(this.textBox26); + this.Controls.Add(this.textBox25); + this.Controls.Add(this.textBox24); + this.Controls.Add(this.textBox23); + this.Controls.Add(this.textBox22); + this.Controls.Add(this.textBox21); + this.Controls.Add(this.textBox20); + this.Controls.Add(this.textBox19); + this.Controls.Add(this.textBox18); + this.Controls.Add(this.textBox17); + this.Controls.Add(this.textBox16); + this.Controls.Add(this.textBox15); + this.Controls.Add(this.textBox14); + this.Controls.Add(this.textBox13); + this.Controls.Add(this.textBox12); + this.Controls.Add(this.textBox11); + this.Controls.Add(this.textBox10); + this.Controls.Add(this.textBox9); + this.Controls.Add(this.textBox8); + this.Controls.Add(this.textBox7); + this.Controls.Add(this.textBox6); + this.Controls.Add(this.textBox5); + this.Controls.Add(this.textBox4); + this.Controls.Add(this.textBox3); + this.Controls.Add(this.textBox2); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.activityLabel); + this.Controls.Add(this.wmTextBox48); + this.Controls.Add(this.wmLabel48); + this.Controls.Add(this.wmTextBox47); + this.Controls.Add(this.wmLabel47); + this.Controls.Add(this.wmTextBox46); + this.Controls.Add(this.wmLabel46); + this.Controls.Add(this.wmTextBox45); + this.Controls.Add(this.wmLabel45); + this.Controls.Add(this.wmTextBox44); + this.Controls.Add(this.wmLabel44); + this.Controls.Add(this.wmTextBox43); + this.Controls.Add(this.wmLabel43); + this.Controls.Add(this.wmTextBox42); + this.Controls.Add(this.wmLabel42); + this.Controls.Add(this.wmTextBox41); + this.Controls.Add(this.wmLabel41); + this.Controls.Add(this.wmTextBox40); + this.Controls.Add(this.wmLabel40); + this.Controls.Add(this.wmTextBox39); + this.Controls.Add(this.wmLabel39); + this.Controls.Add(this.wmTextBox38); + this.Controls.Add(this.wmLabel38); + this.Controls.Add(this.wmTextBox37); + this.Controls.Add(this.wmLabel37); + this.Controls.Add(this.wmTextBox36); + this.Controls.Add(this.wmLabel36); + this.Controls.Add(this.wmTextBox35); + this.Controls.Add(this.wmLabel35); + this.Controls.Add(this.wmTextBox34); + this.Controls.Add(this.wmLabel34); + this.Controls.Add(this.wmTextBox33); + this.Controls.Add(this.wmLabel33); + this.Controls.Add(this.wmTextBox32); + this.Controls.Add(this.wmLabel32); + this.Controls.Add(this.wmTextBox31); + this.Controls.Add(this.wmLabel31); + this.Controls.Add(this.wmTextBox30); + this.Controls.Add(this.wmLabel30); + this.Controls.Add(this.wmTextBox29); + this.Controls.Add(this.wmLabel29); + this.Controls.Add(this.wmTextBox28); + this.Controls.Add(this.wmLabel28); + this.Controls.Add(this.wmTextBox27); + this.Controls.Add(this.wmLabel27); + this.Controls.Add(this.wmTextBox26); + this.Controls.Add(this.wmLabel26); + this.Controls.Add(this.wmTextBox25); + this.Controls.Add(this.wmLabel25); + this.Controls.Add(this.wmTextBox24); + this.Controls.Add(this.wmLabel24); + this.Controls.Add(this.wmTextBox23); + this.Controls.Add(this.wmLabel23); + this.Controls.Add(this.wmTextBox22); + this.Controls.Add(this.wmLabel22); + this.Controls.Add(this.wmTextBox21); + this.Controls.Add(this.wmLabel21); + this.Controls.Add(this.wmTextBox20); + this.Controls.Add(this.wmLabel20); + this.Controls.Add(this.wmTextBox19); + this.Controls.Add(this.wmLabel19); + this.Controls.Add(this.wmTextBox18); + this.Controls.Add(this.wmLabel18); + this.Controls.Add(this.wmTextBox17); + this.Controls.Add(this.wmLabel17); + this.Controls.Add(this.wmTextBox16); + this.Controls.Add(this.wmLabel16); + this.Controls.Add(this.wmTextBox15); + this.Controls.Add(this.wmLabel15); + this.Controls.Add(this.wmTextBox14); + this.Controls.Add(this.wmLabel14); + this.Controls.Add(this.wmTextBox13); + this.Controls.Add(this.wmLabel13); + this.Controls.Add(this.wmTextBox12); + this.Controls.Add(this.wmLabel12); + this.Controls.Add(this.wmTextBox11); + this.Controls.Add(this.wmLabel11); + this.Controls.Add(this.wmTextBox10); + this.Controls.Add(this.wmLabel10); + this.Controls.Add(this.wmTextBox9); + this.Controls.Add(this.wmLabel9); + this.Controls.Add(this.wmTextBox8); + this.Controls.Add(this.wmLabel8); + this.Controls.Add(this.wmTextBox7); + this.Controls.Add(this.wmLabel7); + this.Controls.Add(this.wmTextBox6); + this.Controls.Add(this.wmLabel6); + this.Controls.Add(this.wmTextBox5); + this.Controls.Add(this.wmLabel5); + this.Controls.Add(this.wmTextBox4); + this.Controls.Add(this.wmLabel4); + this.Controls.Add(this.wmTextBox3); + this.Controls.Add(this.wmLabel3); + this.Controls.Add(this.wmTextBox2); + this.Controls.Add(this.wmLabel2); + this.Controls.Add(this.wmTextBox1); + this.Controls.Add(this.wmLabel1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; + this.Name = "iPerlCommunicationForm"; + this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; + this.Text = "Water Meter States"; + this.TopMost = true; + this.Load += new System.EventHandler(this.iPerlCommunicationForm_Load); + this.ResumeLayout(false); + this.PerformLayout(); } @@ -1314,6 +1842,54 @@ namespace TBF.BenchControl.TestMethods.iPerlCommunication private System.Windows.Forms.TextBox wmTextBox25; private System.Windows.Forms.Label wmLabel25; private System.Windows.Forms.Label activityLabel; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.TextBox textBox4; + private System.Windows.Forms.TextBox textBox5; + private System.Windows.Forms.TextBox textBox6; + private System.Windows.Forms.TextBox textBox7; + private System.Windows.Forms.TextBox textBox8; + private System.Windows.Forms.TextBox textBox9; + private System.Windows.Forms.TextBox textBox10; + private System.Windows.Forms.TextBox textBox11; + private System.Windows.Forms.TextBox textBox12; + private System.Windows.Forms.TextBox textBox13; + private System.Windows.Forms.TextBox textBox14; + private System.Windows.Forms.TextBox textBox15; + private System.Windows.Forms.TextBox textBox16; + private System.Windows.Forms.TextBox textBox17; + private System.Windows.Forms.TextBox textBox18; + private System.Windows.Forms.TextBox textBox19; + private System.Windows.Forms.TextBox textBox20; + private System.Windows.Forms.TextBox textBox21; + private System.Windows.Forms.TextBox textBox22; + private System.Windows.Forms.TextBox textBox23; + private System.Windows.Forms.TextBox textBox24; + private System.Windows.Forms.TextBox textBox25; + private System.Windows.Forms.TextBox textBox26; + private System.Windows.Forms.TextBox textBox27; + private System.Windows.Forms.TextBox textBox28; + private System.Windows.Forms.TextBox textBox29; + private System.Windows.Forms.TextBox textBox30; + private System.Windows.Forms.TextBox textBox31; + private System.Windows.Forms.TextBox textBox32; + private System.Windows.Forms.TextBox textBox33; + private System.Windows.Forms.TextBox textBox34; + private System.Windows.Forms.TextBox textBox35; + private System.Windows.Forms.TextBox textBox36; + private System.Windows.Forms.TextBox textBox37; + private System.Windows.Forms.TextBox textBox38; + private System.Windows.Forms.TextBox textBox39; + private System.Windows.Forms.TextBox textBox40; + private System.Windows.Forms.TextBox textBox41; + private System.Windows.Forms.TextBox textBox42; + private System.Windows.Forms.TextBox textBox43; + private System.Windows.Forms.TextBox textBox44; + private System.Windows.Forms.TextBox textBox45; + private System.Windows.Forms.TextBox textBox46; + private System.Windows.Forms.TextBox textBox47; + private System.Windows.Forms.TextBox textBox48; } } \ No newline at end of file diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs index a8a51b80a..5a31e2fff 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs @@ -100,4 +100,10 @@ namespace TBF.BenchControl.WaterMeters.iPerl InvalidTelegram, /// Wrong telegram format of checksum error SyncError, } + + public enum OptoState + { + Read, + Flush, + } } diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs index 93eba10d3..d77430e6f 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs @@ -228,6 +228,16 @@ namespace TBF.BenchControl.WaterMeters.iPerl int optoDataCount; string optoDataLogFileName; + + OptoTelegramRaw toBeFlushed; + int flushedDataCount; + public int FlushedDataCount + { + get { return flushedDataCount; } + set { flushedDataCount = value; } + } + + /// /// Opto serial port and worker thread related private variables /// @@ -238,12 +248,6 @@ namespace TBF.BenchControl.WaterMeters.iPerl { disabled = false; commFailed = false; - - synchronized = false; - synchronized2 = false; - partOfTelegram = string.Empty; - - flushBuffer = new char[8192]; } public WaterMeter(WaterMeterCfg cfg) @@ -251,7 +255,7 @@ namespace TBF.BenchControl.WaterMeters.iPerl { disabled = false; commFailed = false; - + iPerlCfg = cfg; log.Debug(this.ToString()); } @@ -272,21 +276,25 @@ namespace TBF.BenchControl.WaterMeters.iPerl { if (DebugLevel == Entities.DebugMode.Normal) { - //int nr = NrFormName(Name); - //optoDataLogger = LogManager.GetLogger("OptoData_" + nr.ToString()); - //optoDataLogger.Fatal("------------------------------------------------------------------------"); - //optoDataLogger.Fatal("Program restarted"); + optoSerialPortParsingEnabled = false; /// Allocate memory for opto-data from iPerl optoData = new OptoTelegramRaw[MaxOptoDataCount]; for (int i = 0; i < MaxOptoDataCount; i++) optoData[i] = new OptoTelegramRaw(); + toBeFlushed = new OptoTelegramRaw(); + flushedDataCount = 0; + + synchronized = false; + synchronized2 = false; + partOfTelegram = string.Empty; + /// Prepare serial port optoSerialPort = new SerialPort(string.Format("COM{0}", iPerlCfg.OptoComPortNr), 9600, Parity.None, 8, StopBits.One); optoSerialPort.Handshake = Handshake.None; - OpenSerialPort(); + optoSerialPort.Open(); } } @@ -297,9 +305,9 @@ namespace TBF.BenchControl.WaterMeters.iPerl try { if (optoSerialPortParsingEnabled) - ReadOptoSerialPort(); + ReadOptoSerialPort(OptoState.Read); else - FlushOptoSerialPort(); + ReadOptoSerialPort(OptoState.Flush); } catch (Exception e) { @@ -324,9 +332,9 @@ namespace TBF.BenchControl.WaterMeters.iPerl public void StopDevice() { - if (DebugLevel == Entities.DebugMode.Normal) + if (DebugLevel == Entities.DebugMode.Normal && optoSerialPort != null) { - CloseSerialPort(); + optoSerialPort.Close(); } } @@ -417,9 +425,8 @@ namespace TBF.BenchControl.WaterMeters.iPerl timestampSec = 0; timestampSec0 = 0; - CloseSerialPort(); - OpenSerialPort(); - ReadPulses(); + ReadPulses(); + StartParsingOptoSerialPort(); } /// Run this operation @@ -460,6 +467,7 @@ namespace TBF.BenchControl.WaterMeters.iPerl /// Stop this operation public void Stop() { + StopParsingOptoSerialPort(); SaveOptoData(); } @@ -482,36 +490,10 @@ namespace TBF.BenchControl.WaterMeters.iPerl bool optoSerialPortParsingEnabled; - bool synchronized; - bool synchronized2; - string partOfTelegram; - - /// Open RFID serial port and start parsing serial data - private void OpenSerialPort() - { - if (optoSerialPort != null) - { - optoSerialPort.Open(); - StartParsingOptoSerialPort(); - } - } - - /// Stop parsing serial data and close RFID serial port - private void CloseSerialPort() - { - if (optoSerialPort != null) - { - StopParsingOptoSerialPort(); - optoSerialPort.Close(); - } - } /// Flush internal buffers and start parsing the opto serial port data void StartParsingOptoSerialPort() { - synchronized = false; - synchronized2 = false; - partOfTelegram = string.Empty; optoSerialPortParsingEnabled = true; } @@ -521,15 +503,12 @@ namespace TBF.BenchControl.WaterMeters.iPerl optoSerialPortParsingEnabled = false; } - - char[] flushBuffer; - - void FlushOptoSerialPort() - { - int nrBytes = optoSerialPort.BytesToRead; - if (nrBytes > 0) optoSerialPort.Read(flushBuffer, 0, nrBytes); - } - + /// + /// Variables storing the context of serial port data parsing (ReadOptoSerialPort(...)) + /// + bool synchronized; + bool synchronized2; + string partOfTelegram; /// /// 9600 Bd, 8 data bits, 1 stop bit, no parity @@ -543,7 +522,8 @@ namespace TBF.BenchControl.WaterMeters.iPerl /// FFDD3A 51F9 0000 65324E 0088 F631A60B 45 /// ... /// - void ReadOptoSerialPort() + /// OptoState.Read or OptoState.Flush + void ReadOptoSerialPort(OptoState optoState) { int nrBytes = optoSerialPort.BytesToRead; if (nrBytes > 0) @@ -564,28 +544,54 @@ namespace TBF.BenchControl.WaterMeters.iPerl partOfTelegram = allRcvd; return; } - // CR+LF found - else if (pos < OptoTelegram.Length - 2) - { - /// CR+LF found too early, truncate the beginning incl CR+LF and keep scanning in this loop - allRcvd = allRcvd.Substring(pos + 2); - if (synchronized) - { - optoData[optoDataCount++].SetFlags(OptoTelegramFlags.SyncError); - } - synchronized = true; - } - // CR+LF found and (pos >= OptoTelegram.Length - 2) - else if (optoData[optoDataCount].UpdateFromString(allRcvd.Substring(pos - OptoTelegramRaw.Length + 2))) - { - OptoTelegramRreceived(optoData[optoDataCount++], synchronized2); - synchronized2 = synchronized; - allRcvd = allRcvd.Substring(pos + 2); - } else { - optoData[optoDataCount++].SetFlags(OptoTelegramFlags.InvalidTelegram); - allRcvd = allRcvd.Substring(pos + 2); + // CR+LF found + if (optoState == OptoState.Read) + { + if (pos < OptoTelegram.Length - 2) + { + /// CR+LF found too early, truncate the beginning incl CR+LF and keep scanning in this loop + allRcvd = allRcvd.Substring(pos + 2); + if (synchronized) + { + optoData[optoDataCount++].SetFlags(OptoTelegramFlags.SyncError); + } + synchronized = true; + } + // CR+LF found and (pos >= OptoTelegram.Length - 2) + else if (optoData[optoDataCount].UpdateFromString(allRcvd.Substring(pos - OptoTelegramRaw.Length + 2))) + { + OptoTelegramRreceived(optoData[optoDataCount++], synchronized2); + synchronized2 = synchronized; + allRcvd = allRcvd.Substring(pos + 2); + } + else + { + optoData[optoDataCount++].SetFlags(OptoTelegramFlags.InvalidTelegram); + allRcvd = allRcvd.Substring(pos + 2); + } + } + else /// optoState == OptoState.Flush + { + if (pos < OptoTelegram.Length - 2) + { + /// CR+LF found too early, truncate the beginning incl CR+LF and keep scanning in this loop + allRcvd = allRcvd.Substring(pos + 2); + synchronized = true; + } + // CR+LF found and (pos >= OptoTelegram.Length - 2) + else if (toBeFlushed.UpdateFromString(allRcvd.Substring(pos - OptoTelegramRaw.Length + 2))) + { + flushedDataCount++; + synchronized2 = synchronized; + allRcvd = allRcvd.Substring(pos + 2); + } + else + { + allRcvd = allRcvd.Substring(pos + 2); + } + } } } diff --git a/TestBenchFramework/Properties/AssemblyInfo.cs b/TestBenchFramework/Properties/AssemblyInfo.cs index 9cbde4afb..1e206b9fd 100644 --- a/TestBenchFramework/Properties/AssemblyInfo.cs +++ b/TestBenchFramework/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.5.116.1")] -[assembly: AssemblyFileVersion("1.5.116.1")] +[assembly: AssemblyVersion("1.5.119.1")] +[assembly: AssemblyFileVersion("1.5.119.1")]