diff --git a/TBF/BenchControl/Elde/ControlBoardDev.cs b/TBF/BenchControl/Elde/ControlBoardDev.cs index 2b1239542..36c79039c 100644 --- a/TBF/BenchControl/Elde/ControlBoardDev.cs +++ b/TBF/BenchControl/Elde/ControlBoardDev.cs @@ -131,8 +131,12 @@ namespace TBF.BenchControl.Elde public float[] EtCalib = new float[8] { 1, 1, 1, 1, 1, 1, 1, 1 }; #elif MUNICH || TORINO_50 || BADGER_MALA_TRAT || BADGER_STREDNA_TRAT || TORUN_50 || CEVAK_40 || TURA_IPERL || TURA_IPERL_NEW || TURA_SPECIAL || MURES_40 || FUZHOU_50 || SLM_50 || PETERSBURG_50 || KEMPNO_50 || BAHRAIN_50 || KRAKOW_50 || JUZNA_AFRIKA_50 || IZRAEL_25 || ZAMBIA || ZODINO || FEWA_50 || FILIPINY_50 || FUZHOU_100 || ALZIR_25 public uint[,] RegValveCalib = new uint[8,2] {{100,500},{100,500},{100,500},{100,500},{100,500},{100,500},{100,500},{100,500}}; - public byte[] MeretRS485Address = new byte[4]; - public float[] EtCalib = new float[5] { 1, 1, 1, 1, 1 }; +#if IZRAEL_50 + public byte[] MeretRS485Address = new byte[6]; +#else + public byte[] MeretRS485Address = new byte[4]; +#endif + public float[] EtCalib = new float[5] { 1, 1, 1, 1, 1 }; #elif IZRAEL_50 || SLM_END public uint[,] RegValveCalib = new uint[8,2] {{100,500},{100,500},{100,500},{100,500},{100,500},{100,500},{100,500},{100,500}}; public byte[] MeretRS485Address = new byte[7]; /// Modbus addresses of Pr1, Pr2, Pr3, Pr4, Pr5, Pr6, T9 (Izrael) or Pr1, Pr2, Pr3, Pr4, T9, T10 (SLM END) diff --git a/TBF/BenchControl/TestMethods/Adjustment/AdjustmentSeq.cs b/TBF/BenchControl/TestMethods/Adjustment/AdjustmentSeq.cs index 0bcdedf9e..33d6ab2fd 100644 --- a/TBF/BenchControl/TestMethods/Adjustment/AdjustmentSeq.cs +++ b/TBF/BenchControl/TestMethods/Adjustment/AdjustmentSeq.cs @@ -1,5 +1,5 @@ /// -/// Copyright (c) 2013-2019 Sensus Slovensko a.s. +/// Copyright (c) 2013-2020 Sensus Slovensko a.s. /// using System; using System.Collections.Generic; @@ -25,7 +25,11 @@ namespace TBF.BenchControl.TestMethods.Adjustment { #pragma warning disable 162 /// Disables 'Unreachable code detected' warning - if (Config.Data.WMsCount > 12) + if (Config.Data.WMsCount > 24) + { + myRef.modelessDlg = new WMErrorsForm48(waterMeters); + } + else if (Config.Data.WMsCount > 12) { myRef.modelessDlg = new WMErrorsForm24(waterMeters); } diff --git a/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.cs b/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.cs new file mode 100644 index 000000000..991958cbb --- /dev/null +++ b/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.cs @@ -0,0 +1,275 @@ +/// +/// Copyright (c) 2020 Sensus Slovensko a.s. +/// +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Windows.Forms; +using log4net; +using Config.Entities; +using TBF.Resources; + +namespace TBF.BenchControl.TestMethods.Adjustment +{ + public partial class WMErrorsForm48 : Form, GenericDevices.IHasCompleted + { + private static readonly ILog log = LogManager.GetLogger(typeof(WMErrorsForm48)); + + const int MaxWMsCount = 48; /// Implementation limit of this form + + /// + /// Updated in constructor + /// + readonly int waterMetersCount; /// Number of text boxes for serial numbers + readonly bool[] disabled; + int textBoxesCount; + Label[] labels; + TextBox[] errors; + Rectangle[] rects; + + /// + /// Updated in OnAdjustmentInProgress() + /// + double[] error; /// Created in constructor + double errLimLo; + double errLimHi; + + /// + /// Set to 'true' when the form closes + /// + public bool Completed { get { return completed; } } + bool completed; + + + /// Parameterless constructor for 3 watermeters + public WMErrorsForm48() + { + InitializeComponent(); + ControlBox = false; + + textBoxesCount = MaxWMsCount; + + labels = new Label[MaxWMsCount] + { + wmErrorLabel1, wmErrorLabel2, wmErrorLabel3, wmErrorLabel4, wmErrorLabel5, + wmErrorLabel6, wmErrorLabel7, wmErrorLabel8, wmErrorLabel9, wmErrorLabel10, + wmErrorLabel11, wmErrorLabel12, wmErrorLabel13, wmErrorLabel14, wmErrorLabel15, + wmErrorLabel16, wmErrorLabel17, wmErrorLabel18, wmErrorLabel19, wmErrorLabel20, + wmErrorLabel21, wmErrorLabel22, wmErrorLabel23, wmErrorLabel24, wmErrorLabel25, + wmErrorLabel26, wmErrorLabel27, wmErrorLabel28, wmErrorLabel29, wmErrorLabel30, + wmErrorLabel31, wmErrorLabel32, wmErrorLabel33, wmErrorLabel34, wmErrorLabel35, + wmErrorLabel36, wmErrorLabel37, wmErrorLabel38, wmErrorLabel39, wmErrorLabel40, + wmErrorLabel41, wmErrorLabel42, wmErrorLabel43, wmErrorLabel44, wmErrorLabel45, + wmErrorLabel46, wmErrorLabel47, wmErrorLabel48, + }; + errors = new TextBox[MaxWMsCount] + { + wmErrorTextBox1, wmErrorTextBox2, wmErrorTextBox3, wmErrorTextBox4, wmErrorTextBox5, + wmErrorTextBox6, wmErrorTextBox7, wmErrorTextBox8, wmErrorTextBox9, wmErrorTextBox10, + wmErrorTextBox11, wmErrorTextBox12, wmErrorTextBox13, wmErrorTextBox14, wmErrorTextBox15, + wmErrorTextBox16, wmErrorTextBox17, wmErrorTextBox18, wmErrorTextBox19, wmErrorTextBox20, + wmErrorTextBox21, wmErrorTextBox22, wmErrorTextBox23, wmErrorTextBox24, wmErrorTextBox25, + wmErrorTextBox26, wmErrorTextBox27, wmErrorTextBox28, wmErrorTextBox29, wmErrorTextBox30, + wmErrorTextBox31, wmErrorTextBox32, wmErrorTextBox33, wmErrorTextBox34, wmErrorTextBox35, + wmErrorTextBox36, wmErrorTextBox37, wmErrorTextBox38, wmErrorTextBox39, wmErrorTextBox40, + wmErrorTextBox41, wmErrorTextBox42, wmErrorTextBox43, wmErrorTextBox44, wmErrorTextBox45, + wmErrorTextBox46, wmErrorTextBox47, wmErrorTextBox48, + }; + + rects = new Rectangle[MaxWMsCount]; + for (int i = 0; i < MaxWMsCount; i++) + { + int row = i % 24; + int col = i / 24; + rects[i] = new Rectangle(350 + col * 557, 22 + row * 34, 230, 25); + } + + completed = false; + + /// Attach to 'AdjustmentInProgress' handler + UiBridge.Bridge.AdjustmentInProgressHandler += delegate(object sender, UiBridge.AdjustmentInProgressEventArgs args) + { + if (InvokeRequired) + { + Invoke(new EventHandler(OnAdjustmentInProgress), sender, args); + } + else OnAdjustmentInProgress(sender, args); + }; + } + + /// + /// Constructor + /// + /// Number of text boxes for serial numbers + public WMErrorsForm48(IList waterMeters) + : this() + { + waterMetersCount = Math.Min(Config.Data.WMsCount, waterMeters.Count); + + ShuffleTextBoxes(waterMetersCount, Config.Data.LineSize); + + disabled = new bool[waterMetersCount]; + for (int i = 0; i < waterMetersCount; i++) + { + if (i < MaxWMsCount) disabled[i] = waterMeters[i].Disabled; + } + + error = new double[waterMetersCount]; + } + + + /// + /// Make sure the layout of labels/text boxes on the screen + /// corresponds to the layout of watermeters of the test bench. + /// + /// Number of watermeters + /// Number of watermeters in one line + void ShuffleTextBoxes(int wmsCount, int lineSize) + { + if ((wmsCount < textBoxesCount) && (lineSize > 0)) + { + int nrLines = (wmsCount + lineSize - 1) / lineSize; + int gap = (textBoxesCount - wmsCount) / nrLines; + + int dest = 0; + for (int l = 0; l < nrLines; l++) + { + for (int i = 0; i < lineSize; i++) + { + labels[dest] = labels[l * lineSize + l * gap + i]; + errors[dest] = errors[l * lineSize + l * gap + i]; + rects[dest] = rects[l * lineSize + l * gap + i]; + dest++; + } + } + textBoxesCount = wmsCount; + } + } + + + void Localize() + { + Text = Strings.Water_Meter_States; + for (int i = 0; i < textBoxesCount; i++) + { + labels[i].Text = string.Format("WM{0} {1}", i + 1, Strings.Error_pct); + } + okButton.Text = Strings.OkBtnText; + } + + private void WMErrorsForm48_Load(object sender, EventArgs e) + { + Localize(); + + //Height = 50 + 90 * WaterMetersCount; + + for (int i = 0; i < textBoxesCount; i++) + { + labels[i].Visible = errors[i].Visible = (disabled == null || i >= disabled.Length || !disabled[i]); + errors[i].Text = "---"; + } + } + + private void okButton_Click(object sender, EventArgs e) + { + completed = true; + Close(); + } + + void OnAdjustmentInProgress(object sender, UiBridge.AdjustmentInProgressEventArgs args) + { + string testName = args.TestName; + + Results.Entities.TestRslt tr = TBF.BenchControl.Sequences.ProcessData.BatchRslts.GetTestRslt(testName, 0); + if (tr != null) + { + errLimLo = tr.ErrLimLo() + tr.ErrLimMargin(); + errLimHi = tr.ErrLimHi() - tr.ErrLimMargin(); + + int count = Math.Min(waterMetersCount, TBF.BenchControl.Sequences.ProcessData.BatchRslts.WMPositionsCount); + for (int i = 0; i < count; i++) + { + Results.Entities.MeterTestRslt mtr = TBF.BenchControl.Sequences.ProcessData.BatchRslts.GetMeterTestRslt(testName, i, CompoundMeterId.Single); + if (mtr != null) error[i] = mtr.Error; + } + + Redraw(); + } + } + + void Redraw() + { + for (int i = 0; i < textBoxesCount; i++) + { + errors[i].Text = error[i].ToString("F1"); + Invalidate(rects[i]); + } + } + + private void WMErrorsForm_Paint(object sender, PaintEventArgs e) + { + System.Drawing.Graphics graphics = this.CreateGraphics(); + + for (int i = 0; i < waterMetersCount; i++) + { + if (!disabled[i]) + { + PaintOne(graphics, rects[i], error[i], errLimLo, errLimHi); + } + } + } + + void PaintOne(System.Drawing.Graphics g, Rectangle r, double value, double limLo, double limHi) + { + Rectangle rect1 = new Rectangle(r.Left, r.Top, r.Width / 3, r.Height); + Rectangle rect2 = new Rectangle(r.Left + r.Width / 3, r.Top, r.Width / 3, r.Height); + Rectangle rect3 = new Rectangle(r.Left + 2 * (r.Width / 3), r.Top, r.Width / 3, r.Height); + Rectangle rectCent = new Rectangle(r.Left + r.Width / 2 - 1, r.Top, 3, r.Height); + + Brush redBrush = new SolidBrush(Color.FromName("Salmon")); + Brush greenBrush = new SolidBrush(Color.FromName("LightGreen")); + Brush centBrush = new SolidBrush(Color.FromName("Green")); + + g.FillRectangle(redBrush, rect1); + g.FillRectangle(greenBrush, rect2); + g.FillRectangle(redBrush, rect3); + g.FillRectangle(centBrush, rectCent); + + int x0 = r.Left + r.Width / 2; + int dx = r.Height / 3; + int x = (int)((double)r.Width * (2.0 * value - limLo - limHi) / (limHi - limLo) / 6.0f + 0.5f); + + if (x0 - dx + x >= r.Left && x0 + dx + x < r.Left + r.Width) + { + Point[] triangle = new Point[3] + { + new Point(x0 - dx + x, r.Top), + new Point(x0 + dx + x, r.Top), + new Point(x0 + x, r.Top + 2 * r.Height / 3), + }; + + Brush blackBrush = new SolidBrush(Color.Black); + g.FillPolygon(blackBrush, triangle); + } + } + + #region Forced close handling + + public void StartForceCloseHandler() + { + UiBridge.Bridge.CloseModelessFormHandler += delegate(object sender, EventArgs args) + { + if (InvokeRequired) { Invoke(new EventHandler(OnForceClose), sender, args); } + else OnForceClose(sender, args); + }; + } + + void OnForceClose(object sender, EventArgs args) + { + DialogResult = DialogResult.Cancel; + Close(); + } + + #endregion + } +} diff --git a/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.designer.cs b/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.designer.cs new file mode 100644 index 000000000..e7edff811 --- /dev/null +++ b/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.designer.cs @@ -0,0 +1,1321 @@ +/// +/// Copyright (c) 2020 Sensus Slovensko a.s. +/// +namespace TBF.BenchControl.TestMethods.Adjustment +{ + partial class WMErrorsForm48 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.wmErrorTextBox2 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel2 = new System.Windows.Forms.Label(); + this.wmErrorLabel1 = new System.Windows.Forms.Label(); + this.okButton = new System.Windows.Forms.Button(); + this.wmErrorTextBox3 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel3 = new System.Windows.Forms.Label(); + this.wmErrorTextBox4 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel4 = new System.Windows.Forms.Label(); + this.wmErrorTextBox5 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel5 = new System.Windows.Forms.Label(); + this.wmErrorTextBox6 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel6 = new System.Windows.Forms.Label(); + this.wmErrorTextBox1 = new System.Windows.Forms.TextBox(); + this.wmErrorTextBox7 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel7 = new System.Windows.Forms.Label(); + this.wmErrorTextBox8 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel8 = new System.Windows.Forms.Label(); + this.wmErrorTextBox9 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel9 = new System.Windows.Forms.Label(); + this.wmErrorTextBox10 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel10 = new System.Windows.Forms.Label(); + this.wmErrorTextBox12 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel12 = new System.Windows.Forms.Label(); + this.wmErrorTextBox11 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel11 = new System.Windows.Forms.Label(); + this.wmErrorTextBox24 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel24 = new System.Windows.Forms.Label(); + this.wmErrorTextBox23 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel23 = new System.Windows.Forms.Label(); + this.wmErrorTextBox22 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel22 = new System.Windows.Forms.Label(); + this.wmErrorTextBox21 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel21 = new System.Windows.Forms.Label(); + this.wmErrorTextBox20 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel20 = new System.Windows.Forms.Label(); + this.wmErrorTextBox19 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel19 = new System.Windows.Forms.Label(); + this.wmErrorTextBox18 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel18 = new System.Windows.Forms.Label(); + this.wmErrorTextBox17 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel17 = new System.Windows.Forms.Label(); + this.wmErrorTextBox16 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel16 = new System.Windows.Forms.Label(); + this.wmErrorTextBox15 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel15 = new System.Windows.Forms.Label(); + this.wmErrorTextBox14 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel14 = new System.Windows.Forms.Label(); + this.wmErrorTextBox13 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel13 = new System.Windows.Forms.Label(); + this.wmErrorTextBox25 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel25 = new System.Windows.Forms.Label(); + this.wmErrorTextBox26 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel26 = new System.Windows.Forms.Label(); + this.wmErrorTextBox27 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel27 = new System.Windows.Forms.Label(); + this.wmErrorTextBox28 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel28 = new System.Windows.Forms.Label(); + this.wmErrorTextBox29 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel29 = new System.Windows.Forms.Label(); + this.wmErrorTextBox30 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel30 = new System.Windows.Forms.Label(); + this.wmErrorTextBox36 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel36 = new System.Windows.Forms.Label(); + this.wmErrorTextBox35 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel35 = new System.Windows.Forms.Label(); + this.wmErrorTextBox34 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel34 = new System.Windows.Forms.Label(); + this.wmErrorTextBox33 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel33 = new System.Windows.Forms.Label(); + this.wmErrorTextBox32 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel32 = new System.Windows.Forms.Label(); + this.wmErrorTextBox31 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel31 = new System.Windows.Forms.Label(); + this.wmErrorTextBox42 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel42 = new System.Windows.Forms.Label(); + this.wmErrorTextBox41 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel41 = new System.Windows.Forms.Label(); + this.wmErrorTextBox40 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel40 = new System.Windows.Forms.Label(); + this.wmErrorTextBox39 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel39 = new System.Windows.Forms.Label(); + this.wmErrorTextBox38 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel38 = new System.Windows.Forms.Label(); + this.wmErrorTextBox37 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel37 = new System.Windows.Forms.Label(); + this.wmErrorTextBox48 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel48 = new System.Windows.Forms.Label(); + this.wmErrorTextBox47 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel47 = new System.Windows.Forms.Label(); + this.wmErrorTextBox46 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel46 = new System.Windows.Forms.Label(); + this.wmErrorTextBox45 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel45 = new System.Windows.Forms.Label(); + this.wmErrorTextBox44 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel44 = new System.Windows.Forms.Label(); + this.wmErrorTextBox43 = new System.Windows.Forms.TextBox(); + this.wmErrorLabel43 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // wmErrorTextBox2 + // + this.wmErrorTextBox2.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox2.Location = new System.Drawing.Point(207, 52); + this.wmErrorTextBox2.Name = "wmErrorTextBox2"; + this.wmErrorTextBox2.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox2.TabIndex = 1; + this.wmErrorTextBox2.Visible = false; + // + // wmErrorLabel2 + // + this.wmErrorLabel2.AutoSize = true; + this.wmErrorLabel2.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel2.Location = new System.Drawing.Point(33, 57); + this.wmErrorLabel2.Name = "wmErrorLabel2"; + this.wmErrorLabel2.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel2.TabIndex = 0; + this.wmErrorLabel2.Text = "Error [%]"; + this.wmErrorLabel2.Visible = false; + // + // wmErrorLabel1 + // + this.wmErrorLabel1.AutoSize = true; + this.wmErrorLabel1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel1.Location = new System.Drawing.Point(33, 23); + this.wmErrorLabel1.Name = "wmErrorLabel1"; + this.wmErrorLabel1.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel1.TabIndex = 0; + this.wmErrorLabel1.Text = "Error [%]"; + this.wmErrorLabel1.Visible = false; + // + // okButton + // + this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.okButton.ForeColor = System.Drawing.Color.Black; + this.okButton.Location = new System.Drawing.Point(1157, 18); + this.okButton.Name = "okButton"; + this.okButton.Size = new System.Drawing.Size(98, 63); + this.okButton.TabIndex = 7; + this.okButton.Text = "OK"; + this.okButton.UseVisualStyleBackColor = true; + this.okButton.Click += new System.EventHandler(this.okButton_Click); + // + // wmErrorTextBox3 + // + this.wmErrorTextBox3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox3.Location = new System.Drawing.Point(207, 86); + this.wmErrorTextBox3.Name = "wmErrorTextBox3"; + this.wmErrorTextBox3.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox3.TabIndex = 1; + this.wmErrorTextBox3.Visible = false; + // + // wmErrorLabel3 + // + this.wmErrorLabel3.AutoSize = true; + this.wmErrorLabel3.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel3.Location = new System.Drawing.Point(33, 91); + this.wmErrorLabel3.Name = "wmErrorLabel3"; + this.wmErrorLabel3.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel3.TabIndex = 0; + this.wmErrorLabel3.Text = "Error [%]"; + this.wmErrorLabel3.Visible = false; + // + // wmErrorTextBox4 + // + this.wmErrorTextBox4.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox4.Location = new System.Drawing.Point(207, 120); + this.wmErrorTextBox4.Name = "wmErrorTextBox4"; + this.wmErrorTextBox4.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox4.TabIndex = 1; + this.wmErrorTextBox4.Visible = false; + // + // wmErrorLabel4 + // + this.wmErrorLabel4.AutoSize = true; + this.wmErrorLabel4.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel4.Location = new System.Drawing.Point(33, 125); + this.wmErrorLabel4.Name = "wmErrorLabel4"; + this.wmErrorLabel4.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel4.TabIndex = 0; + this.wmErrorLabel4.Text = "Error [%]"; + this.wmErrorLabel4.Visible = false; + // + // wmErrorTextBox5 + // + this.wmErrorTextBox5.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox5.Location = new System.Drawing.Point(207, 154); + this.wmErrorTextBox5.Name = "wmErrorTextBox5"; + this.wmErrorTextBox5.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox5.TabIndex = 1; + this.wmErrorTextBox5.Visible = false; + // + // wmErrorLabel5 + // + this.wmErrorLabel5.AutoSize = true; + this.wmErrorLabel5.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel5.Location = new System.Drawing.Point(33, 159); + this.wmErrorLabel5.Name = "wmErrorLabel5"; + this.wmErrorLabel5.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel5.TabIndex = 0; + this.wmErrorLabel5.Text = "Error [%]"; + this.wmErrorLabel5.Visible = false; + // + // wmErrorTextBox6 + // + this.wmErrorTextBox6.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox6.Location = new System.Drawing.Point(207, 188); + this.wmErrorTextBox6.Name = "wmErrorTextBox6"; + this.wmErrorTextBox6.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox6.TabIndex = 1; + this.wmErrorTextBox6.Visible = false; + // + // wmErrorLabel6 + // + this.wmErrorLabel6.AutoSize = true; + this.wmErrorLabel6.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel6.Location = new System.Drawing.Point(33, 194); + this.wmErrorLabel6.Name = "wmErrorLabel6"; + this.wmErrorLabel6.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel6.TabIndex = 0; + this.wmErrorLabel6.Text = "Error [%]"; + this.wmErrorLabel6.Visible = false; + // + // wmErrorTextBox1 + // + this.wmErrorTextBox1.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox1.Location = new System.Drawing.Point(207, 18); + this.wmErrorTextBox1.Name = "wmErrorTextBox1"; + this.wmErrorTextBox1.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox1.TabIndex = 1; + this.wmErrorTextBox1.Visible = false; + // + // wmErrorTextBox7 + // + this.wmErrorTextBox7.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox7.Location = new System.Drawing.Point(207, 222); + this.wmErrorTextBox7.Name = "wmErrorTextBox7"; + this.wmErrorTextBox7.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox7.TabIndex = 9; + this.wmErrorTextBox7.Visible = false; + // + // wmErrorLabel7 + // + this.wmErrorLabel7.AutoSize = true; + this.wmErrorLabel7.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel7.Location = new System.Drawing.Point(33, 228); + this.wmErrorLabel7.Name = "wmErrorLabel7"; + this.wmErrorLabel7.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel7.TabIndex = 8; + this.wmErrorLabel7.Text = "Error [%]"; + this.wmErrorLabel7.Visible = false; + // + // wmErrorTextBox8 + // + this.wmErrorTextBox8.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox8.Location = new System.Drawing.Point(207, 256); + this.wmErrorTextBox8.Name = "wmErrorTextBox8"; + this.wmErrorTextBox8.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox8.TabIndex = 11; + this.wmErrorTextBox8.Visible = false; + // + // wmErrorLabel8 + // + this.wmErrorLabel8.AutoSize = true; + this.wmErrorLabel8.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel8.Location = new System.Drawing.Point(33, 262); + this.wmErrorLabel8.Name = "wmErrorLabel8"; + this.wmErrorLabel8.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel8.TabIndex = 10; + this.wmErrorLabel8.Text = "Error [%]"; + this.wmErrorLabel8.Visible = false; + // + // wmErrorTextBox9 + // + this.wmErrorTextBox9.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox9.Location = new System.Drawing.Point(207, 290); + this.wmErrorTextBox9.Name = "wmErrorTextBox9"; + this.wmErrorTextBox9.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox9.TabIndex = 13; + this.wmErrorTextBox9.Visible = false; + // + // wmErrorLabel9 + // + this.wmErrorLabel9.AutoSize = true; + this.wmErrorLabel9.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel9.Location = new System.Drawing.Point(33, 295); + this.wmErrorLabel9.Name = "wmErrorLabel9"; + this.wmErrorLabel9.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel9.TabIndex = 12; + this.wmErrorLabel9.Text = "Error [%]"; + this.wmErrorLabel9.Visible = false; + // + // wmErrorTextBox10 + // + this.wmErrorTextBox10.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox10.Location = new System.Drawing.Point(207, 324); + this.wmErrorTextBox10.Name = "wmErrorTextBox10"; + this.wmErrorTextBox10.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox10.TabIndex = 15; + this.wmErrorTextBox10.Visible = false; + // + // wmErrorLabel10 + // + this.wmErrorLabel10.AutoSize = true; + this.wmErrorLabel10.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel10.Location = new System.Drawing.Point(33, 329); + this.wmErrorLabel10.Name = "wmErrorLabel10"; + this.wmErrorLabel10.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel10.TabIndex = 14; + this.wmErrorLabel10.Text = "Error [%]"; + this.wmErrorLabel10.Visible = false; + // + // wmErrorTextBox12 + // + this.wmErrorTextBox12.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox12.Location = new System.Drawing.Point(207, 392); + this.wmErrorTextBox12.Name = "wmErrorTextBox12"; + this.wmErrorTextBox12.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox12.TabIndex = 19; + this.wmErrorTextBox12.Visible = false; + // + // wmErrorLabel12 + // + this.wmErrorLabel12.AutoSize = true; + this.wmErrorLabel12.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel12.Location = new System.Drawing.Point(33, 397); + this.wmErrorLabel12.Name = "wmErrorLabel12"; + this.wmErrorLabel12.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel12.TabIndex = 18; + this.wmErrorLabel12.Text = "Error [%]"; + this.wmErrorLabel12.Visible = false; + // + // wmErrorTextBox11 + // + this.wmErrorTextBox11.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox11.Location = new System.Drawing.Point(207, 358); + this.wmErrorTextBox11.Name = "wmErrorTextBox11"; + this.wmErrorTextBox11.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox11.TabIndex = 17; + this.wmErrorTextBox11.Visible = false; + // + // wmErrorLabel11 + // + this.wmErrorLabel11.AutoSize = true; + this.wmErrorLabel11.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel11.Location = new System.Drawing.Point(33, 363); + this.wmErrorLabel11.Name = "wmErrorLabel11"; + this.wmErrorLabel11.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel11.TabIndex = 16; + this.wmErrorLabel11.Text = "Error [%]"; + this.wmErrorLabel11.Visible = false; + // + // wmErrorTextBox24 + // + this.wmErrorTextBox24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox24.Location = new System.Drawing.Point(207, 800); + this.wmErrorTextBox24.Name = "wmErrorTextBox24"; + this.wmErrorTextBox24.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox24.TabIndex = 43; + this.wmErrorTextBox24.Visible = false; + // + // wmErrorLabel24 + // + this.wmErrorLabel24.AutoSize = true; + this.wmErrorLabel24.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel24.Location = new System.Drawing.Point(33, 805); + this.wmErrorLabel24.Name = "wmErrorLabel24"; + this.wmErrorLabel24.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel24.TabIndex = 42; + this.wmErrorLabel24.Text = "Error [%]"; + this.wmErrorLabel24.Visible = false; + // + // wmErrorTextBox23 + // + this.wmErrorTextBox23.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox23.Location = new System.Drawing.Point(207, 766); + this.wmErrorTextBox23.Name = "wmErrorTextBox23"; + this.wmErrorTextBox23.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox23.TabIndex = 41; + this.wmErrorTextBox23.Visible = false; + // + // wmErrorLabel23 + // + this.wmErrorLabel23.AutoSize = true; + this.wmErrorLabel23.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel23.Location = new System.Drawing.Point(33, 771); + this.wmErrorLabel23.Name = "wmErrorLabel23"; + this.wmErrorLabel23.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel23.TabIndex = 40; + this.wmErrorLabel23.Text = "Error [%]"; + this.wmErrorLabel23.Visible = false; + // + // wmErrorTextBox22 + // + this.wmErrorTextBox22.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox22.Location = new System.Drawing.Point(207, 732); + this.wmErrorTextBox22.Name = "wmErrorTextBox22"; + this.wmErrorTextBox22.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox22.TabIndex = 39; + this.wmErrorTextBox22.Visible = false; + // + // wmErrorLabel22 + // + this.wmErrorLabel22.AutoSize = true; + this.wmErrorLabel22.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel22.Location = new System.Drawing.Point(33, 737); + this.wmErrorLabel22.Name = "wmErrorLabel22"; + this.wmErrorLabel22.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel22.TabIndex = 38; + this.wmErrorLabel22.Text = "Error [%]"; + this.wmErrorLabel22.Visible = false; + // + // wmErrorTextBox21 + // + this.wmErrorTextBox21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox21.Location = new System.Drawing.Point(207, 698); + this.wmErrorTextBox21.Name = "wmErrorTextBox21"; + this.wmErrorTextBox21.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox21.TabIndex = 37; + this.wmErrorTextBox21.Visible = false; + // + // wmErrorLabel21 + // + this.wmErrorLabel21.AutoSize = true; + this.wmErrorLabel21.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel21.Location = new System.Drawing.Point(33, 703); + this.wmErrorLabel21.Name = "wmErrorLabel21"; + this.wmErrorLabel21.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel21.TabIndex = 36; + this.wmErrorLabel21.Text = "Error [%]"; + this.wmErrorLabel21.Visible = false; + // + // wmErrorTextBox20 + // + this.wmErrorTextBox20.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox20.Location = new System.Drawing.Point(207, 664); + this.wmErrorTextBox20.Name = "wmErrorTextBox20"; + this.wmErrorTextBox20.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox20.TabIndex = 35; + this.wmErrorTextBox20.Visible = false; + // + // wmErrorLabel20 + // + this.wmErrorLabel20.AutoSize = true; + this.wmErrorLabel20.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel20.Location = new System.Drawing.Point(33, 670); + this.wmErrorLabel20.Name = "wmErrorLabel20"; + this.wmErrorLabel20.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel20.TabIndex = 34; + this.wmErrorLabel20.Text = "Error [%]"; + this.wmErrorLabel20.Visible = false; + // + // wmErrorTextBox19 + // + this.wmErrorTextBox19.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox19.Location = new System.Drawing.Point(207, 630); + this.wmErrorTextBox19.Name = "wmErrorTextBox19"; + this.wmErrorTextBox19.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox19.TabIndex = 33; + this.wmErrorTextBox19.Visible = false; + // + // wmErrorLabel19 + // + this.wmErrorLabel19.AutoSize = true; + this.wmErrorLabel19.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel19.Location = new System.Drawing.Point(33, 636); + this.wmErrorLabel19.Name = "wmErrorLabel19"; + this.wmErrorLabel19.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel19.TabIndex = 32; + this.wmErrorLabel19.Text = "Error [%]"; + this.wmErrorLabel19.Visible = false; + // + // wmErrorTextBox18 + // + this.wmErrorTextBox18.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox18.Location = new System.Drawing.Point(207, 596); + this.wmErrorTextBox18.Name = "wmErrorTextBox18"; + this.wmErrorTextBox18.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox18.TabIndex = 27; + this.wmErrorTextBox18.Visible = false; + // + // wmErrorLabel18 + // + this.wmErrorLabel18.AutoSize = true; + this.wmErrorLabel18.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel18.Location = new System.Drawing.Point(33, 602); + this.wmErrorLabel18.Name = "wmErrorLabel18"; + this.wmErrorLabel18.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel18.TabIndex = 23; + this.wmErrorLabel18.Text = "Error [%]"; + this.wmErrorLabel18.Visible = false; + // + // wmErrorTextBox17 + // + this.wmErrorTextBox17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox17.Location = new System.Drawing.Point(207, 562); + this.wmErrorTextBox17.Name = "wmErrorTextBox17"; + this.wmErrorTextBox17.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox17.TabIndex = 26; + this.wmErrorTextBox17.Visible = false; + // + // wmErrorLabel17 + // + this.wmErrorLabel17.AutoSize = true; + this.wmErrorLabel17.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel17.Location = new System.Drawing.Point(33, 567); + this.wmErrorLabel17.Name = "wmErrorLabel17"; + this.wmErrorLabel17.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel17.TabIndex = 22; + this.wmErrorLabel17.Text = "Error [%]"; + this.wmErrorLabel17.Visible = false; + // + // wmErrorTextBox16 + // + this.wmErrorTextBox16.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox16.Location = new System.Drawing.Point(207, 528); + this.wmErrorTextBox16.Name = "wmErrorTextBox16"; + this.wmErrorTextBox16.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox16.TabIndex = 30; + this.wmErrorTextBox16.Visible = false; + // + // wmErrorLabel16 + // + this.wmErrorLabel16.AutoSize = true; + this.wmErrorLabel16.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel16.Location = new System.Drawing.Point(33, 533); + this.wmErrorLabel16.Name = "wmErrorLabel16"; + this.wmErrorLabel16.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel16.TabIndex = 21; + this.wmErrorLabel16.Text = "Error [%]"; + this.wmErrorLabel16.Visible = false; + // + // wmErrorTextBox15 + // + this.wmErrorTextBox15.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox15.Location = new System.Drawing.Point(207, 494); + this.wmErrorTextBox15.Name = "wmErrorTextBox15"; + this.wmErrorTextBox15.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox15.TabIndex = 31; + this.wmErrorTextBox15.Visible = false; + // + // wmErrorLabel15 + // + this.wmErrorLabel15.AutoSize = true; + this.wmErrorLabel15.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel15.Location = new System.Drawing.Point(33, 499); + this.wmErrorLabel15.Name = "wmErrorLabel15"; + this.wmErrorLabel15.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel15.TabIndex = 20; + this.wmErrorLabel15.Text = "Error [%]"; + this.wmErrorLabel15.Visible = false; + // + // wmErrorTextBox14 + // + this.wmErrorTextBox14.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox14.Location = new System.Drawing.Point(207, 460); + this.wmErrorTextBox14.Name = "wmErrorTextBox14"; + this.wmErrorTextBox14.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox14.TabIndex = 28; + this.wmErrorTextBox14.Visible = false; + // + // wmErrorLabel14 + // + this.wmErrorLabel14.AutoSize = true; + this.wmErrorLabel14.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel14.Location = new System.Drawing.Point(33, 465); + this.wmErrorLabel14.Name = "wmErrorLabel14"; + this.wmErrorLabel14.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel14.TabIndex = 25; + this.wmErrorLabel14.Text = "Error [%]"; + this.wmErrorLabel14.Visible = false; + // + // wmErrorTextBox13 + // + this.wmErrorTextBox13.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox13.Location = new System.Drawing.Point(207, 426); + this.wmErrorTextBox13.Name = "wmErrorTextBox13"; + this.wmErrorTextBox13.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox13.TabIndex = 29; + this.wmErrorTextBox13.Visible = false; + // + // wmErrorLabel13 + // + this.wmErrorLabel13.AutoSize = true; + this.wmErrorLabel13.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel13.Location = new System.Drawing.Point(33, 431); + this.wmErrorLabel13.Name = "wmErrorLabel13"; + this.wmErrorLabel13.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel13.TabIndex = 24; + this.wmErrorLabel13.Text = "Error [%]"; + this.wmErrorLabel13.Visible = false; + // + // wmErrorTextBox25 + // + this.wmErrorTextBox25.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox25.Location = new System.Drawing.Point(763, 18); + this.wmErrorTextBox25.Name = "wmErrorTextBox25"; + this.wmErrorTextBox25.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox25.TabIndex = 45; + this.wmErrorTextBox25.Visible = false; + // + // wmErrorLabel25 + // + this.wmErrorLabel25.AutoSize = true; + this.wmErrorLabel25.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel25.Location = new System.Drawing.Point(589, 23); + this.wmErrorLabel25.Name = "wmErrorLabel25"; + this.wmErrorLabel25.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel25.TabIndex = 44; + this.wmErrorLabel25.Text = "Error [%]"; + this.wmErrorLabel25.Visible = false; + // + // wmErrorTextBox26 + // + this.wmErrorTextBox26.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox26.Location = new System.Drawing.Point(763, 52); + this.wmErrorTextBox26.Name = "wmErrorTextBox26"; + this.wmErrorTextBox26.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox26.TabIndex = 47; + this.wmErrorTextBox26.Visible = false; + // + // wmErrorLabel26 + // + this.wmErrorLabel26.AutoSize = true; + this.wmErrorLabel26.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel26.Location = new System.Drawing.Point(589, 57); + this.wmErrorLabel26.Name = "wmErrorLabel26"; + this.wmErrorLabel26.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel26.TabIndex = 46; + this.wmErrorLabel26.Text = "Error [%]"; + this.wmErrorLabel26.Visible = false; + // + // wmErrorTextBox27 + // + this.wmErrorTextBox27.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox27.Location = new System.Drawing.Point(763, 86); + this.wmErrorTextBox27.Name = "wmErrorTextBox27"; + this.wmErrorTextBox27.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox27.TabIndex = 49; + this.wmErrorTextBox27.Visible = false; + // + // wmErrorLabel27 + // + this.wmErrorLabel27.AutoSize = true; + this.wmErrorLabel27.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel27.Location = new System.Drawing.Point(589, 91); + this.wmErrorLabel27.Name = "wmErrorLabel27"; + this.wmErrorLabel27.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel27.TabIndex = 48; + this.wmErrorLabel27.Text = "Error [%]"; + this.wmErrorLabel27.Visible = false; + // + // wmErrorTextBox28 + // + this.wmErrorTextBox28.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox28.Location = new System.Drawing.Point(763, 120); + this.wmErrorTextBox28.Name = "wmErrorTextBox28"; + this.wmErrorTextBox28.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox28.TabIndex = 51; + this.wmErrorTextBox28.Visible = false; + // + // wmErrorLabel28 + // + this.wmErrorLabel28.AutoSize = true; + this.wmErrorLabel28.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel28.Location = new System.Drawing.Point(589, 125); + this.wmErrorLabel28.Name = "wmErrorLabel28"; + this.wmErrorLabel28.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel28.TabIndex = 50; + this.wmErrorLabel28.Text = "Error [%]"; + this.wmErrorLabel28.Visible = false; + // + // wmErrorTextBox29 + // + this.wmErrorTextBox29.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox29.Location = new System.Drawing.Point(763, 154); + this.wmErrorTextBox29.Name = "wmErrorTextBox29"; + this.wmErrorTextBox29.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox29.TabIndex = 53; + this.wmErrorTextBox29.Visible = false; + // + // wmErrorLabel29 + // + this.wmErrorLabel29.AutoSize = true; + this.wmErrorLabel29.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel29.Location = new System.Drawing.Point(589, 159); + this.wmErrorLabel29.Name = "wmErrorLabel29"; + this.wmErrorLabel29.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel29.TabIndex = 52; + this.wmErrorLabel29.Text = "Error [%]"; + this.wmErrorLabel29.Visible = false; + // + // wmErrorTextBox30 + // + this.wmErrorTextBox30.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox30.Location = new System.Drawing.Point(763, 188); + this.wmErrorTextBox30.Name = "wmErrorTextBox30"; + this.wmErrorTextBox30.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox30.TabIndex = 55; + this.wmErrorTextBox30.Visible = false; + // + // wmErrorLabel30 + // + this.wmErrorLabel30.AutoSize = true; + this.wmErrorLabel30.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel30.Location = new System.Drawing.Point(589, 193); + this.wmErrorLabel30.Name = "wmErrorLabel30"; + this.wmErrorLabel30.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel30.TabIndex = 54; + this.wmErrorLabel30.Text = "Error [%]"; + this.wmErrorLabel30.Visible = false; + // + // wmErrorTextBox36 + // + this.wmErrorTextBox36.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox36.Location = new System.Drawing.Point(763, 392); + this.wmErrorTextBox36.Name = "wmErrorTextBox36"; + this.wmErrorTextBox36.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox36.TabIndex = 67; + this.wmErrorTextBox36.Visible = false; + // + // wmErrorLabel36 + // + this.wmErrorLabel36.AutoSize = true; + this.wmErrorLabel36.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel36.Location = new System.Drawing.Point(589, 397); + this.wmErrorLabel36.Name = "wmErrorLabel36"; + this.wmErrorLabel36.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel36.TabIndex = 66; + this.wmErrorLabel36.Text = "Error [%]"; + this.wmErrorLabel36.Visible = false; + // + // wmErrorTextBox35 + // + this.wmErrorTextBox35.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox35.Location = new System.Drawing.Point(763, 358); + this.wmErrorTextBox35.Name = "wmErrorTextBox35"; + this.wmErrorTextBox35.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox35.TabIndex = 65; + this.wmErrorTextBox35.Visible = false; + // + // wmErrorLabel35 + // + this.wmErrorLabel35.AutoSize = true; + this.wmErrorLabel35.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel35.Location = new System.Drawing.Point(589, 363); + this.wmErrorLabel35.Name = "wmErrorLabel35"; + this.wmErrorLabel35.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel35.TabIndex = 64; + this.wmErrorLabel35.Text = "Error [%]"; + this.wmErrorLabel35.Visible = false; + // + // wmErrorTextBox34 + // + this.wmErrorTextBox34.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox34.Location = new System.Drawing.Point(763, 324); + this.wmErrorTextBox34.Name = "wmErrorTextBox34"; + this.wmErrorTextBox34.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox34.TabIndex = 63; + this.wmErrorTextBox34.Visible = false; + // + // wmErrorLabel34 + // + this.wmErrorLabel34.AutoSize = true; + this.wmErrorLabel34.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel34.Location = new System.Drawing.Point(589, 329); + this.wmErrorLabel34.Name = "wmErrorLabel34"; + this.wmErrorLabel34.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel34.TabIndex = 62; + this.wmErrorLabel34.Text = "Error [%]"; + this.wmErrorLabel34.Visible = false; + // + // wmErrorTextBox33 + // + this.wmErrorTextBox33.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox33.Location = new System.Drawing.Point(763, 290); + this.wmErrorTextBox33.Name = "wmErrorTextBox33"; + this.wmErrorTextBox33.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox33.TabIndex = 61; + this.wmErrorTextBox33.Visible = false; + // + // wmErrorLabel33 + // + this.wmErrorLabel33.AutoSize = true; + this.wmErrorLabel33.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel33.Location = new System.Drawing.Point(589, 295); + this.wmErrorLabel33.Name = "wmErrorLabel33"; + this.wmErrorLabel33.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel33.TabIndex = 60; + this.wmErrorLabel33.Text = "Error [%]"; + this.wmErrorLabel33.Visible = false; + // + // wmErrorTextBox32 + // + this.wmErrorTextBox32.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox32.Location = new System.Drawing.Point(763, 256); + this.wmErrorTextBox32.Name = "wmErrorTextBox32"; + this.wmErrorTextBox32.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox32.TabIndex = 59; + this.wmErrorTextBox32.Visible = false; + // + // wmErrorLabel32 + // + this.wmErrorLabel32.AutoSize = true; + this.wmErrorLabel32.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel32.Location = new System.Drawing.Point(589, 261); + this.wmErrorLabel32.Name = "wmErrorLabel32"; + this.wmErrorLabel32.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel32.TabIndex = 58; + this.wmErrorLabel32.Text = "Error [%]"; + this.wmErrorLabel32.Visible = false; + // + // wmErrorTextBox31 + // + this.wmErrorTextBox31.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox31.Location = new System.Drawing.Point(763, 222); + this.wmErrorTextBox31.Name = "wmErrorTextBox31"; + this.wmErrorTextBox31.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox31.TabIndex = 57; + this.wmErrorTextBox31.Visible = false; + // + // wmErrorLabel31 + // + this.wmErrorLabel31.AutoSize = true; + this.wmErrorLabel31.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel31.Location = new System.Drawing.Point(589, 227); + this.wmErrorLabel31.Name = "wmErrorLabel31"; + this.wmErrorLabel31.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel31.TabIndex = 56; + this.wmErrorLabel31.Text = "Error [%]"; + this.wmErrorLabel31.Visible = false; + // + // wmErrorTextBox42 + // + this.wmErrorTextBox42.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox42.Location = new System.Drawing.Point(763, 596); + this.wmErrorTextBox42.Name = "wmErrorTextBox42"; + this.wmErrorTextBox42.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox42.TabIndex = 79; + this.wmErrorTextBox42.Visible = false; + // + // wmErrorLabel42 + // + this.wmErrorLabel42.AutoSize = true; + this.wmErrorLabel42.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel42.Location = new System.Drawing.Point(589, 601); + this.wmErrorLabel42.Name = "wmErrorLabel42"; + this.wmErrorLabel42.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel42.TabIndex = 78; + this.wmErrorLabel42.Text = "Error [%]"; + this.wmErrorLabel42.Visible = false; + // + // wmErrorTextBox41 + // + this.wmErrorTextBox41.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox41.Location = new System.Drawing.Point(763, 562); + this.wmErrorTextBox41.Name = "wmErrorTextBox41"; + this.wmErrorTextBox41.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox41.TabIndex = 77; + this.wmErrorTextBox41.Visible = false; + // + // wmErrorLabel41 + // + this.wmErrorLabel41.AutoSize = true; + this.wmErrorLabel41.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel41.Location = new System.Drawing.Point(589, 567); + this.wmErrorLabel41.Name = "wmErrorLabel41"; + this.wmErrorLabel41.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel41.TabIndex = 76; + this.wmErrorLabel41.Text = "Error [%]"; + this.wmErrorLabel41.Visible = false; + // + // wmErrorTextBox40 + // + this.wmErrorTextBox40.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox40.Location = new System.Drawing.Point(763, 528); + this.wmErrorTextBox40.Name = "wmErrorTextBox40"; + this.wmErrorTextBox40.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox40.TabIndex = 75; + this.wmErrorTextBox40.Visible = false; + // + // wmErrorLabel40 + // + this.wmErrorLabel40.AutoSize = true; + this.wmErrorLabel40.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel40.Location = new System.Drawing.Point(589, 533); + this.wmErrorLabel40.Name = "wmErrorLabel40"; + this.wmErrorLabel40.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel40.TabIndex = 74; + this.wmErrorLabel40.Text = "Error [%]"; + this.wmErrorLabel40.Visible = false; + // + // wmErrorTextBox39 + // + this.wmErrorTextBox39.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox39.Location = new System.Drawing.Point(763, 494); + this.wmErrorTextBox39.Name = "wmErrorTextBox39"; + this.wmErrorTextBox39.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox39.TabIndex = 73; + this.wmErrorTextBox39.Visible = false; + // + // wmErrorLabel39 + // + this.wmErrorLabel39.AutoSize = true; + this.wmErrorLabel39.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel39.Location = new System.Drawing.Point(589, 499); + this.wmErrorLabel39.Name = "wmErrorLabel39"; + this.wmErrorLabel39.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel39.TabIndex = 72; + this.wmErrorLabel39.Text = "Error [%]"; + this.wmErrorLabel39.Visible = false; + // + // wmErrorTextBox38 + // + this.wmErrorTextBox38.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox38.Location = new System.Drawing.Point(763, 460); + this.wmErrorTextBox38.Name = "wmErrorTextBox38"; + this.wmErrorTextBox38.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox38.TabIndex = 71; + this.wmErrorTextBox38.Visible = false; + // + // wmErrorLabel38 + // + this.wmErrorLabel38.AutoSize = true; + this.wmErrorLabel38.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel38.Location = new System.Drawing.Point(589, 465); + this.wmErrorLabel38.Name = "wmErrorLabel38"; + this.wmErrorLabel38.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel38.TabIndex = 70; + this.wmErrorLabel38.Text = "Error [%]"; + this.wmErrorLabel38.Visible = false; + // + // wmErrorTextBox37 + // + this.wmErrorTextBox37.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox37.Location = new System.Drawing.Point(763, 426); + this.wmErrorTextBox37.Name = "wmErrorTextBox37"; + this.wmErrorTextBox37.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox37.TabIndex = 69; + this.wmErrorTextBox37.Visible = false; + // + // wmErrorLabel37 + // + this.wmErrorLabel37.AutoSize = true; + this.wmErrorLabel37.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel37.Location = new System.Drawing.Point(589, 431); + this.wmErrorLabel37.Name = "wmErrorLabel37"; + this.wmErrorLabel37.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel37.TabIndex = 68; + this.wmErrorLabel37.Text = "Error [%]"; + this.wmErrorLabel37.Visible = false; + // + // wmErrorTextBox48 + // + this.wmErrorTextBox48.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox48.Location = new System.Drawing.Point(763, 800); + this.wmErrorTextBox48.Name = "wmErrorTextBox48"; + this.wmErrorTextBox48.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox48.TabIndex = 91; + this.wmErrorTextBox48.Visible = false; + // + // wmErrorLabel48 + // + this.wmErrorLabel48.AutoSize = true; + this.wmErrorLabel48.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel48.Location = new System.Drawing.Point(589, 805); + this.wmErrorLabel48.Name = "wmErrorLabel48"; + this.wmErrorLabel48.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel48.TabIndex = 90; + this.wmErrorLabel48.Text = "Error [%]"; + this.wmErrorLabel48.Visible = false; + // + // wmErrorTextBox47 + // + this.wmErrorTextBox47.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox47.Location = new System.Drawing.Point(763, 766); + this.wmErrorTextBox47.Name = "wmErrorTextBox47"; + this.wmErrorTextBox47.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox47.TabIndex = 89; + this.wmErrorTextBox47.Visible = false; + // + // wmErrorLabel47 + // + this.wmErrorLabel47.AutoSize = true; + this.wmErrorLabel47.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel47.Location = new System.Drawing.Point(589, 771); + this.wmErrorLabel47.Name = "wmErrorLabel47"; + this.wmErrorLabel47.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel47.TabIndex = 88; + this.wmErrorLabel47.Text = "Error [%]"; + this.wmErrorLabel47.Visible = false; + // + // wmErrorTextBox46 + // + this.wmErrorTextBox46.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox46.Location = new System.Drawing.Point(763, 732); + this.wmErrorTextBox46.Name = "wmErrorTextBox46"; + this.wmErrorTextBox46.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox46.TabIndex = 87; + this.wmErrorTextBox46.Visible = false; + // + // wmErrorLabel46 + // + this.wmErrorLabel46.AutoSize = true; + this.wmErrorLabel46.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel46.Location = new System.Drawing.Point(589, 737); + this.wmErrorLabel46.Name = "wmErrorLabel46"; + this.wmErrorLabel46.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel46.TabIndex = 86; + this.wmErrorLabel46.Text = "Error [%]"; + this.wmErrorLabel46.Visible = false; + // + // wmErrorTextBox45 + // + this.wmErrorTextBox45.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox45.Location = new System.Drawing.Point(763, 698); + this.wmErrorTextBox45.Name = "wmErrorTextBox45"; + this.wmErrorTextBox45.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox45.TabIndex = 85; + this.wmErrorTextBox45.Visible = false; + // + // wmErrorLabel45 + // + this.wmErrorLabel45.AutoSize = true; + this.wmErrorLabel45.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel45.Location = new System.Drawing.Point(589, 703); + this.wmErrorLabel45.Name = "wmErrorLabel45"; + this.wmErrorLabel45.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel45.TabIndex = 84; + this.wmErrorLabel45.Text = "Error [%]"; + this.wmErrorLabel45.Visible = false; + // + // wmErrorTextBox44 + // + this.wmErrorTextBox44.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox44.Location = new System.Drawing.Point(763, 664); + this.wmErrorTextBox44.Name = "wmErrorTextBox44"; + this.wmErrorTextBox44.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox44.TabIndex = 83; + this.wmErrorTextBox44.Visible = false; + // + // wmErrorLabel44 + // + this.wmErrorLabel44.AutoSize = true; + this.wmErrorLabel44.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel44.Location = new System.Drawing.Point(589, 669); + this.wmErrorLabel44.Name = "wmErrorLabel44"; + this.wmErrorLabel44.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel44.TabIndex = 82; + this.wmErrorLabel44.Text = "Error [%]"; + this.wmErrorLabel44.Visible = false; + // + // wmErrorTextBox43 + // + this.wmErrorTextBox43.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorTextBox43.Location = new System.Drawing.Point(763, 630); + this.wmErrorTextBox43.Name = "wmErrorTextBox43"; + this.wmErrorTextBox43.Size = new System.Drawing.Size(137, 31); + this.wmErrorTextBox43.TabIndex = 81; + this.wmErrorTextBox43.Visible = false; + // + // wmErrorLabel43 + // + this.wmErrorLabel43.AutoSize = true; + this.wmErrorLabel43.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.wmErrorLabel43.Location = new System.Drawing.Point(589, 635); + this.wmErrorLabel43.Name = "wmErrorLabel43"; + this.wmErrorLabel43.Size = new System.Drawing.Size(103, 23); + this.wmErrorLabel43.TabIndex = 80; + this.wmErrorLabel43.Text = "Error [%]"; + this.wmErrorLabel43.Visible = false; + // + // WMErrorsForm48 + // + 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(1267, 841); + this.Controls.Add(this.wmErrorTextBox48); + this.Controls.Add(this.wmErrorLabel48); + this.Controls.Add(this.wmErrorTextBox47); + this.Controls.Add(this.wmErrorLabel47); + this.Controls.Add(this.wmErrorTextBox46); + this.Controls.Add(this.wmErrorLabel46); + this.Controls.Add(this.wmErrorTextBox45); + this.Controls.Add(this.wmErrorLabel45); + this.Controls.Add(this.wmErrorTextBox44); + this.Controls.Add(this.wmErrorLabel44); + this.Controls.Add(this.wmErrorTextBox43); + this.Controls.Add(this.wmErrorLabel43); + this.Controls.Add(this.wmErrorTextBox42); + this.Controls.Add(this.wmErrorLabel42); + this.Controls.Add(this.wmErrorTextBox41); + this.Controls.Add(this.wmErrorLabel41); + this.Controls.Add(this.wmErrorTextBox40); + this.Controls.Add(this.wmErrorLabel40); + this.Controls.Add(this.wmErrorTextBox39); + this.Controls.Add(this.wmErrorLabel39); + this.Controls.Add(this.wmErrorTextBox38); + this.Controls.Add(this.wmErrorLabel38); + this.Controls.Add(this.wmErrorTextBox37); + this.Controls.Add(this.wmErrorLabel37); + this.Controls.Add(this.wmErrorTextBox36); + this.Controls.Add(this.wmErrorLabel36); + this.Controls.Add(this.wmErrorTextBox35); + this.Controls.Add(this.wmErrorLabel35); + this.Controls.Add(this.wmErrorTextBox34); + this.Controls.Add(this.wmErrorLabel34); + this.Controls.Add(this.wmErrorTextBox33); + this.Controls.Add(this.wmErrorLabel33); + this.Controls.Add(this.wmErrorTextBox32); + this.Controls.Add(this.wmErrorLabel32); + this.Controls.Add(this.wmErrorTextBox31); + this.Controls.Add(this.wmErrorLabel31); + this.Controls.Add(this.wmErrorTextBox30); + this.Controls.Add(this.wmErrorLabel30); + this.Controls.Add(this.wmErrorTextBox29); + this.Controls.Add(this.wmErrorLabel29); + this.Controls.Add(this.wmErrorTextBox28); + this.Controls.Add(this.wmErrorLabel28); + this.Controls.Add(this.wmErrorTextBox27); + this.Controls.Add(this.wmErrorLabel27); + this.Controls.Add(this.wmErrorTextBox26); + this.Controls.Add(this.wmErrorLabel26); + this.Controls.Add(this.wmErrorTextBox25); + this.Controls.Add(this.wmErrorLabel25); + this.Controls.Add(this.wmErrorTextBox24); + this.Controls.Add(this.wmErrorLabel24); + this.Controls.Add(this.wmErrorTextBox23); + this.Controls.Add(this.wmErrorLabel23); + this.Controls.Add(this.wmErrorTextBox22); + this.Controls.Add(this.wmErrorLabel22); + this.Controls.Add(this.wmErrorTextBox21); + this.Controls.Add(this.wmErrorLabel21); + this.Controls.Add(this.wmErrorTextBox20); + this.Controls.Add(this.wmErrorLabel20); + this.Controls.Add(this.wmErrorTextBox19); + this.Controls.Add(this.wmErrorLabel19); + this.Controls.Add(this.wmErrorTextBox18); + this.Controls.Add(this.wmErrorLabel18); + this.Controls.Add(this.wmErrorTextBox17); + this.Controls.Add(this.wmErrorLabel17); + this.Controls.Add(this.wmErrorTextBox16); + this.Controls.Add(this.wmErrorLabel16); + this.Controls.Add(this.wmErrorTextBox15); + this.Controls.Add(this.wmErrorLabel15); + this.Controls.Add(this.wmErrorTextBox14); + this.Controls.Add(this.wmErrorLabel14); + this.Controls.Add(this.wmErrorTextBox13); + this.Controls.Add(this.wmErrorLabel13); + this.Controls.Add(this.wmErrorTextBox12); + this.Controls.Add(this.wmErrorLabel12); + this.Controls.Add(this.wmErrorTextBox11); + this.Controls.Add(this.wmErrorLabel11); + this.Controls.Add(this.wmErrorTextBox10); + this.Controls.Add(this.wmErrorLabel10); + this.Controls.Add(this.wmErrorTextBox9); + this.Controls.Add(this.wmErrorLabel9); + this.Controls.Add(this.wmErrorTextBox8); + this.Controls.Add(this.wmErrorLabel8); + this.Controls.Add(this.wmErrorTextBox7); + this.Controls.Add(this.wmErrorLabel7); + this.Controls.Add(this.wmErrorTextBox6); + this.Controls.Add(this.wmErrorLabel6); + this.Controls.Add(this.wmErrorTextBox5); + this.Controls.Add(this.wmErrorLabel5); + this.Controls.Add(this.wmErrorTextBox4); + this.Controls.Add(this.wmErrorLabel4); + this.Controls.Add(this.wmErrorTextBox3); + this.Controls.Add(this.wmErrorLabel3); + this.Controls.Add(this.wmErrorTextBox2); + this.Controls.Add(this.wmErrorLabel2); + this.Controls.Add(this.wmErrorTextBox1); + this.Controls.Add(this.wmErrorLabel1); + this.Controls.Add(this.okButton); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; + this.Name = "WMErrorsForm48"; + this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; + this.Text = "Water Meter Adjustment"; + this.TopMost = true; + this.Load += new System.EventHandler(this.WMErrorsForm48_Load); + this.Paint += new System.Windows.Forms.PaintEventHandler(this.WMErrorsForm_Paint); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox wmErrorTextBox2; + private System.Windows.Forms.Label wmErrorLabel2; + private System.Windows.Forms.Label wmErrorLabel1; + private System.Windows.Forms.Button okButton; + private System.Windows.Forms.TextBox wmErrorTextBox3; + private System.Windows.Forms.Label wmErrorLabel3; + private System.Windows.Forms.TextBox wmErrorTextBox4; + private System.Windows.Forms.Label wmErrorLabel4; + private System.Windows.Forms.TextBox wmErrorTextBox5; + private System.Windows.Forms.Label wmErrorLabel5; + private System.Windows.Forms.TextBox wmErrorTextBox6; + private System.Windows.Forms.Label wmErrorLabel6; + private System.Windows.Forms.TextBox wmErrorTextBox1; + private System.Windows.Forms.TextBox wmErrorTextBox7; + private System.Windows.Forms.Label wmErrorLabel7; + private System.Windows.Forms.TextBox wmErrorTextBox8; + private System.Windows.Forms.Label wmErrorLabel8; + private System.Windows.Forms.TextBox wmErrorTextBox9; + private System.Windows.Forms.Label wmErrorLabel9; + private System.Windows.Forms.TextBox wmErrorTextBox10; + private System.Windows.Forms.Label wmErrorLabel10; + private System.Windows.Forms.TextBox wmErrorTextBox12; + private System.Windows.Forms.Label wmErrorLabel12; + private System.Windows.Forms.TextBox wmErrorTextBox11; + private System.Windows.Forms.Label wmErrorLabel11; + private System.Windows.Forms.TextBox wmErrorTextBox24; + private System.Windows.Forms.Label wmErrorLabel24; + private System.Windows.Forms.TextBox wmErrorTextBox23; + private System.Windows.Forms.Label wmErrorLabel23; + private System.Windows.Forms.TextBox wmErrorTextBox22; + private System.Windows.Forms.Label wmErrorLabel22; + private System.Windows.Forms.TextBox wmErrorTextBox21; + private System.Windows.Forms.Label wmErrorLabel21; + private System.Windows.Forms.TextBox wmErrorTextBox20; + private System.Windows.Forms.Label wmErrorLabel20; + private System.Windows.Forms.TextBox wmErrorTextBox19; + private System.Windows.Forms.Label wmErrorLabel19; + private System.Windows.Forms.TextBox wmErrorTextBox18; + private System.Windows.Forms.Label wmErrorLabel18; + private System.Windows.Forms.TextBox wmErrorTextBox17; + private System.Windows.Forms.Label wmErrorLabel17; + private System.Windows.Forms.TextBox wmErrorTextBox16; + private System.Windows.Forms.Label wmErrorLabel16; + private System.Windows.Forms.TextBox wmErrorTextBox15; + private System.Windows.Forms.Label wmErrorLabel15; + private System.Windows.Forms.TextBox wmErrorTextBox14; + private System.Windows.Forms.Label wmErrorLabel14; + private System.Windows.Forms.TextBox wmErrorTextBox13; + private System.Windows.Forms.Label wmErrorLabel13; + private System.Windows.Forms.TextBox wmErrorTextBox25; + private System.Windows.Forms.Label wmErrorLabel25; + private System.Windows.Forms.TextBox wmErrorTextBox26; + private System.Windows.Forms.Label wmErrorLabel26; + private System.Windows.Forms.TextBox wmErrorTextBox27; + private System.Windows.Forms.Label wmErrorLabel27; + private System.Windows.Forms.TextBox wmErrorTextBox28; + private System.Windows.Forms.Label wmErrorLabel28; + private System.Windows.Forms.TextBox wmErrorTextBox29; + private System.Windows.Forms.Label wmErrorLabel29; + private System.Windows.Forms.TextBox wmErrorTextBox30; + private System.Windows.Forms.Label wmErrorLabel30; + private System.Windows.Forms.TextBox wmErrorTextBox36; + private System.Windows.Forms.Label wmErrorLabel36; + private System.Windows.Forms.TextBox wmErrorTextBox35; + private System.Windows.Forms.Label wmErrorLabel35; + private System.Windows.Forms.TextBox wmErrorTextBox34; + private System.Windows.Forms.Label wmErrorLabel34; + private System.Windows.Forms.TextBox wmErrorTextBox33; + private System.Windows.Forms.Label wmErrorLabel33; + private System.Windows.Forms.TextBox wmErrorTextBox32; + private System.Windows.Forms.Label wmErrorLabel32; + private System.Windows.Forms.TextBox wmErrorTextBox31; + private System.Windows.Forms.Label wmErrorLabel31; + private System.Windows.Forms.TextBox wmErrorTextBox42; + private System.Windows.Forms.Label wmErrorLabel42; + private System.Windows.Forms.TextBox wmErrorTextBox41; + private System.Windows.Forms.Label wmErrorLabel41; + private System.Windows.Forms.TextBox wmErrorTextBox40; + private System.Windows.Forms.Label wmErrorLabel40; + private System.Windows.Forms.TextBox wmErrorTextBox39; + private System.Windows.Forms.Label wmErrorLabel39; + private System.Windows.Forms.TextBox wmErrorTextBox38; + private System.Windows.Forms.Label wmErrorLabel38; + private System.Windows.Forms.TextBox wmErrorTextBox37; + private System.Windows.Forms.Label wmErrorLabel37; + private System.Windows.Forms.TextBox wmErrorTextBox48; + private System.Windows.Forms.Label wmErrorLabel48; + private System.Windows.Forms.TextBox wmErrorTextBox47; + private System.Windows.Forms.Label wmErrorLabel47; + private System.Windows.Forms.TextBox wmErrorTextBox46; + private System.Windows.Forms.Label wmErrorLabel46; + private System.Windows.Forms.TextBox wmErrorTextBox45; + private System.Windows.Forms.Label wmErrorLabel45; + private System.Windows.Forms.TextBox wmErrorTextBox44; + private System.Windows.Forms.Label wmErrorLabel44; + private System.Windows.Forms.TextBox wmErrorTextBox43; + private System.Windows.Forms.Label wmErrorLabel43; + + } +} \ No newline at end of file diff --git a/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.resx b/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.resx new file mode 100644 index 000000000..1af7de150 --- /dev/null +++ b/TBF/BenchControl/TestMethods/Adjustment/WMErrorsForm48.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/TBF/TBF.csproj b/TBF/TBF.csproj index 59eaed0ba..65142a17a 100644 --- a/TBF/TBF.csproj +++ b/TBF/TBF.csproj @@ -1110,6 +1110,12 @@ WMErrorsForm24.cs + + Form + + + WMErrorsForm48.cs + @@ -2906,6 +2912,9 @@ WMErrorsForm24.cs + + WMErrorsForm48.cs + TestMethodCfgCtrl.cs