From bf376b4ff08399eba92cd48b67d63284f9c4163d Mon Sep 17 00:00:00 2001 From: Milan Hanajik Date: Fri, 14 Aug 2015 12:00:18 +0200 Subject: [PATCH] iPerlST configuration changes, etc., version 1.5.76 --- .../BenchControl/Elde/Common.cs | 4 +- .../WaterMeters/iPerl/CalibrationStruct.cs | 1 + .../WaterMeters/iPerl/ConfigStruct.cs | 1 + .../BenchControl/WaterMeters/iPerl/Enums.cs | 1 + .../iPerl/OptoReceivedEventArgs.cs | 1 + .../WaterMeters/iPerl/ProcParams.cs | 1 + .../WaterMeters/iPerl/StatusStruct.cs | 1 + .../WaterMeters/iPerl/WaterMeter.cs | 1 + .../WaterMeters/iPerl/WaterMeterCfg.cs | 1 + .../WaterMeters/iPerl/WaterMeterCfgCtrl.cs | 1 + .../iPerl/WaterMeterCfgCtrl.designer.cs | 1 + .../WaterMeters/iPerl/WaterMeterFactory.cs | 1 + TestBenchFramework/MainWnd.Designer.cs | 5 +- .../Screens/ProcessTabPageCtrl48.Designer.cs | 3405 +++++++++++++++++ .../Screens/ProcessTabPageCtrl48.cs | 577 +++ .../Screens/ProcessTabPageCtrl48.resx | 333 ++ TestBenchFramework/TBF.csproj | 9 + 17 files changed, 4341 insertions(+), 3 deletions(-) create mode 100644 TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs create mode 100644 TestBenchFramework/Screens/ProcessTabPageCtrl48.cs create mode 100644 TestBenchFramework/Screens/ProcessTabPageCtrl48.resx diff --git a/TestBenchFramework/BenchControl/Elde/Common.cs b/TestBenchFramework/BenchControl/Elde/Common.cs index 0dfd20e11..ddd74f78a 100644 --- a/TestBenchFramework/BenchControl/Elde/Common.cs +++ b/TestBenchFramework/BenchControl/Elde/Common.cs @@ -16,7 +16,7 @@ namespace TBF.BenchControl.Elde ResetShapesOfPulses = 8, } -#if FUZHOU300 || PT200IL || TORINO50 || BADGER_MALA_TRAT +#if FUZHOU300 || PT200IL || TORINO50 || BADGER_MALA_TRAT || IPERLST public enum StatusP : ulong { RefFlowMeterMask = 0x7, @@ -41,7 +41,7 @@ namespace TBF.BenchControl.Elde ErrorPressMeter3 = 0x4000000000000, ErrorPressMeter4 = 0x8000000000000, } -#else // DN100 || MUNICH || FUZHOU150 || TORUN_PT50_2015 || CEVAK_PT40_272 || IPERLST +#else // DN100 || MUNICH || FUZHOU150 || TORUN_PT50_2015 || CEVAK_PT40_272 public enum StatusP : ulong { RefFlowMeterMask = 0x7, diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/CalibrationStruct.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/CalibrationStruct.cs index ec7da66ee..a69c19d56 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/CalibrationStruct.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/CalibrationStruct.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/ConfigStruct.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/ConfigStruct.cs index b0339e43f..efcc3a278 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/ConfigStruct.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/ConfigStruct.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs index 1c9517207..88905fe3c 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/Enums.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; using System.Collections.Generic; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/OptoReceivedEventArgs.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/OptoReceivedEventArgs.cs index 9122d300b..f4c330443 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/OptoReceivedEventArgs.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/OptoReceivedEventArgs.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; using System.Collections.Generic; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/ProcParams.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/ProcParams.cs index e8016a2b9..e1ec74288 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/ProcParams.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/ProcParams.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; using System.IO; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/StatusStruct.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/StatusStruct.cs index e2878705f..864b1b1ec 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/StatusStruct.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/StatusStruct.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs index bc3b4859d..09606c281 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeter.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; using System.Collections.Generic; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfg.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfg.cs index 6e03c3c52..261ee1822 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfg.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfg.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; using System.Collections.Generic; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.cs index 635c9d1ee..0d52d74c5 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using System; using System.Windows.Forms; diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.designer.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.designer.cs index b9d044006..e6947b62a 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.designer.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterCfgCtrl.designer.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2013-2015 Sensus Metering Systems +/// Author: Milan Hanajík /// namespace TBF.BenchControl.WaterMeters.iPerl { diff --git a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterFactory.cs b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterFactory.cs index e54c1c1f6..568cbca09 100644 --- a/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterFactory.cs +++ b/TestBenchFramework/BenchControl/WaterMeters/iPerl/WaterMeterFactory.cs @@ -1,5 +1,6 @@ /// /// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík /// using TBF.BenchControl.Generic; diff --git a/TestBenchFramework/MainWnd.Designer.cs b/TestBenchFramework/MainWnd.Designer.cs index 228091356..0b455855d 100644 --- a/TestBenchFramework/MainWnd.Designer.cs +++ b/TestBenchFramework/MainWnd.Designer.cs @@ -594,9 +594,12 @@ namespace TBF #elif BADGER_MALA_TRAT private ControlComponent_Torino2015.UserControl1 ctrlBrdComponent; private TBF.Screens.ProcessTabPageCtrl6 processTabPageCtrl; -#elif TORUN_PT50_2015 || CEVAK_PT40_272 || IPERLST +#elif TORUN_PT50_2015 || CEVAK_PT40_272 private ControlComponent_Torino2015.UserControl1 ctrlBrdComponent; private TBF.Screens.ProcessTabPageCtrl24 processTabPageCtrl; +#elif IPERLST + private ControlComponent_Torino2015.UserControl1 ctrlBrdComponent; + private TBF.Screens.ProcessTabPageCtrl48 processTabPageCtrl; #endif private System.Windows.Forms.ToolStripMenuItem benchTSMenuItem; diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs b/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs new file mode 100644 index 000000000..19313c842 --- /dev/null +++ b/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs @@ -0,0 +1,3405 @@ +/// +/// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík +/// +namespace TBF.Screens +{ + partial class ProcessTabPageCtrl48 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProcessTabPageCtrl48)); + this.sensor1Label = new System.Windows.Forms.Label(); + this.pulses1Label = new System.Windows.Forms.Label(); + this.refPulses1Label = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.volume1Label = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.error1Label = new System.Windows.Forms.Label(); + this.passed1Label = new System.Windows.Forms.Label(); + this.label35 = new System.Windows.Forms.Label(); + this.passed2Label = new System.Windows.Forms.Label(); + this.error2Label = new System.Windows.Forms.Label(); + this.volume2Label = new System.Windows.Forms.Label(); + this.refPulses2Label = new System.Windows.Forms.Label(); + this.pulses2Label = new System.Windows.Forms.Label(); + this.sensor2Label = new System.Windows.Forms.Label(); + this.passed3Label = new System.Windows.Forms.Label(); + this.error3Label = new System.Windows.Forms.Label(); + this.volume3Label = new System.Windows.Forms.Label(); + this.refPulses3Label = new System.Windows.Forms.Label(); + this.pulses3Label = new System.Windows.Forms.Label(); + this.sensor3Label = new System.Windows.Forms.Label(); + this.label13 = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.tInLabel = new System.Windows.Forms.Label(); + this.prInLabel = new System.Windows.Forms.Label(); + this.prOutLabel = new System.Windows.Forms.Label(); + this.tOutLabel = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.label18 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.tInCmpntLabel = new System.Windows.Forms.Label(); + this.tOutCmpntLabel = new System.Windows.Forms.Label(); + this.prOutCmpntLabel = new System.Windows.Forms.Label(); + this.prInCmpntLabel = new System.Windows.Forms.Label(); + this.refFlowLabel = new System.Windows.Forms.Label(); + this.label16 = new System.Windows.Forms.Label(); + this.refFreqLabel = new System.Windows.Forms.Label(); + this.label19 = new System.Windows.Forms.Label(); + this.refPulsesLabel = new System.Windows.Forms.Label(); + this.refFlowCmpntLabel = new System.Windows.Forms.Label(); + this.regValveCmpntLabel = new System.Windows.Forms.Label(); + this.regValvePosLabel = new System.Windows.Forms.Label(); + this.label21 = new System.Windows.Forms.Label(); + this.tDivCmpntLabel = new System.Windows.Forms.Label(); + this.tDivLabel = new System.Windows.Forms.Label(); + this.label24 = new System.Windows.Forms.Label(); + this.scaleCmpntLabel = new System.Windows.Forms.Label(); + this.label22 = new System.Windows.Forms.Label(); + this.massLabel = new System.Windows.Forms.Label(); + this.label23 = new System.Windows.Forms.Label(); + this.massDiffLabel = new System.Windows.Forms.Label(); + this.label25 = new System.Windows.Forms.Label(); + this.refVolumeLabel = new System.Windows.Forms.Label(); + this.label26 = new System.Windows.Forms.Label(); + this.volumeCtvLabel = new System.Windows.Forms.Label(); + this.label27 = new System.Windows.Forms.Label(); + this.refErrorLabel = new System.Windows.Forms.Label(); + this.label28 = new System.Windows.Forms.Label(); + this.label29 = new System.Windows.Forms.Label(); + this.label20 = new System.Windows.Forms.Label(); + this.label30 = new System.Windows.Forms.Label(); + this.targetFlowLowLabel = new System.Windows.Forms.Label(); + this.targetFlowHighLabel = new System.Windows.Forms.Label(); + this.targetVolumeLabel = new System.Windows.Forms.Label(); + this.label31 = new System.Windows.Forms.Label(); + this.targetRefCountLabel = new System.Windows.Forms.Label(); + this.estmtdTimeLabel = new System.Windows.Forms.Label(); + this.label32 = new System.Windows.Forms.Label(); + this.label33 = new System.Windows.Forms.Label(); + this.label34 = new System.Windows.Forms.Label(); + this.airTempLabel = new System.Windows.Forms.Label(); + this.airPressLabel = new System.Windows.Forms.Label(); + this.airHumiLabel = new System.Windows.Forms.Label(); + this.reservoirPictureBox = new System.Windows.Forms.PictureBox(); + this.pumpPictureBox = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox1 = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox2 = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox3 = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox4 = new System.Windows.Forms.PictureBox(); + this.passed4Label = new System.Windows.Forms.Label(); + this.error4Label = new System.Windows.Forms.Label(); + this.volume4Label = new System.Windows.Forms.Label(); + this.refPulses4Label = new System.Windows.Forms.Label(); + this.pulses4Label = new System.Windows.Forms.Label(); + this.sensor4Label = new System.Windows.Forms.Label(); + this.watermeterPictureBox5 = new System.Windows.Forms.PictureBox(); + this.passed5Label = new System.Windows.Forms.Label(); + this.error5Label = new System.Windows.Forms.Label(); + this.volume5Label = new System.Windows.Forms.Label(); + this.refPulses5Label = new System.Windows.Forms.Label(); + this.pulses5Label = new System.Windows.Forms.Label(); + this.sensor5Label = new System.Windows.Forms.Label(); + this.watermeterPictureBox6 = new System.Windows.Forms.PictureBox(); + this.passed6Label = new System.Windows.Forms.Label(); + this.error6Label = new System.Windows.Forms.Label(); + this.volume6Label = new System.Windows.Forms.Label(); + this.refPulses6Label = new System.Windows.Forms.Label(); + this.pulses6Label = new System.Windows.Forms.Label(); + this.sensor6Label = new System.Windows.Forms.Label(); + this.flowMeterPictureBox = new System.Windows.Forms.PictureBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox1z = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox2z = new System.Windows.Forms.PictureBox(); + this.watermeterPictureBox3z = new System.Windows.Forms.PictureBox(); + this.groupBox1z = new System.Windows.Forms.GroupBox(); + this.passed1zLabel = new System.Windows.Forms.Label(); + this.error1zLabel = new System.Windows.Forms.Label(); + this.label56 = new System.Windows.Forms.Label(); + this.volume1zLabel = new System.Windows.Forms.Label(); + this.label58 = new System.Windows.Forms.Label(); + this.groupBox2z = new System.Windows.Forms.GroupBox(); + this.passed2zLabel = new System.Windows.Forms.Label(); + this.error2zLabel = new System.Windows.Forms.Label(); + this.label52 = new System.Windows.Forms.Label(); + this.volume2zLabel = new System.Windows.Forms.Label(); + this.label59 = new System.Windows.Forms.Label(); + this.groupBox3z = new System.Windows.Forms.GroupBox(); + this.passed3zLabel = new System.Windows.Forms.Label(); + this.error3zLabel = new System.Windows.Forms.Label(); + this.label57 = new System.Windows.Forms.Label(); + this.volume3zLabel = new System.Windows.Forms.Label(); + this.label61 = new System.Windows.Forms.Label(); + this.pumpPctTextBox = new System.Windows.Forms.TextBox(); + this.meter1Label = new System.Windows.Forms.Label(); + this.meter2Label = new System.Windows.Forms.Label(); + this.meter3Label = new System.Windows.Forms.Label(); + this.meter4Label = new System.Windows.Forms.Label(); + this.meter5Label = new System.Windows.Forms.Label(); + this.meter6Label = new System.Windows.Forms.Label(); + this.meter12Label = new System.Windows.Forms.Label(); + this.meter11Label = new System.Windows.Forms.Label(); + this.meter10Label = new System.Windows.Forms.Label(); + this.meter9Label = new System.Windows.Forms.Label(); + this.meter8Label = new System.Windows.Forms.Label(); + this.meter7Label = new System.Windows.Forms.Label(); + this.passed12Label = new System.Windows.Forms.Label(); + this.passed11Label = new System.Windows.Forms.Label(); + this.error12Label = new System.Windows.Forms.Label(); + this.passed10Label = new System.Windows.Forms.Label(); + this.error11Label = new System.Windows.Forms.Label(); + this.volume12Label = new System.Windows.Forms.Label(); + this.passed9Label = new System.Windows.Forms.Label(); + this.error10Label = new System.Windows.Forms.Label(); + this.volume11Label = new System.Windows.Forms.Label(); + this.passed8Label = new System.Windows.Forms.Label(); + this.refPulses12Label = new System.Windows.Forms.Label(); + this.error9Label = new System.Windows.Forms.Label(); + this.pulses12Label = new System.Windows.Forms.Label(); + this.sensor12Label = new System.Windows.Forms.Label(); + this.volume10Label = new System.Windows.Forms.Label(); + this.passed7Label = new System.Windows.Forms.Label(); + this.refPulses11Label = new System.Windows.Forms.Label(); + this.pulses11Label = new System.Windows.Forms.Label(); + this.error8Label = new System.Windows.Forms.Label(); + this.sensor11Label = new System.Windows.Forms.Label(); + this.volume9Label = new System.Windows.Forms.Label(); + this.refPulses10Label = new System.Windows.Forms.Label(); + this.pulses10Label = new System.Windows.Forms.Label(); + this.volume8Label = new System.Windows.Forms.Label(); + this.sensor10Label = new System.Windows.Forms.Label(); + this.error7Label = new System.Windows.Forms.Label(); + this.refPulses9Label = new System.Windows.Forms.Label(); + this.volume7Label = new System.Windows.Forms.Label(); + this.pulses9Label = new System.Windows.Forms.Label(); + this.sensor9Label = new System.Windows.Forms.Label(); + this.refPulses7Label = new System.Windows.Forms.Label(); + this.refPulses8Label = new System.Windows.Forms.Label(); + this.pulses8Label = new System.Windows.Forms.Label(); + this.pulses7Label = new System.Windows.Forms.Label(); + this.sensor8Label = new System.Windows.Forms.Label(); + this.sensor7Label = new System.Windows.Forms.Label(); + this.meter24Label = new System.Windows.Forms.Label(); + this.meter23Label = new System.Windows.Forms.Label(); + this.meter22Label = new System.Windows.Forms.Label(); + this.meter21Label = new System.Windows.Forms.Label(); + this.meter20Label = new System.Windows.Forms.Label(); + this.meter19Label = new System.Windows.Forms.Label(); + this.passed24Label = new System.Windows.Forms.Label(); + this.passed23Label = new System.Windows.Forms.Label(); + this.error24Label = new System.Windows.Forms.Label(); + this.passed22Label = new System.Windows.Forms.Label(); + this.error23Label = new System.Windows.Forms.Label(); + this.volume24Label = new System.Windows.Forms.Label(); + this.passed21Label = new System.Windows.Forms.Label(); + this.error22Label = new System.Windows.Forms.Label(); + this.volume23Label = new System.Windows.Forms.Label(); + this.passed20Label = new System.Windows.Forms.Label(); + this.refPulses24Label = new System.Windows.Forms.Label(); + this.error21Label = new System.Windows.Forms.Label(); + this.pulses24Label = new System.Windows.Forms.Label(); + this.sensor24Label = new System.Windows.Forms.Label(); + this.volume22Label = new System.Windows.Forms.Label(); + this.passed19Label = new System.Windows.Forms.Label(); + this.refPulses23Label = new System.Windows.Forms.Label(); + this.pulses23Label = new System.Windows.Forms.Label(); + this.error20Label = new System.Windows.Forms.Label(); + this.sensor23Label = new System.Windows.Forms.Label(); + this.volume21Label = new System.Windows.Forms.Label(); + this.refPulses22Label = new System.Windows.Forms.Label(); + this.pulses22Label = new System.Windows.Forms.Label(); + this.volume20Label = new System.Windows.Forms.Label(); + this.sensor22Label = new System.Windows.Forms.Label(); + this.error19Label = new System.Windows.Forms.Label(); + this.refPulses21Label = new System.Windows.Forms.Label(); + this.volume19Label = new System.Windows.Forms.Label(); + this.pulses21Label = new System.Windows.Forms.Label(); + this.sensor21Label = new System.Windows.Forms.Label(); + this.refPulses19Label = new System.Windows.Forms.Label(); + this.refPulses20Label = new System.Windows.Forms.Label(); + this.pulses20Label = new System.Windows.Forms.Label(); + this.pulses19Label = new System.Windows.Forms.Label(); + this.sensor20Label = new System.Windows.Forms.Label(); + this.sensor19Label = new System.Windows.Forms.Label(); + this.meter18Label = new System.Windows.Forms.Label(); + this.meter17Label = new System.Windows.Forms.Label(); + this.meter16Label = new System.Windows.Forms.Label(); + this.meter15Label = new System.Windows.Forms.Label(); + this.meter14Label = new System.Windows.Forms.Label(); + this.meter13Label = new System.Windows.Forms.Label(); + this.passed18Label = new System.Windows.Forms.Label(); + this.passed17Label = new System.Windows.Forms.Label(); + this.error18Label = new System.Windows.Forms.Label(); + this.passed16Label = new System.Windows.Forms.Label(); + this.error17Label = new System.Windows.Forms.Label(); + this.volume18Label = new System.Windows.Forms.Label(); + this.passed15Label = new System.Windows.Forms.Label(); + this.error16Label = new System.Windows.Forms.Label(); + this.volume17Label = new System.Windows.Forms.Label(); + this.passed14Label = new System.Windows.Forms.Label(); + this.refPulses18Label = new System.Windows.Forms.Label(); + this.error15Label = new System.Windows.Forms.Label(); + this.pulses18Label = new System.Windows.Forms.Label(); + this.sensor18Label = new System.Windows.Forms.Label(); + this.volume16Label = new System.Windows.Forms.Label(); + this.passed13Label = new System.Windows.Forms.Label(); + this.refPulses17Label = new System.Windows.Forms.Label(); + this.pulses17Label = new System.Windows.Forms.Label(); + this.error14Label = new System.Windows.Forms.Label(); + this.sensor17Label = new System.Windows.Forms.Label(); + this.volume15Label = new System.Windows.Forms.Label(); + this.refPulses16Label = new System.Windows.Forms.Label(); + this.label104 = new System.Windows.Forms.Label(); + this.pulses16Label = new System.Windows.Forms.Label(); + this.volume14Label = new System.Windows.Forms.Label(); + this.sensor16Label = new System.Windows.Forms.Label(); + this.error13Label = new System.Windows.Forms.Label(); + this.refPulses15Label = new System.Windows.Forms.Label(); + this.volume13Label = new System.Windows.Forms.Label(); + this.pulses15Label = new System.Windows.Forms.Label(); + this.sensor15Label = new System.Windows.Forms.Label(); + this.refPulses13Label = new System.Windows.Forms.Label(); + this.refPulses14Label = new System.Windows.Forms.Label(); + this.pulses14Label = new System.Windows.Forms.Label(); + this.pulses13Label = new System.Windows.Forms.Label(); + this.sensor14Label = new System.Windows.Forms.Label(); + this.sensor13Label = new System.Windows.Forms.Label(); + this.label119 = new System.Windows.Forms.Label(); + this.label120 = new System.Windows.Forms.Label(); + this.label121 = new System.Windows.Forms.Label(); + this.label122 = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.reservoirPictureBox)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pumpPictureBox)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox3)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.flowMeterPictureBox)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox1z)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox2z)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox3z)).BeginInit(); + this.groupBox1z.SuspendLayout(); + this.groupBox2z.SuspendLayout(); + this.groupBox3z.SuspendLayout(); + this.SuspendLayout(); + // + // sensor1Label + // + this.sensor1Label.AutoSize = true; + this.sensor1Label.Location = new System.Drawing.Point(64, 542); + this.sensor1Label.Name = "sensor1Label"; + this.sensor1Label.Size = new System.Drawing.Size(44, 13); + this.sensor1Label.TabIndex = 0; + this.sensor1Label.Text = "sensor1"; + this.sensor1Label.Visible = false; + // + // pulses1Label + // + this.pulses1Label.AutoSize = true; + this.pulses1Label.Location = new System.Drawing.Point(64, 560); + this.pulses1Label.Name = "pulses1Label"; + this.pulses1Label.Size = new System.Drawing.Size(43, 13); + this.pulses1Label.TabIndex = 1; + this.pulses1Label.Text = "pulses1"; + this.pulses1Label.Visible = false; + // + // refPulses1Label + // + this.refPulses1Label.AutoSize = true; + this.refPulses1Label.Location = new System.Drawing.Point(64, 579); + this.refPulses1Label.Name = "refPulses1Label"; + this.refPulses1Label.Size = new System.Drawing.Size(56, 13); + this.refPulses1Label.TabIndex = 2; + this.refPulses1Label.Text = "refPulses1"; + this.refPulses1Label.Visible = false; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(23, 560); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(38, 13); + this.label1.TabIndex = 3; + this.label1.Text = "Count:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(1, 579); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(60, 13); + this.label2.TabIndex = 4; + this.label2.Text = "Ref. count:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(16, 597); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(45, 13); + this.label3.TabIndex = 5; + this.label3.Text = "Volume:"; + // + // volume1Label + // + this.volume1Label.AutoSize = true; + this.volume1Label.Location = new System.Drawing.Point(64, 597); + this.volume1Label.Name = "volume1Label"; + this.volume1Label.Size = new System.Drawing.Size(47, 13); + this.volume1Label.TabIndex = 6; + this.volume1Label.Text = "volume1"; + this.volume1Label.Visible = false; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(12, 616); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(49, 13); + this.label4.TabIndex = 7; + this.label4.Text = "Error [%]:"; + // + // error1Label + // + this.error1Label.AutoSize = true; + this.error1Label.Location = new System.Drawing.Point(64, 616); + this.error1Label.Name = "error1Label"; + this.error1Label.Size = new System.Drawing.Size(34, 13); + this.error1Label.TabIndex = 8; + this.error1Label.Text = "error1"; + this.error1Label.Visible = false; + // + // passed1Label + // + this.passed1Label.AutoSize = true; + this.passed1Label.Location = new System.Drawing.Point(64, 634); + this.passed1Label.Name = "passed1Label"; + this.passed1Label.Size = new System.Drawing.Size(47, 13); + this.passed1Label.TabIndex = 9; + this.passed1Label.Text = "passed1"; + this.passed1Label.Visible = false; + // + // label35 + // + this.label35.AutoSize = true; + this.label35.Location = new System.Drawing.Point(18, 542); + this.label35.Name = "label35"; + this.label35.Size = new System.Drawing.Size(43, 13); + this.label35.TabIndex = 10; + this.label35.Text = "Sensor:"; + // + // passed2Label + // + this.passed2Label.AutoSize = true; + this.passed2Label.Location = new System.Drawing.Point(134, 634); + this.passed2Label.Name = "passed2Label"; + this.passed2Label.Size = new System.Drawing.Size(47, 13); + this.passed2Label.TabIndex = 9; + this.passed2Label.Text = "passed2"; + this.passed2Label.Visible = false; + // + // error2Label + // + this.error2Label.AutoSize = true; + this.error2Label.Location = new System.Drawing.Point(134, 616); + this.error2Label.Name = "error2Label"; + this.error2Label.Size = new System.Drawing.Size(34, 13); + this.error2Label.TabIndex = 8; + this.error2Label.Text = "error2"; + this.error2Label.Visible = false; + // + // volume2Label + // + this.volume2Label.AutoSize = true; + this.volume2Label.Location = new System.Drawing.Point(134, 597); + this.volume2Label.Name = "volume2Label"; + this.volume2Label.Size = new System.Drawing.Size(47, 13); + this.volume2Label.TabIndex = 6; + this.volume2Label.Text = "volume2"; + this.volume2Label.Visible = false; + // + // refPulses2Label + // + this.refPulses2Label.AutoSize = true; + this.refPulses2Label.Location = new System.Drawing.Point(134, 579); + this.refPulses2Label.Name = "refPulses2Label"; + this.refPulses2Label.Size = new System.Drawing.Size(56, 13); + this.refPulses2Label.TabIndex = 2; + this.refPulses2Label.Text = "refPulses2"; + this.refPulses2Label.Visible = false; + // + // pulses2Label + // + this.pulses2Label.AutoSize = true; + this.pulses2Label.Location = new System.Drawing.Point(134, 560); + this.pulses2Label.Name = "pulses2Label"; + this.pulses2Label.Size = new System.Drawing.Size(43, 13); + this.pulses2Label.TabIndex = 1; + this.pulses2Label.Text = "pulses2"; + this.pulses2Label.Visible = false; + // + // sensor2Label + // + this.sensor2Label.AutoSize = true; + this.sensor2Label.Location = new System.Drawing.Point(134, 542); + this.sensor2Label.Name = "sensor2Label"; + this.sensor2Label.Size = new System.Drawing.Size(44, 13); + this.sensor2Label.TabIndex = 0; + this.sensor2Label.Text = "sensor2"; + this.sensor2Label.Visible = false; + // + // passed3Label + // + this.passed3Label.AutoSize = true; + this.passed3Label.Location = new System.Drawing.Point(204, 634); + this.passed3Label.Name = "passed3Label"; + this.passed3Label.Size = new System.Drawing.Size(47, 13); + this.passed3Label.TabIndex = 9; + this.passed3Label.Text = "passed3"; + this.passed3Label.Visible = false; + // + // error3Label + // + this.error3Label.AutoSize = true; + this.error3Label.Location = new System.Drawing.Point(204, 616); + this.error3Label.Name = "error3Label"; + this.error3Label.Size = new System.Drawing.Size(34, 13); + this.error3Label.TabIndex = 8; + this.error3Label.Text = "error3"; + this.error3Label.Visible = false; + // + // volume3Label + // + this.volume3Label.AutoSize = true; + this.volume3Label.Location = new System.Drawing.Point(204, 597); + this.volume3Label.Name = "volume3Label"; + this.volume3Label.Size = new System.Drawing.Size(47, 13); + this.volume3Label.TabIndex = 6; + this.volume3Label.Text = "volume3"; + this.volume3Label.Visible = false; + // + // refPulses3Label + // + this.refPulses3Label.AutoSize = true; + this.refPulses3Label.Location = new System.Drawing.Point(204, 579); + this.refPulses3Label.Name = "refPulses3Label"; + this.refPulses3Label.Size = new System.Drawing.Size(56, 13); + this.refPulses3Label.TabIndex = 2; + this.refPulses3Label.Text = "refPulses3"; + this.refPulses3Label.Visible = false; + // + // pulses3Label + // + this.pulses3Label.AutoSize = true; + this.pulses3Label.Location = new System.Drawing.Point(204, 560); + this.pulses3Label.Name = "pulses3Label"; + this.pulses3Label.Size = new System.Drawing.Size(43, 13); + this.pulses3Label.TabIndex = 1; + this.pulses3Label.Text = "pulses3"; + this.pulses3Label.Visible = false; + // + // sensor3Label + // + this.sensor3Label.AutoSize = true; + this.sensor3Label.Location = new System.Drawing.Point(204, 542); + this.sensor3Label.Name = "sensor3Label"; + this.sensor3Label.Size = new System.Drawing.Size(44, 13); + this.sensor3Label.TabIndex = 0; + this.sensor3Label.Text = "sensor3"; + this.sensor3Label.Visible = false; + // + // label13 + // + this.label13.AutoSize = true; + this.label13.Location = new System.Drawing.Point(60, 129); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(52, 13); + this.label13.TabIndex = 13; + this.label13.Text = "T up [°C]:"; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(44, 91); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(68, 13); + this.label14.TabIndex = 14; + this.label14.Text = "Pr up [mBar]:"; + // + // tInLabel + // + this.tInLabel.AutoSize = true; + this.tInLabel.Location = new System.Drawing.Point(121, 129); + this.tInLabel.Name = "tInLabel"; + this.tInLabel.Size = new System.Drawing.Size(19, 13); + this.tInLabel.TabIndex = 15; + this.tInLabel.Text = "tIn"; + // + // prInLabel + // + this.prInLabel.AutoSize = true; + this.prInLabel.Location = new System.Drawing.Point(121, 91); + this.prInLabel.Name = "prInLabel"; + this.prInLabel.Size = new System.Drawing.Size(25, 13); + this.prInLabel.TabIndex = 16; + this.prInLabel.Text = "prIn"; + // + // prOutLabel + // + this.prOutLabel.AutoSize = true; + this.prOutLabel.Location = new System.Drawing.Point(578, 91); + this.prOutLabel.Name = "prOutLabel"; + this.prOutLabel.Size = new System.Drawing.Size(33, 13); + this.prOutLabel.TabIndex = 20; + this.prOutLabel.Text = "prOut"; + // + // tOutLabel + // + this.tOutLabel.AutoSize = true; + this.tOutLabel.Location = new System.Drawing.Point(578, 129); + this.tOutLabel.Name = "tOutLabel"; + this.tOutLabel.Size = new System.Drawing.Size(27, 13); + this.tOutLabel.TabIndex = 19; + this.tOutLabel.Text = "tOut"; + // + // label17 + // + this.label17.AutoSize = true; + this.label17.Location = new System.Drawing.Point(488, 91); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(82, 13); + this.label17.TabIndex = 18; + this.label17.Text = "Pr down [mBar]:"; + // + // label18 + // + this.label18.AutoSize = true; + this.label18.Location = new System.Drawing.Point(504, 129); + this.label18.Name = "label18"; + this.label18.Size = new System.Drawing.Size(66, 13); + this.label18.TabIndex = 17; + this.label18.Text = "T down [°C]:"; + // + // label15 + // + this.label15.AutoSize = true; + this.label15.Location = new System.Drawing.Point(697, 114); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(86, 13); + this.label15.TabIndex = 21; + this.label15.Text = "Ref. flow [m3/h]:"; + // + // tInCmpntLabel + // + this.tInCmpntLabel.AutoSize = true; + this.tInCmpntLabel.Location = new System.Drawing.Point(121, 113); + this.tInCmpntLabel.Name = "tInCmpntLabel"; + this.tInCmpntLabel.Size = new System.Drawing.Size(49, 13); + this.tInCmpntLabel.TabIndex = 22; + this.tInCmpntLabel.Text = "tInCmpnt"; + // + // tOutCmpntLabel + // + this.tOutCmpntLabel.AutoSize = true; + this.tOutCmpntLabel.Location = new System.Drawing.Point(578, 113); + this.tOutCmpntLabel.Name = "tOutCmpntLabel"; + this.tOutCmpntLabel.Size = new System.Drawing.Size(57, 13); + this.tOutCmpntLabel.TabIndex = 23; + this.tOutCmpntLabel.Text = "tOutCmpnt"; + // + // prOutCmpntLabel + // + this.prOutCmpntLabel.AutoSize = true; + this.prOutCmpntLabel.Location = new System.Drawing.Point(578, 75); + this.prOutCmpntLabel.Name = "prOutCmpntLabel"; + this.prOutCmpntLabel.Size = new System.Drawing.Size(63, 13); + this.prOutCmpntLabel.TabIndex = 24; + this.prOutCmpntLabel.Text = "prOutCmpnt"; + // + // prInCmpntLabel + // + this.prInCmpntLabel.AutoSize = true; + this.prInCmpntLabel.Location = new System.Drawing.Point(121, 75); + this.prInCmpntLabel.Name = "prInCmpntLabel"; + this.prInCmpntLabel.Size = new System.Drawing.Size(55, 13); + this.prInCmpntLabel.TabIndex = 25; + this.prInCmpntLabel.Text = "prInCmpnt"; + // + // refFlowLabel + // + this.refFlowLabel.AutoSize = true; + this.refFlowLabel.Location = new System.Drawing.Point(790, 114); + this.refFlowLabel.Name = "refFlowLabel"; + this.refFlowLabel.Size = new System.Drawing.Size(41, 13); + this.refFlowLabel.TabIndex = 26; + this.refFlowLabel.Text = "refFlow"; + // + // label16 + // + this.label16.AutoSize = true; + this.label16.Location = new System.Drawing.Point(707, 95); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(76, 13); + this.label16.TabIndex = 27; + this.label16.Text = "Ref. freq. [Hz]:"; + // + // refFreqLabel + // + this.refFreqLabel.AutoSize = true; + this.refFreqLabel.Location = new System.Drawing.Point(790, 95); + this.refFreqLabel.Name = "refFreqLabel"; + this.refFreqLabel.Size = new System.Drawing.Size(40, 13); + this.refFreqLabel.TabIndex = 28; + this.refFreqLabel.Text = "refFreq"; + // + // label19 + // + this.label19.AutoSize = true; + this.label19.Location = new System.Drawing.Point(723, 77); + this.label19.Name = "label19"; + this.label19.Size = new System.Drawing.Size(60, 13); + this.label19.TabIndex = 29; + this.label19.Text = "Ref. count:"; + // + // refPulsesLabel + // + this.refPulsesLabel.AutoSize = true; + this.refPulsesLabel.Location = new System.Drawing.Point(790, 77); + this.refPulsesLabel.Name = "refPulsesLabel"; + this.refPulsesLabel.Size = new System.Drawing.Size(50, 13); + this.refPulsesLabel.TabIndex = 30; + this.refPulsesLabel.Text = "refPulses"; + // + // refFlowCmpntLabel + // + this.refFlowCmpntLabel.AutoSize = true; + this.refFlowCmpntLabel.Location = new System.Drawing.Point(790, 59); + this.refFlowCmpntLabel.Name = "refFlowCmpntLabel"; + this.refFlowCmpntLabel.Size = new System.Drawing.Size(71, 13); + this.refFlowCmpntLabel.TabIndex = 31; + this.refFlowCmpntLabel.Text = "refFlowCmpnt"; + // + // regValveCmpntLabel + // + this.regValveCmpntLabel.AutoSize = true; + this.regValveCmpntLabel.Location = new System.Drawing.Point(790, 12); + this.regValveCmpntLabel.Name = "regValveCmpntLabel"; + this.regValveCmpntLabel.Size = new System.Drawing.Size(79, 13); + this.regValveCmpntLabel.TabIndex = 34; + this.regValveCmpntLabel.Text = "regValveCmpnt"; + // + // regValvePosLabel + // + this.regValvePosLabel.AutoSize = true; + this.regValvePosLabel.Location = new System.Drawing.Point(790, 30); + this.regValvePosLabel.Name = "regValvePosLabel"; + this.regValvePosLabel.Size = new System.Drawing.Size(67, 13); + this.regValvePosLabel.TabIndex = 35; + this.regValvePosLabel.Text = "regValvePos"; + // + // label21 + // + this.label21.AutoSize = true; + this.label21.Location = new System.Drawing.Point(701, 30); + this.label21.Name = "label21"; + this.label21.Size = new System.Drawing.Size(85, 13); + this.label21.TabIndex = 36; + this.label21.Text = "Reg. valve pos.:"; + // + // tDivCmpntLabel + // + this.tDivCmpntLabel.AutoSize = true; + this.tDivCmpntLabel.Location = new System.Drawing.Point(578, 12); + this.tDivCmpntLabel.Name = "tDivCmpntLabel"; + this.tDivCmpntLabel.Size = new System.Drawing.Size(56, 13); + this.tDivCmpntLabel.TabIndex = 39; + this.tDivCmpntLabel.Text = "tDivCmpnt"; + // + // tDivLabel + // + this.tDivLabel.AutoSize = true; + this.tDivLabel.Location = new System.Drawing.Point(578, 30); + this.tDivLabel.Name = "tDivLabel"; + this.tDivLabel.Size = new System.Drawing.Size(26, 13); + this.tDivLabel.TabIndex = 38; + this.tDivLabel.Text = "tDiv"; + // + // label24 + // + this.label24.AutoSize = true; + this.label24.Location = new System.Drawing.Point(516, 29); + this.label24.Name = "label24"; + this.label24.Size = new System.Drawing.Size(54, 13); + this.label24.TabIndex = 37; + this.label24.Text = "T div [°C]:"; + // + // scaleCmpntLabel + // + this.scaleCmpntLabel.AutoSize = true; + this.scaleCmpntLabel.Location = new System.Drawing.Point(989, 209); + this.scaleCmpntLabel.Name = "scaleCmpntLabel"; + this.scaleCmpntLabel.Size = new System.Drawing.Size(62, 13); + this.scaleCmpntLabel.TabIndex = 40; + this.scaleCmpntLabel.Text = "scaleCmpnt"; + // + // label22 + // + this.label22.AutoSize = true; + this.label22.Location = new System.Drawing.Point(929, 230); + this.label22.Name = "label22"; + this.label22.Size = new System.Drawing.Size(56, 13); + this.label22.TabIndex = 41; + this.label22.Text = "Mass [kg]:"; + // + // massLabel + // + this.massLabel.AutoSize = true; + this.massLabel.Location = new System.Drawing.Point(989, 230); + this.massLabel.Name = "massLabel"; + this.massLabel.Size = new System.Drawing.Size(31, 13); + this.massLabel.TabIndex = 42; + this.massLabel.Text = "mass"; + // + // label23 + // + this.label23.AutoSize = true; + this.label23.Location = new System.Drawing.Point(909, 250); + this.label23.Name = "label23"; + this.label23.Size = new System.Drawing.Size(76, 13); + this.label23.TabIndex = 43; + this.label23.Text = "Mass diff. [kg]:"; + // + // massDiffLabel + // + this.massDiffLabel.AutoSize = true; + this.massDiffLabel.Location = new System.Drawing.Point(989, 250); + this.massDiffLabel.Name = "massDiffLabel"; + this.massDiffLabel.Size = new System.Drawing.Size(47, 13); + this.massDiffLabel.TabIndex = 44; + this.massDiffLabel.Text = "massDiff"; + // + // label25 + // + this.label25.AutoSize = true; + this.label25.Location = new System.Drawing.Point(709, 133); + this.label25.Name = "label25"; + this.label25.Size = new System.Drawing.Size(78, 13); + this.label25.TabIndex = 45; + this.label25.Text = "Ref. volume [l]:"; + // + // refVolumeLabel + // + this.refVolumeLabel.AutoSize = true; + this.refVolumeLabel.Location = new System.Drawing.Point(790, 133); + this.refVolumeLabel.Name = "refVolumeLabel"; + this.refVolumeLabel.Size = new System.Drawing.Size(54, 13); + this.refVolumeLabel.TabIndex = 46; + this.refVolumeLabel.Text = "refVolume"; + // + // label26 + // + this.label26.AutoSize = true; + this.label26.Location = new System.Drawing.Point(929, 271); + this.label26.Name = "label26"; + this.label26.Size = new System.Drawing.Size(56, 13); + this.label26.TabIndex = 47; + this.label26.Text = "Volume [l]:"; + // + // volumeCtvLabel + // + this.volumeCtvLabel.AutoSize = true; + this.volumeCtvLabel.Location = new System.Drawing.Point(989, 271); + this.volumeCtvLabel.Name = "volumeCtvLabel"; + this.volumeCtvLabel.Size = new System.Drawing.Size(57, 13); + this.volumeCtvLabel.TabIndex = 48; + this.volumeCtvLabel.Text = "volumeCtv"; + // + // label27 + // + this.label27.AutoSize = true; + this.label27.Location = new System.Drawing.Point(914, 293); + this.label27.Name = "label27"; + this.label27.Size = new System.Drawing.Size(71, 13); + this.label27.TabIndex = 49; + this.label27.Text = "Ref. error [%]:"; + // + // refErrorLabel + // + this.refErrorLabel.AutoSize = true; + this.refErrorLabel.Location = new System.Drawing.Point(989, 293); + this.refErrorLabel.Name = "refErrorLabel"; + this.refErrorLabel.Size = new System.Drawing.Size(41, 13); + this.refErrorLabel.TabIndex = 50; + this.refErrorLabel.Text = "refError"; + // + // label28 + // + this.label28.AutoSize = true; + this.label28.Location = new System.Drawing.Point(236, 12); + this.label28.Name = "label28"; + this.label28.Size = new System.Drawing.Size(116, 13); + this.label28.TabIndex = 51; + this.label28.Text = "Target flow low [m3/h]:"; + // + // label29 + // + this.label29.AutoSize = true; + this.label29.Location = new System.Drawing.Point(232, 32); + this.label29.Name = "label29"; + this.label29.Size = new System.Drawing.Size(120, 13); + this.label29.TabIndex = 52; + this.label29.Text = "Target flow high [m3/h]:"; + // + // label20 + // + this.label20.AutoSize = true; + this.label20.Location = new System.Drawing.Point(263, 52); + this.label20.Name = "label20"; + this.label20.Size = new System.Drawing.Size(89, 13); + this.label20.TabIndex = 53; + this.label20.Text = "Target volume [l]:"; + // + // label30 + // + this.label30.AutoSize = true; + this.label30.Location = new System.Drawing.Point(260, 94); + this.label30.Name = "label30"; + this.label30.Size = new System.Drawing.Size(92, 13); + this.label30.TabIndex = 54; + this.label30.Text = "Estimated time [s]:"; + // + // targetFlowLowLabel + // + this.targetFlowLowLabel.AutoSize = true; + this.targetFlowLowLabel.Location = new System.Drawing.Point(355, 12); + this.targetFlowLowLabel.Name = "targetFlowLowLabel"; + this.targetFlowLowLabel.Size = new System.Drawing.Size(76, 13); + this.targetFlowLowLabel.TabIndex = 55; + this.targetFlowLowLabel.Text = "targetFlowLow"; + // + // targetFlowHighLabel + // + this.targetFlowHighLabel.AutoSize = true; + this.targetFlowHighLabel.Location = new System.Drawing.Point(355, 32); + this.targetFlowHighLabel.Name = "targetFlowHighLabel"; + this.targetFlowHighLabel.Size = new System.Drawing.Size(78, 13); + this.targetFlowHighLabel.TabIndex = 56; + this.targetFlowHighLabel.Text = "targetFlowHigh"; + // + // targetVolumeLabel + // + this.targetVolumeLabel.AutoSize = true; + this.targetVolumeLabel.Location = new System.Drawing.Point(355, 52); + this.targetVolumeLabel.Name = "targetVolumeLabel"; + this.targetVolumeLabel.Size = new System.Drawing.Size(69, 13); + this.targetVolumeLabel.TabIndex = 57; + this.targetVolumeLabel.Text = "targetVolume"; + // + // label31 + // + this.label31.AutoSize = true; + this.label31.Location = new System.Drawing.Point(263, 73); + this.label31.Name = "label31"; + this.label31.Size = new System.Drawing.Size(89, 13); + this.label31.TabIndex = 58; + this.label31.Text = "Target ref. count:"; + // + // targetRefCountLabel + // + this.targetRefCountLabel.AutoSize = true; + this.targetRefCountLabel.Location = new System.Drawing.Point(355, 73); + this.targetRefCountLabel.Name = "targetRefCountLabel"; + this.targetRefCountLabel.Size = new System.Drawing.Size(79, 13); + this.targetRefCountLabel.TabIndex = 59; + this.targetRefCountLabel.Text = "targetRefCount"; + // + // estmtdTimeLabel + // + this.estmtdTimeLabel.AutoSize = true; + this.estmtdTimeLabel.Location = new System.Drawing.Point(355, 94); + this.estmtdTimeLabel.Name = "estmtdTimeLabel"; + this.estmtdTimeLabel.Size = new System.Drawing.Size(61, 13); + this.estmtdTimeLabel.TabIndex = 60; + this.estmtdTimeLabel.Text = "estmtdTime"; + // + // label32 + // + this.label32.AutoSize = true; + this.label32.Location = new System.Drawing.Point(11, 12); + this.label32.Name = "label32"; + this.label32.Size = new System.Drawing.Size(101, 13); + this.label32.TabIndex = 61; + this.label32.Text = "Air temperature [°C]:"; + // + // label33 + // + this.label33.AutoSize = true; + this.label33.Location = new System.Drawing.Point(14, 29); + this.label33.Name = "label33"; + this.label33.Size = new System.Drawing.Size(98, 13); + this.label33.TabIndex = 62; + this.label33.Text = "Air pressure [mBar]:"; + // + // label34 + // + this.label34.AutoSize = true; + this.label34.Location = new System.Drawing.Point(32, 46); + this.label34.Name = "label34"; + this.label34.Size = new System.Drawing.Size(80, 13); + this.label34.TabIndex = 63; + this.label34.Text = "Air humidity [%]:"; + // + // airTempLabel + // + this.airTempLabel.AutoSize = true; + this.airTempLabel.Location = new System.Drawing.Point(121, 12); + this.airTempLabel.Name = "airTempLabel"; + this.airTempLabel.Size = new System.Drawing.Size(45, 13); + this.airTempLabel.TabIndex = 64; + this.airTempLabel.Text = "airTemp"; + // + // airPressLabel + // + this.airPressLabel.AutoSize = true; + this.airPressLabel.Location = new System.Drawing.Point(121, 29); + this.airPressLabel.Name = "airPressLabel"; + this.airPressLabel.Size = new System.Drawing.Size(44, 13); + this.airPressLabel.TabIndex = 65; + this.airPressLabel.Text = "airPress"; + // + // airHumiLabel + // + this.airHumiLabel.AutoSize = true; + this.airHumiLabel.Location = new System.Drawing.Point(121, 46); + this.airHumiLabel.Name = "airHumiLabel"; + this.airHumiLabel.Size = new System.Drawing.Size(42, 13); + this.airHumiLabel.TabIndex = 66; + this.airHumiLabel.Text = "airHumi"; + // + // reservoirPictureBox + // + this.reservoirPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("reservoirPictureBox.Image"))); + this.reservoirPictureBox.Location = new System.Drawing.Point(880, 406); + this.reservoirPictureBox.Name = "reservoirPictureBox"; + this.reservoirPictureBox.Size = new System.Drawing.Size(142, 109); + this.reservoirPictureBox.TabIndex = 67; + this.reservoirPictureBox.TabStop = false; + // + // pumpPictureBox + // + this.pumpPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("pumpPictureBox.Image"))); + this.pumpPictureBox.Location = new System.Drawing.Point(779, 478); + this.pumpPictureBox.Name = "pumpPictureBox"; + this.pumpPictureBox.Size = new System.Drawing.Size(38, 38); + this.pumpPictureBox.TabIndex = 68; + this.pumpPictureBox.TabStop = false; + // + // watermeterPictureBox1 + // + this.watermeterPictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox1.Image"))); + this.watermeterPictureBox1.Location = new System.Drawing.Point(66, 371); + this.watermeterPictureBox1.Name = "watermeterPictureBox1"; + this.watermeterPictureBox1.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox1.TabIndex = 69; + this.watermeterPictureBox1.TabStop = false; + // + // watermeterPictureBox2 + // + this.watermeterPictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox2.Image"))); + this.watermeterPictureBox2.Location = new System.Drawing.Point(207, 371); + this.watermeterPictureBox2.Name = "watermeterPictureBox2"; + this.watermeterPictureBox2.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox2.TabIndex = 70; + this.watermeterPictureBox2.TabStop = false; + // + // watermeterPictureBox3 + // + this.watermeterPictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox3.Image"))); + this.watermeterPictureBox3.Location = new System.Drawing.Point(350, 371); + this.watermeterPictureBox3.Name = "watermeterPictureBox3"; + this.watermeterPictureBox3.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox3.TabIndex = 71; + this.watermeterPictureBox3.TabStop = false; + // + // watermeterPictureBox4 + // + this.watermeterPictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox4.Image"))); + this.watermeterPictureBox4.Location = new System.Drawing.Point(491, 371); + this.watermeterPictureBox4.Name = "watermeterPictureBox4"; + this.watermeterPictureBox4.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox4.TabIndex = 73; + this.watermeterPictureBox4.TabStop = false; + // + // passed4Label + // + this.passed4Label.AutoSize = true; + this.passed4Label.Location = new System.Drawing.Point(273, 634); + this.passed4Label.Name = "passed4Label"; + this.passed4Label.Size = new System.Drawing.Size(47, 13); + this.passed4Label.TabIndex = 9; + this.passed4Label.Text = "passed4"; + this.passed4Label.Visible = false; + // + // error4Label + // + this.error4Label.AutoSize = true; + this.error4Label.Location = new System.Drawing.Point(273, 616); + this.error4Label.Name = "error4Label"; + this.error4Label.Size = new System.Drawing.Size(34, 13); + this.error4Label.TabIndex = 8; + this.error4Label.Text = "error4"; + this.error4Label.Visible = false; + // + // volume4Label + // + this.volume4Label.AutoSize = true; + this.volume4Label.Location = new System.Drawing.Point(273, 597); + this.volume4Label.Name = "volume4Label"; + this.volume4Label.Size = new System.Drawing.Size(47, 13); + this.volume4Label.TabIndex = 6; + this.volume4Label.Text = "volume4"; + this.volume4Label.Visible = false; + // + // refPulses4Label + // + this.refPulses4Label.AutoSize = true; + this.refPulses4Label.Location = new System.Drawing.Point(273, 579); + this.refPulses4Label.Name = "refPulses4Label"; + this.refPulses4Label.Size = new System.Drawing.Size(56, 13); + this.refPulses4Label.TabIndex = 2; + this.refPulses4Label.Text = "refPulses4"; + this.refPulses4Label.Visible = false; + // + // pulses4Label + // + this.pulses4Label.AutoSize = true; + this.pulses4Label.Location = new System.Drawing.Point(273, 560); + this.pulses4Label.Name = "pulses4Label"; + this.pulses4Label.Size = new System.Drawing.Size(43, 13); + this.pulses4Label.TabIndex = 1; + this.pulses4Label.Text = "pulses4"; + this.pulses4Label.Visible = false; + // + // sensor4Label + // + this.sensor4Label.AutoSize = true; + this.sensor4Label.Location = new System.Drawing.Point(273, 542); + this.sensor4Label.Name = "sensor4Label"; + this.sensor4Label.Size = new System.Drawing.Size(44, 13); + this.sensor4Label.TabIndex = 0; + this.sensor4Label.Text = "sensor4"; + this.sensor4Label.Visible = false; + // + // watermeterPictureBox5 + // + this.watermeterPictureBox5.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox5.Image"))); + this.watermeterPictureBox5.Location = new System.Drawing.Point(632, 371); + this.watermeterPictureBox5.Name = "watermeterPictureBox5"; + this.watermeterPictureBox5.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox5.TabIndex = 75; + this.watermeterPictureBox5.TabStop = false; + // + // passed5Label + // + this.passed5Label.AutoSize = true; + this.passed5Label.Location = new System.Drawing.Point(344, 634); + this.passed5Label.Name = "passed5Label"; + this.passed5Label.Size = new System.Drawing.Size(47, 13); + this.passed5Label.TabIndex = 9; + this.passed5Label.Text = "passed5"; + this.passed5Label.Visible = false; + // + // error5Label + // + this.error5Label.AutoSize = true; + this.error5Label.Location = new System.Drawing.Point(344, 616); + this.error5Label.Name = "error5Label"; + this.error5Label.Size = new System.Drawing.Size(34, 13); + this.error5Label.TabIndex = 8; + this.error5Label.Text = "error5"; + this.error5Label.Visible = false; + // + // volume5Label + // + this.volume5Label.AutoSize = true; + this.volume5Label.Location = new System.Drawing.Point(344, 597); + this.volume5Label.Name = "volume5Label"; + this.volume5Label.Size = new System.Drawing.Size(47, 13); + this.volume5Label.TabIndex = 6; + this.volume5Label.Text = "volume5"; + this.volume5Label.Visible = false; + // + // refPulses5Label + // + this.refPulses5Label.AutoSize = true; + this.refPulses5Label.Location = new System.Drawing.Point(344, 579); + this.refPulses5Label.Name = "refPulses5Label"; + this.refPulses5Label.Size = new System.Drawing.Size(56, 13); + this.refPulses5Label.TabIndex = 2; + this.refPulses5Label.Text = "refPulses5"; + this.refPulses5Label.Visible = false; + // + // pulses5Label + // + this.pulses5Label.AutoSize = true; + this.pulses5Label.Location = new System.Drawing.Point(344, 560); + this.pulses5Label.Name = "pulses5Label"; + this.pulses5Label.Size = new System.Drawing.Size(43, 13); + this.pulses5Label.TabIndex = 1; + this.pulses5Label.Text = "pulses5"; + this.pulses5Label.Visible = false; + // + // sensor5Label + // + this.sensor5Label.AutoSize = true; + this.sensor5Label.Location = new System.Drawing.Point(344, 542); + this.sensor5Label.Name = "sensor5Label"; + this.sensor5Label.Size = new System.Drawing.Size(44, 13); + this.sensor5Label.TabIndex = 0; + this.sensor5Label.Text = "sensor5"; + this.sensor5Label.Visible = false; + // + // watermeterPictureBox6 + // + this.watermeterPictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox6.Image"))); + this.watermeterPictureBox6.Location = new System.Drawing.Point(775, 371); + this.watermeterPictureBox6.Name = "watermeterPictureBox6"; + this.watermeterPictureBox6.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox6.TabIndex = 77; + this.watermeterPictureBox6.TabStop = false; + // + // passed6Label + // + this.passed6Label.AutoSize = true; + this.passed6Label.Location = new System.Drawing.Point(414, 634); + this.passed6Label.Name = "passed6Label"; + this.passed6Label.Size = new System.Drawing.Size(47, 13); + this.passed6Label.TabIndex = 9; + this.passed6Label.Text = "passed6"; + this.passed6Label.Visible = false; + // + // error6Label + // + this.error6Label.AutoSize = true; + this.error6Label.Location = new System.Drawing.Point(414, 616); + this.error6Label.Name = "error6Label"; + this.error6Label.Size = new System.Drawing.Size(34, 13); + this.error6Label.TabIndex = 8; + this.error6Label.Text = "error6"; + this.error6Label.Visible = false; + // + // volume6Label + // + this.volume6Label.AutoSize = true; + this.volume6Label.Location = new System.Drawing.Point(414, 597); + this.volume6Label.Name = "volume6Label"; + this.volume6Label.Size = new System.Drawing.Size(47, 13); + this.volume6Label.TabIndex = 6; + this.volume6Label.Text = "volume6"; + this.volume6Label.Visible = false; + // + // refPulses6Label + // + this.refPulses6Label.AutoSize = true; + this.refPulses6Label.Location = new System.Drawing.Point(414, 579); + this.refPulses6Label.Name = "refPulses6Label"; + this.refPulses6Label.Size = new System.Drawing.Size(56, 13); + this.refPulses6Label.TabIndex = 2; + this.refPulses6Label.Text = "refPulses6"; + this.refPulses6Label.Visible = false; + // + // pulses6Label + // + this.pulses6Label.AutoSize = true; + this.pulses6Label.Location = new System.Drawing.Point(414, 560); + this.pulses6Label.Name = "pulses6Label"; + this.pulses6Label.Size = new System.Drawing.Size(43, 13); + this.pulses6Label.TabIndex = 1; + this.pulses6Label.Text = "pulses6"; + this.pulses6Label.Visible = false; + // + // sensor6Label + // + this.sensor6Label.AutoSize = true; + this.sensor6Label.Location = new System.Drawing.Point(414, 542); + this.sensor6Label.Name = "sensor6Label"; + this.sensor6Label.Size = new System.Drawing.Size(44, 13); + this.sensor6Label.TabIndex = 0; + this.sensor6Label.Text = "sensor6"; + this.sensor6Label.Visible = false; + // + // flowMeterPictureBox + // + this.flowMeterPictureBox.ErrorImage = null; + this.flowMeterPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("flowMeterPictureBox.Image"))); + this.flowMeterPictureBox.InitialImage = null; + this.flowMeterPictureBox.Location = new System.Drawing.Point(864, 102); + this.flowMeterPictureBox.Name = "flowMeterPictureBox"; + this.flowMeterPictureBox.Size = new System.Drawing.Size(38, 38); + this.flowMeterPictureBox.TabIndex = 78; + this.flowMeterPictureBox.TabStop = false; + // + // pictureBox1 + // + this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); + this.pictureBox1.Location = new System.Drawing.Point(864, 45); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(38, 35); + this.pictureBox1.TabIndex = 79; + this.pictureBox1.TabStop = false; + // + // watermeterPictureBox1z + // + this.watermeterPictureBox1z.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox1z.Image"))); + this.watermeterPictureBox1z.Location = new System.Drawing.Point(207, 416); + this.watermeterPictureBox1z.Name = "watermeterPictureBox1z"; + this.watermeterPictureBox1z.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox1z.TabIndex = 80; + this.watermeterPictureBox1z.TabStop = false; + // + // watermeterPictureBox2z + // + this.watermeterPictureBox2z.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox2z.Image"))); + this.watermeterPictureBox2z.Location = new System.Drawing.Point(491, 416); + this.watermeterPictureBox2z.Name = "watermeterPictureBox2z"; + this.watermeterPictureBox2z.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox2z.TabIndex = 81; + this.watermeterPictureBox2z.TabStop = false; + // + // watermeterPictureBox3z + // + this.watermeterPictureBox3z.Image = ((System.Drawing.Image)(resources.GetObject("watermeterPictureBox3z.Image"))); + this.watermeterPictureBox3z.Location = new System.Drawing.Point(775, 416); + this.watermeterPictureBox3z.Name = "watermeterPictureBox3z"; + this.watermeterPictureBox3z.Size = new System.Drawing.Size(38, 30); + this.watermeterPictureBox3z.TabIndex = 82; + this.watermeterPictureBox3z.TabStop = false; + // + // groupBox1z + // + this.groupBox1z.Controls.Add(this.passed1zLabel); + this.groupBox1z.Controls.Add(this.error1zLabel); + this.groupBox1z.Controls.Add(this.label56); + this.groupBox1z.Controls.Add(this.volume1zLabel); + this.groupBox1z.Controls.Add(this.label58); + this.groupBox1z.Location = new System.Drawing.Point(23, 151); + this.groupBox1z.Name = "groupBox1z"; + this.groupBox1z.Size = new System.Drawing.Size(280, 76); + this.groupBox1z.TabIndex = 83; + this.groupBox1z.TabStop = false; + this.groupBox1z.Text = "Combined meter 1"; + // + // passed1zLabel + // + this.passed1zLabel.AutoSize = true; + this.passed1zLabel.Location = new System.Drawing.Point(141, 55); + this.passed1zLabel.Name = "passed1zLabel"; + this.passed1zLabel.Size = new System.Drawing.Size(52, 13); + this.passed1zLabel.TabIndex = 9; + this.passed1zLabel.Text = "passed1z"; + // + // error1zLabel + // + this.error1zLabel.AutoSize = true; + this.error1zLabel.Location = new System.Drawing.Point(141, 37); + this.error1zLabel.Name = "error1zLabel"; + this.error1zLabel.Size = new System.Drawing.Size(39, 13); + this.error1zLabel.TabIndex = 8; + this.error1zLabel.Text = "error1z"; + // + // label56 + // + this.label56.AutoSize = true; + this.label56.Location = new System.Drawing.Point(86, 37); + this.label56.Name = "label56"; + this.label56.Size = new System.Drawing.Size(49, 13); + this.label56.TabIndex = 7; + this.label56.Text = "Error [%]:"; + // + // volume1zLabel + // + this.volume1zLabel.AutoSize = true; + this.volume1zLabel.Location = new System.Drawing.Point(141, 18); + this.volume1zLabel.Name = "volume1zLabel"; + this.volume1zLabel.Size = new System.Drawing.Size(52, 13); + this.volume1zLabel.TabIndex = 6; + this.volume1zLabel.Text = "volume1z"; + // + // label58 + // + this.label58.AutoSize = true; + this.label58.Location = new System.Drawing.Point(90, 18); + this.label58.Name = "label58"; + this.label58.Size = new System.Drawing.Size(45, 13); + this.label58.TabIndex = 5; + this.label58.Text = "Volume:"; + // + // groupBox2z + // + this.groupBox2z.Controls.Add(this.passed2zLabel); + this.groupBox2z.Controls.Add(this.error2zLabel); + this.groupBox2z.Controls.Add(this.label52); + this.groupBox2z.Controls.Add(this.volume2zLabel); + this.groupBox2z.Controls.Add(this.label59); + this.groupBox2z.Location = new System.Drawing.Point(305, 151); + this.groupBox2z.Name = "groupBox2z"; + this.groupBox2z.Size = new System.Drawing.Size(280, 76); + this.groupBox2z.TabIndex = 84; + this.groupBox2z.TabStop = false; + this.groupBox2z.Text = "Combined meter 2"; + // + // passed2zLabel + // + this.passed2zLabel.AutoSize = true; + this.passed2zLabel.Location = new System.Drawing.Point(141, 56); + this.passed2zLabel.Name = "passed2zLabel"; + this.passed2zLabel.Size = new System.Drawing.Size(52, 13); + this.passed2zLabel.TabIndex = 9; + this.passed2zLabel.Text = "passed2z"; + // + // error2zLabel + // + this.error2zLabel.AutoSize = true; + this.error2zLabel.Location = new System.Drawing.Point(141, 38); + this.error2zLabel.Name = "error2zLabel"; + this.error2zLabel.Size = new System.Drawing.Size(39, 13); + this.error2zLabel.TabIndex = 8; + this.error2zLabel.Text = "error2z"; + // + // label52 + // + this.label52.AutoSize = true; + this.label52.Location = new System.Drawing.Point(86, 38); + this.label52.Name = "label52"; + this.label52.Size = new System.Drawing.Size(49, 13); + this.label52.TabIndex = 7; + this.label52.Text = "Error [%]:"; + // + // volume2zLabel + // + this.volume2zLabel.AutoSize = true; + this.volume2zLabel.Location = new System.Drawing.Point(141, 19); + this.volume2zLabel.Name = "volume2zLabel"; + this.volume2zLabel.Size = new System.Drawing.Size(52, 13); + this.volume2zLabel.TabIndex = 6; + this.volume2zLabel.Text = "volume2z"; + // + // label59 + // + this.label59.AutoSize = true; + this.label59.Location = new System.Drawing.Point(90, 19); + this.label59.Name = "label59"; + this.label59.Size = new System.Drawing.Size(45, 13); + this.label59.TabIndex = 5; + this.label59.Text = "Volume:"; + // + // groupBox3z + // + this.groupBox3z.Controls.Add(this.passed3zLabel); + this.groupBox3z.Controls.Add(this.error3zLabel); + this.groupBox3z.Controls.Add(this.label57); + this.groupBox3z.Controls.Add(this.volume3zLabel); + this.groupBox3z.Controls.Add(this.label61); + this.groupBox3z.Location = new System.Drawing.Point(587, 151); + this.groupBox3z.Name = "groupBox3z"; + this.groupBox3z.Size = new System.Drawing.Size(280, 76); + this.groupBox3z.TabIndex = 85; + this.groupBox3z.TabStop = false; + this.groupBox3z.Text = "Combined meter 3"; + // + // passed3zLabel + // + this.passed3zLabel.AutoSize = true; + this.passed3zLabel.Location = new System.Drawing.Point(141, 56); + this.passed3zLabel.Name = "passed3zLabel"; + this.passed3zLabel.Size = new System.Drawing.Size(52, 13); + this.passed3zLabel.TabIndex = 9; + this.passed3zLabel.Text = "passed3z"; + // + // error3zLabel + // + this.error3zLabel.AutoSize = true; + this.error3zLabel.Location = new System.Drawing.Point(141, 38); + this.error3zLabel.Name = "error3zLabel"; + this.error3zLabel.Size = new System.Drawing.Size(39, 13); + this.error3zLabel.TabIndex = 8; + this.error3zLabel.Text = "error3z"; + // + // label57 + // + this.label57.AutoSize = true; + this.label57.Location = new System.Drawing.Point(86, 38); + this.label57.Name = "label57"; + this.label57.Size = new System.Drawing.Size(49, 13); + this.label57.TabIndex = 7; + this.label57.Text = "Error [%]:"; + // + // volume3zLabel + // + this.volume3zLabel.AutoSize = true; + this.volume3zLabel.Location = new System.Drawing.Point(141, 19); + this.volume3zLabel.Name = "volume3zLabel"; + this.volume3zLabel.Size = new System.Drawing.Size(52, 13); + this.volume3zLabel.TabIndex = 6; + this.volume3zLabel.Text = "volume3z"; + // + // label61 + // + this.label61.AutoSize = true; + this.label61.Location = new System.Drawing.Point(90, 19); + this.label61.Name = "label61"; + this.label61.Size = new System.Drawing.Size(45, 13); + this.label61.TabIndex = 5; + this.label61.Text = "Volume:"; + // + // pumpPctTextBox + // + this.pumpPctTextBox.Location = new System.Drawing.Point(777, 454); + this.pumpPctTextBox.Name = "pumpPctTextBox"; + this.pumpPctTextBox.Size = new System.Drawing.Size(42, 20); + this.pumpPctTextBox.TabIndex = 86; + // + // meter1Label + // + this.meter1Label.AutoSize = true; + this.meter1Label.Location = new System.Drawing.Point(64, 524); + this.meter1Label.Name = "meter1Label"; + this.meter1Label.Size = new System.Drawing.Size(43, 13); + this.meter1Label.TabIndex = 87; + this.meter1Label.Text = "Meter 1"; + this.meter1Label.Visible = false; + // + // meter2Label + // + this.meter2Label.AutoSize = true; + this.meter2Label.Location = new System.Drawing.Point(134, 524); + this.meter2Label.Name = "meter2Label"; + this.meter2Label.Size = new System.Drawing.Size(43, 13); + this.meter2Label.TabIndex = 88; + this.meter2Label.Text = "Meter 2"; + this.meter2Label.Visible = false; + // + // meter3Label + // + this.meter3Label.AutoSize = true; + this.meter3Label.Location = new System.Drawing.Point(204, 524); + this.meter3Label.Name = "meter3Label"; + this.meter3Label.Size = new System.Drawing.Size(43, 13); + this.meter3Label.TabIndex = 89; + this.meter3Label.Text = "Meter 3"; + this.meter3Label.Visible = false; + // + // meter4Label + // + this.meter4Label.AutoSize = true; + this.meter4Label.Location = new System.Drawing.Point(274, 524); + this.meter4Label.Name = "meter4Label"; + this.meter4Label.Size = new System.Drawing.Size(43, 13); + this.meter4Label.TabIndex = 90; + this.meter4Label.Text = "Meter 4"; + this.meter4Label.Visible = false; + // + // meter5Label + // + this.meter5Label.AutoSize = true; + this.meter5Label.Location = new System.Drawing.Point(344, 524); + this.meter5Label.Name = "meter5Label"; + this.meter5Label.Size = new System.Drawing.Size(43, 13); + this.meter5Label.TabIndex = 91; + this.meter5Label.Text = "Meter 5"; + this.meter5Label.Visible = false; + // + // meter6Label + // + this.meter6Label.AutoSize = true; + this.meter6Label.Location = new System.Drawing.Point(414, 524); + this.meter6Label.Name = "meter6Label"; + this.meter6Label.Size = new System.Drawing.Size(43, 13); + this.meter6Label.TabIndex = 92; + this.meter6Label.Text = "Meter 6"; + this.meter6Label.Visible = false; + // + // meter12Label + // + this.meter12Label.AutoSize = true; + this.meter12Label.Location = new System.Drawing.Point(834, 524); + this.meter12Label.Name = "meter12Label"; + this.meter12Label.Size = new System.Drawing.Size(49, 13); + this.meter12Label.TabIndex = 134; + this.meter12Label.Text = "Meter 12"; + this.meter12Label.Visible = false; + // + // meter11Label + // + this.meter11Label.AutoSize = true; + this.meter11Label.Location = new System.Drawing.Point(764, 524); + this.meter11Label.Name = "meter11Label"; + this.meter11Label.Size = new System.Drawing.Size(49, 13); + this.meter11Label.TabIndex = 133; + this.meter11Label.Text = "Meter 11"; + this.meter11Label.Visible = false; + // + // meter10Label + // + this.meter10Label.AutoSize = true; + this.meter10Label.Location = new System.Drawing.Point(694, 524); + this.meter10Label.Name = "meter10Label"; + this.meter10Label.Size = new System.Drawing.Size(49, 13); + this.meter10Label.TabIndex = 132; + this.meter10Label.Text = "Meter 10"; + this.meter10Label.Visible = false; + // + // meter9Label + // + this.meter9Label.AutoSize = true; + this.meter9Label.Location = new System.Drawing.Point(624, 524); + this.meter9Label.Name = "meter9Label"; + this.meter9Label.Size = new System.Drawing.Size(43, 13); + this.meter9Label.TabIndex = 131; + this.meter9Label.Text = "Meter 9"; + this.meter9Label.Visible = false; + // + // meter8Label + // + this.meter8Label.AutoSize = true; + this.meter8Label.Location = new System.Drawing.Point(554, 524); + this.meter8Label.Name = "meter8Label"; + this.meter8Label.Size = new System.Drawing.Size(43, 13); + this.meter8Label.TabIndex = 130; + this.meter8Label.Text = "Meter 8"; + this.meter8Label.Visible = false; + // + // meter7Label + // + this.meter7Label.AutoSize = true; + this.meter7Label.Location = new System.Drawing.Point(484, 524); + this.meter7Label.Name = "meter7Label"; + this.meter7Label.Size = new System.Drawing.Size(43, 13); + this.meter7Label.TabIndex = 129; + this.meter7Label.Text = "Meter 7"; + this.meter7Label.Visible = false; + // + // passed12Label + // + this.passed12Label.AutoSize = true; + this.passed12Label.Location = new System.Drawing.Point(834, 634); + this.passed12Label.Name = "passed12Label"; + this.passed12Label.Size = new System.Drawing.Size(53, 13); + this.passed12Label.TabIndex = 123; + this.passed12Label.Text = "passed12"; + this.passed12Label.Visible = false; + // + // passed11Label + // + this.passed11Label.AutoSize = true; + this.passed11Label.Location = new System.Drawing.Point(764, 634); + this.passed11Label.Name = "passed11Label"; + this.passed11Label.Size = new System.Drawing.Size(53, 13); + this.passed11Label.TabIndex = 124; + this.passed11Label.Text = "passed11"; + this.passed11Label.Visible = false; + // + // error12Label + // + this.error12Label.AutoSize = true; + this.error12Label.Location = new System.Drawing.Point(834, 616); + this.error12Label.Name = "error12Label"; + this.error12Label.Size = new System.Drawing.Size(40, 13); + this.error12Label.TabIndex = 118; + this.error12Label.Text = "error12"; + this.error12Label.Visible = false; + // + // passed10Label + // + this.passed10Label.AutoSize = true; + this.passed10Label.Location = new System.Drawing.Point(693, 634); + this.passed10Label.Name = "passed10Label"; + this.passed10Label.Size = new System.Drawing.Size(53, 13); + this.passed10Label.TabIndex = 125; + this.passed10Label.Text = "passed10"; + this.passed10Label.Visible = false; + // + // error11Label + // + this.error11Label.AutoSize = true; + this.error11Label.Location = new System.Drawing.Point(764, 616); + this.error11Label.Name = "error11Label"; + this.error11Label.Size = new System.Drawing.Size(40, 13); + this.error11Label.TabIndex = 119; + this.error11Label.Text = "error11"; + this.error11Label.Visible = false; + // + // volume12Label + // + this.volume12Label.AutoSize = true; + this.volume12Label.Location = new System.Drawing.Point(834, 597); + this.volume12Label.Name = "volume12Label"; + this.volume12Label.Size = new System.Drawing.Size(53, 13); + this.volume12Label.TabIndex = 114; + this.volume12Label.Text = "volume12"; + this.volume12Label.Visible = false; + // + // passed9Label + // + this.passed9Label.AutoSize = true; + this.passed9Label.Location = new System.Drawing.Point(624, 634); + this.passed9Label.Name = "passed9Label"; + this.passed9Label.Size = new System.Drawing.Size(47, 13); + this.passed9Label.TabIndex = 127; + this.passed9Label.Text = "passed9"; + this.passed9Label.Visible = false; + // + // error10Label + // + this.error10Label.AutoSize = true; + this.error10Label.Location = new System.Drawing.Point(693, 616); + this.error10Label.Name = "error10Label"; + this.error10Label.Size = new System.Drawing.Size(40, 13); + this.error10Label.TabIndex = 117; + this.error10Label.Text = "error10"; + this.error10Label.Visible = false; + // + // volume11Label + // + this.volume11Label.AutoSize = true; + this.volume11Label.Location = new System.Drawing.Point(764, 597); + this.volume11Label.Name = "volume11Label"; + this.volume11Label.Size = new System.Drawing.Size(53, 13); + this.volume11Label.TabIndex = 116; + this.volume11Label.Text = "volume11"; + this.volume11Label.Visible = false; + // + // passed8Label + // + this.passed8Label.AutoSize = true; + this.passed8Label.Location = new System.Drawing.Point(554, 634); + this.passed8Label.Name = "passed8Label"; + this.passed8Label.Size = new System.Drawing.Size(47, 13); + this.passed8Label.TabIndex = 126; + this.passed8Label.Text = "passed8"; + this.passed8Label.Visible = false; + // + // refPulses12Label + // + this.refPulses12Label.AutoSize = true; + this.refPulses12Label.Location = new System.Drawing.Point(834, 579); + this.refPulses12Label.Name = "refPulses12Label"; + this.refPulses12Label.Size = new System.Drawing.Size(62, 13); + this.refPulses12Label.TabIndex = 106; + this.refPulses12Label.Text = "refPulses12"; + this.refPulses12Label.Visible = false; + // + // error9Label + // + this.error9Label.AutoSize = true; + this.error9Label.Location = new System.Drawing.Point(624, 616); + this.error9Label.Name = "error9Label"; + this.error9Label.Size = new System.Drawing.Size(34, 13); + this.error9Label.TabIndex = 120; + this.error9Label.Text = "error9"; + this.error9Label.Visible = false; + // + // pulses12Label + // + this.pulses12Label.AutoSize = true; + this.pulses12Label.Location = new System.Drawing.Point(834, 560); + this.pulses12Label.Name = "pulses12Label"; + this.pulses12Label.Size = new System.Drawing.Size(49, 13); + this.pulses12Label.TabIndex = 102; + this.pulses12Label.Text = "pulses12"; + this.pulses12Label.Visible = false; + // + // sensor12Label + // + this.sensor12Label.AutoSize = true; + this.sensor12Label.Location = new System.Drawing.Point(834, 542); + this.sensor12Label.Name = "sensor12Label"; + this.sensor12Label.Size = new System.Drawing.Size(50, 13); + this.sensor12Label.TabIndex = 95; + this.sensor12Label.Text = "sensor12"; + this.sensor12Label.Visible = false; + // + // volume10Label + // + this.volume10Label.AutoSize = true; + this.volume10Label.Location = new System.Drawing.Point(693, 597); + this.volume10Label.Name = "volume10Label"; + this.volume10Label.Size = new System.Drawing.Size(53, 13); + this.volume10Label.TabIndex = 115; + this.volume10Label.Text = "volume10"; + this.volume10Label.Visible = false; + // + // passed7Label + // + this.passed7Label.AutoSize = true; + this.passed7Label.Location = new System.Drawing.Point(484, 634); + this.passed7Label.Name = "passed7Label"; + this.passed7Label.Size = new System.Drawing.Size(47, 13); + this.passed7Label.TabIndex = 128; + this.passed7Label.Text = "passed7"; + this.passed7Label.Visible = false; + // + // refPulses11Label + // + this.refPulses11Label.AutoSize = true; + this.refPulses11Label.Location = new System.Drawing.Point(764, 579); + this.refPulses11Label.Name = "refPulses11Label"; + this.refPulses11Label.Size = new System.Drawing.Size(62, 13); + this.refPulses11Label.TabIndex = 105; + this.refPulses11Label.Text = "refPulses11"; + this.refPulses11Label.Visible = false; + // + // pulses11Label + // + this.pulses11Label.AutoSize = true; + this.pulses11Label.Location = new System.Drawing.Point(764, 560); + this.pulses11Label.Name = "pulses11Label"; + this.pulses11Label.Size = new System.Drawing.Size(49, 13); + this.pulses11Label.TabIndex = 99; + this.pulses11Label.Text = "pulses11"; + this.pulses11Label.Visible = false; + // + // error8Label + // + this.error8Label.AutoSize = true; + this.error8Label.Location = new System.Drawing.Point(554, 616); + this.error8Label.Name = "error8Label"; + this.error8Label.Size = new System.Drawing.Size(34, 13); + this.error8Label.TabIndex = 121; + this.error8Label.Text = "error8"; + this.error8Label.Visible = false; + // + // sensor11Label + // + this.sensor11Label.AutoSize = true; + this.sensor11Label.Location = new System.Drawing.Point(764, 542); + this.sensor11Label.Name = "sensor11Label"; + this.sensor11Label.Size = new System.Drawing.Size(50, 13); + this.sensor11Label.TabIndex = 96; + this.sensor11Label.Text = "sensor11"; + this.sensor11Label.Visible = false; + // + // volume9Label + // + this.volume9Label.AutoSize = true; + this.volume9Label.Location = new System.Drawing.Point(624, 597); + this.volume9Label.Name = "volume9Label"; + this.volume9Label.Size = new System.Drawing.Size(47, 13); + this.volume9Label.TabIndex = 111; + this.volume9Label.Text = "volume9"; + this.volume9Label.Visible = false; + // + // refPulses10Label + // + this.refPulses10Label.AutoSize = true; + this.refPulses10Label.Location = new System.Drawing.Point(693, 579); + this.refPulses10Label.Name = "refPulses10Label"; + this.refPulses10Label.Size = new System.Drawing.Size(62, 13); + this.refPulses10Label.TabIndex = 110; + this.refPulses10Label.Text = "refPulses10"; + this.refPulses10Label.Visible = false; + // + // pulses10Label + // + this.pulses10Label.AutoSize = true; + this.pulses10Label.Location = new System.Drawing.Point(693, 560); + this.pulses10Label.Name = "pulses10Label"; + this.pulses10Label.Size = new System.Drawing.Size(49, 13); + this.pulses10Label.TabIndex = 100; + this.pulses10Label.Text = "pulses10"; + this.pulses10Label.Visible = false; + // + // volume8Label + // + this.volume8Label.AutoSize = true; + this.volume8Label.Location = new System.Drawing.Point(554, 597); + this.volume8Label.Name = "volume8Label"; + this.volume8Label.Size = new System.Drawing.Size(47, 13); + this.volume8Label.TabIndex = 113; + this.volume8Label.Text = "volume8"; + this.volume8Label.Visible = false; + // + // sensor10Label + // + this.sensor10Label.AutoSize = true; + this.sensor10Label.Location = new System.Drawing.Point(693, 542); + this.sensor10Label.Name = "sensor10Label"; + this.sensor10Label.Size = new System.Drawing.Size(50, 13); + this.sensor10Label.TabIndex = 93; + this.sensor10Label.Text = "sensor10"; + this.sensor10Label.Visible = false; + // + // error7Label + // + this.error7Label.AutoSize = true; + this.error7Label.Location = new System.Drawing.Point(484, 616); + this.error7Label.Name = "error7Label"; + this.error7Label.Size = new System.Drawing.Size(34, 13); + this.error7Label.TabIndex = 122; + this.error7Label.Text = "error7"; + this.error7Label.Visible = false; + // + // refPulses9Label + // + this.refPulses9Label.AutoSize = true; + this.refPulses9Label.Location = new System.Drawing.Point(624, 579); + this.refPulses9Label.Name = "refPulses9Label"; + this.refPulses9Label.Size = new System.Drawing.Size(56, 13); + this.refPulses9Label.TabIndex = 108; + this.refPulses9Label.Text = "refPulses9"; + this.refPulses9Label.Visible = false; + // + // volume7Label + // + this.volume7Label.AutoSize = true; + this.volume7Label.Location = new System.Drawing.Point(484, 597); + this.volume7Label.Name = "volume7Label"; + this.volume7Label.Size = new System.Drawing.Size(47, 13); + this.volume7Label.TabIndex = 112; + this.volume7Label.Text = "volume7"; + this.volume7Label.Visible = false; + // + // pulses9Label + // + this.pulses9Label.AutoSize = true; + this.pulses9Label.Location = new System.Drawing.Point(624, 560); + this.pulses9Label.Name = "pulses9Label"; + this.pulses9Label.Size = new System.Drawing.Size(43, 13); + this.pulses9Label.TabIndex = 104; + this.pulses9Label.Text = "pulses9"; + this.pulses9Label.Visible = false; + // + // sensor9Label + // + this.sensor9Label.AutoSize = true; + this.sensor9Label.Location = new System.Drawing.Point(624, 542); + this.sensor9Label.Name = "sensor9Label"; + this.sensor9Label.Size = new System.Drawing.Size(44, 13); + this.sensor9Label.TabIndex = 94; + this.sensor9Label.Text = "sensor9"; + this.sensor9Label.Visible = false; + // + // refPulses7Label + // + this.refPulses7Label.AutoSize = true; + this.refPulses7Label.Location = new System.Drawing.Point(484, 579); + this.refPulses7Label.Name = "refPulses7Label"; + this.refPulses7Label.Size = new System.Drawing.Size(56, 13); + this.refPulses7Label.TabIndex = 109; + this.refPulses7Label.Text = "refPulses7"; + this.refPulses7Label.Visible = false; + // + // refPulses8Label + // + this.refPulses8Label.AutoSize = true; + this.refPulses8Label.Location = new System.Drawing.Point(554, 579); + this.refPulses8Label.Name = "refPulses8Label"; + this.refPulses8Label.Size = new System.Drawing.Size(56, 13); + this.refPulses8Label.TabIndex = 107; + this.refPulses8Label.Text = "refPulses8"; + this.refPulses8Label.Visible = false; + // + // pulses8Label + // + this.pulses8Label.AutoSize = true; + this.pulses8Label.Location = new System.Drawing.Point(554, 560); + this.pulses8Label.Name = "pulses8Label"; + this.pulses8Label.Size = new System.Drawing.Size(43, 13); + this.pulses8Label.TabIndex = 103; + this.pulses8Label.Text = "pulses8"; + this.pulses8Label.Visible = false; + // + // pulses7Label + // + this.pulses7Label.AutoSize = true; + this.pulses7Label.Location = new System.Drawing.Point(484, 560); + this.pulses7Label.Name = "pulses7Label"; + this.pulses7Label.Size = new System.Drawing.Size(43, 13); + this.pulses7Label.TabIndex = 101; + this.pulses7Label.Text = "pulses7"; + this.pulses7Label.Visible = false; + // + // sensor8Label + // + this.sensor8Label.AutoSize = true; + this.sensor8Label.Location = new System.Drawing.Point(554, 542); + this.sensor8Label.Name = "sensor8Label"; + this.sensor8Label.Size = new System.Drawing.Size(44, 13); + this.sensor8Label.TabIndex = 97; + this.sensor8Label.Text = "sensor8"; + this.sensor8Label.Visible = false; + // + // sensor7Label + // + this.sensor7Label.AutoSize = true; + this.sensor7Label.Location = new System.Drawing.Point(484, 542); + this.sensor7Label.Name = "sensor7Label"; + this.sensor7Label.Size = new System.Drawing.Size(44, 13); + this.sensor7Label.TabIndex = 98; + this.sensor7Label.Text = "sensor7"; + this.sensor7Label.Visible = false; + // + // meter24Label + // + this.meter24Label.AutoSize = true; + this.meter24Label.Location = new System.Drawing.Point(834, 229); + this.meter24Label.Name = "meter24Label"; + this.meter24Label.Size = new System.Drawing.Size(49, 13); + this.meter24Label.TabIndex = 223; + this.meter24Label.Text = "Meter 24"; + this.meter24Label.Visible = false; + // + // meter23Label + // + this.meter23Label.AutoSize = true; + this.meter23Label.Location = new System.Drawing.Point(764, 229); + this.meter23Label.Name = "meter23Label"; + this.meter23Label.Size = new System.Drawing.Size(49, 13); + this.meter23Label.TabIndex = 222; + this.meter23Label.Text = "Meter 23"; + this.meter23Label.Visible = false; + // + // meter22Label + // + this.meter22Label.AutoSize = true; + this.meter22Label.Location = new System.Drawing.Point(694, 229); + this.meter22Label.Name = "meter22Label"; + this.meter22Label.Size = new System.Drawing.Size(49, 13); + this.meter22Label.TabIndex = 221; + this.meter22Label.Text = "Meter 22"; + this.meter22Label.Visible = false; + // + // meter21Label + // + this.meter21Label.AutoSize = true; + this.meter21Label.Location = new System.Drawing.Point(624, 229); + this.meter21Label.Name = "meter21Label"; + this.meter21Label.Size = new System.Drawing.Size(49, 13); + this.meter21Label.TabIndex = 220; + this.meter21Label.Text = "Meter 21"; + this.meter21Label.Visible = false; + // + // meter20Label + // + this.meter20Label.AutoSize = true; + this.meter20Label.Location = new System.Drawing.Point(554, 229); + this.meter20Label.Name = "meter20Label"; + this.meter20Label.Size = new System.Drawing.Size(49, 13); + this.meter20Label.TabIndex = 219; + this.meter20Label.Text = "Meter 20"; + this.meter20Label.Visible = false; + // + // meter19Label + // + this.meter19Label.AutoSize = true; + this.meter19Label.Location = new System.Drawing.Point(484, 229); + this.meter19Label.Name = "meter19Label"; + this.meter19Label.Size = new System.Drawing.Size(49, 13); + this.meter19Label.TabIndex = 218; + this.meter19Label.Text = "Meter 19"; + this.meter19Label.Visible = false; + // + // passed24Label + // + this.passed24Label.AutoSize = true; + this.passed24Label.Location = new System.Drawing.Point(834, 339); + this.passed24Label.Name = "passed24Label"; + this.passed24Label.Size = new System.Drawing.Size(53, 13); + this.passed24Label.TabIndex = 212; + this.passed24Label.Text = "passed24"; + this.passed24Label.Visible = false; + // + // passed23Label + // + this.passed23Label.AutoSize = true; + this.passed23Label.Location = new System.Drawing.Point(764, 339); + this.passed23Label.Name = "passed23Label"; + this.passed23Label.Size = new System.Drawing.Size(53, 13); + this.passed23Label.TabIndex = 213; + this.passed23Label.Text = "passed23"; + this.passed23Label.Visible = false; + // + // error24Label + // + this.error24Label.AutoSize = true; + this.error24Label.Location = new System.Drawing.Point(834, 321); + this.error24Label.Name = "error24Label"; + this.error24Label.Size = new System.Drawing.Size(40, 13); + this.error24Label.TabIndex = 207; + this.error24Label.Text = "error24"; + this.error24Label.Visible = false; + // + // passed22Label + // + this.passed22Label.AutoSize = true; + this.passed22Label.Location = new System.Drawing.Point(693, 339); + this.passed22Label.Name = "passed22Label"; + this.passed22Label.Size = new System.Drawing.Size(53, 13); + this.passed22Label.TabIndex = 214; + this.passed22Label.Text = "passed22"; + this.passed22Label.Visible = false; + // + // error23Label + // + this.error23Label.AutoSize = true; + this.error23Label.Location = new System.Drawing.Point(764, 321); + this.error23Label.Name = "error23Label"; + this.error23Label.Size = new System.Drawing.Size(40, 13); + this.error23Label.TabIndex = 208; + this.error23Label.Text = "error23"; + this.error23Label.Visible = false; + // + // volume24Label + // + this.volume24Label.AutoSize = true; + this.volume24Label.Location = new System.Drawing.Point(834, 302); + this.volume24Label.Name = "volume24Label"; + this.volume24Label.Size = new System.Drawing.Size(53, 13); + this.volume24Label.TabIndex = 203; + this.volume24Label.Text = "volume24"; + this.volume24Label.Visible = false; + // + // passed21Label + // + this.passed21Label.AutoSize = true; + this.passed21Label.Location = new System.Drawing.Point(624, 339); + this.passed21Label.Name = "passed21Label"; + this.passed21Label.Size = new System.Drawing.Size(53, 13); + this.passed21Label.TabIndex = 216; + this.passed21Label.Text = "passed21"; + this.passed21Label.Visible = false; + // + // error22Label + // + this.error22Label.AutoSize = true; + this.error22Label.Location = new System.Drawing.Point(693, 321); + this.error22Label.Name = "error22Label"; + this.error22Label.Size = new System.Drawing.Size(40, 13); + this.error22Label.TabIndex = 206; + this.error22Label.Text = "error22"; + this.error22Label.Visible = false; + // + // volume23Label + // + this.volume23Label.AutoSize = true; + this.volume23Label.Location = new System.Drawing.Point(764, 302); + this.volume23Label.Name = "volume23Label"; + this.volume23Label.Size = new System.Drawing.Size(53, 13); + this.volume23Label.TabIndex = 205; + this.volume23Label.Text = "volume23"; + this.volume23Label.Visible = false; + // + // passed20Label + // + this.passed20Label.AutoSize = true; + this.passed20Label.Location = new System.Drawing.Point(554, 339); + this.passed20Label.Name = "passed20Label"; + this.passed20Label.Size = new System.Drawing.Size(53, 13); + this.passed20Label.TabIndex = 215; + this.passed20Label.Text = "passed20"; + this.passed20Label.Visible = false; + // + // refPulses24Label + // + this.refPulses24Label.AutoSize = true; + this.refPulses24Label.Location = new System.Drawing.Point(834, 284); + this.refPulses24Label.Name = "refPulses24Label"; + this.refPulses24Label.Size = new System.Drawing.Size(62, 13); + this.refPulses24Label.TabIndex = 195; + this.refPulses24Label.Text = "refPulses24"; + this.refPulses24Label.Visible = false; + // + // error21Label + // + this.error21Label.AutoSize = true; + this.error21Label.Location = new System.Drawing.Point(624, 321); + this.error21Label.Name = "error21Label"; + this.error21Label.Size = new System.Drawing.Size(40, 13); + this.error21Label.TabIndex = 209; + this.error21Label.Text = "error21"; + this.error21Label.Visible = false; + // + // pulses24Label + // + this.pulses24Label.AutoSize = true; + this.pulses24Label.Location = new System.Drawing.Point(834, 265); + this.pulses24Label.Name = "pulses24Label"; + this.pulses24Label.Size = new System.Drawing.Size(49, 13); + this.pulses24Label.TabIndex = 191; + this.pulses24Label.Text = "pulses24"; + this.pulses24Label.Visible = false; + // + // sensor24Label + // + this.sensor24Label.AutoSize = true; + this.sensor24Label.Location = new System.Drawing.Point(834, 247); + this.sensor24Label.Name = "sensor24Label"; + this.sensor24Label.Size = new System.Drawing.Size(50, 13); + this.sensor24Label.TabIndex = 184; + this.sensor24Label.Text = "sensor24"; + this.sensor24Label.Visible = false; + // + // volume22Label + // + this.volume22Label.AutoSize = true; + this.volume22Label.Location = new System.Drawing.Point(693, 302); + this.volume22Label.Name = "volume22Label"; + this.volume22Label.Size = new System.Drawing.Size(53, 13); + this.volume22Label.TabIndex = 204; + this.volume22Label.Text = "volume22"; + this.volume22Label.Visible = false; + // + // passed19Label + // + this.passed19Label.AutoSize = true; + this.passed19Label.Location = new System.Drawing.Point(484, 339); + this.passed19Label.Name = "passed19Label"; + this.passed19Label.Size = new System.Drawing.Size(53, 13); + this.passed19Label.TabIndex = 217; + this.passed19Label.Text = "passed19"; + this.passed19Label.Visible = false; + // + // refPulses23Label + // + this.refPulses23Label.AutoSize = true; + this.refPulses23Label.Location = new System.Drawing.Point(764, 284); + this.refPulses23Label.Name = "refPulses23Label"; + this.refPulses23Label.Size = new System.Drawing.Size(62, 13); + this.refPulses23Label.TabIndex = 194; + this.refPulses23Label.Text = "refPulses23"; + this.refPulses23Label.Visible = false; + // + // pulses23Label + // + this.pulses23Label.AutoSize = true; + this.pulses23Label.Location = new System.Drawing.Point(764, 265); + this.pulses23Label.Name = "pulses23Label"; + this.pulses23Label.Size = new System.Drawing.Size(49, 13); + this.pulses23Label.TabIndex = 188; + this.pulses23Label.Text = "pulses23"; + this.pulses23Label.Visible = false; + // + // error20Label + // + this.error20Label.AutoSize = true; + this.error20Label.Location = new System.Drawing.Point(554, 321); + this.error20Label.Name = "error20Label"; + this.error20Label.Size = new System.Drawing.Size(40, 13); + this.error20Label.TabIndex = 210; + this.error20Label.Text = "error20"; + this.error20Label.Visible = false; + // + // sensor23Label + // + this.sensor23Label.AutoSize = true; + this.sensor23Label.Location = new System.Drawing.Point(764, 247); + this.sensor23Label.Name = "sensor23Label"; + this.sensor23Label.Size = new System.Drawing.Size(50, 13); + this.sensor23Label.TabIndex = 185; + this.sensor23Label.Text = "sensor23"; + this.sensor23Label.Visible = false; + // + // volume21Label + // + this.volume21Label.AutoSize = true; + this.volume21Label.Location = new System.Drawing.Point(624, 302); + this.volume21Label.Name = "volume21Label"; + this.volume21Label.Size = new System.Drawing.Size(53, 13); + this.volume21Label.TabIndex = 200; + this.volume21Label.Text = "volume21"; + this.volume21Label.Visible = false; + // + // refPulses22Label + // + this.refPulses22Label.AutoSize = true; + this.refPulses22Label.Location = new System.Drawing.Point(693, 284); + this.refPulses22Label.Name = "refPulses22Label"; + this.refPulses22Label.Size = new System.Drawing.Size(62, 13); + this.refPulses22Label.TabIndex = 199; + this.refPulses22Label.Text = "refPulses22"; + this.refPulses22Label.Visible = false; + // + // pulses22Label + // + this.pulses22Label.AutoSize = true; + this.pulses22Label.Location = new System.Drawing.Point(693, 265); + this.pulses22Label.Name = "pulses22Label"; + this.pulses22Label.Size = new System.Drawing.Size(49, 13); + this.pulses22Label.TabIndex = 189; + this.pulses22Label.Text = "pulses22"; + this.pulses22Label.Visible = false; + // + // volume20Label + // + this.volume20Label.AutoSize = true; + this.volume20Label.Location = new System.Drawing.Point(554, 302); + this.volume20Label.Name = "volume20Label"; + this.volume20Label.Size = new System.Drawing.Size(53, 13); + this.volume20Label.TabIndex = 202; + this.volume20Label.Text = "volume20"; + this.volume20Label.Visible = false; + // + // sensor22Label + // + this.sensor22Label.AutoSize = true; + this.sensor22Label.Location = new System.Drawing.Point(693, 247); + this.sensor22Label.Name = "sensor22Label"; + this.sensor22Label.Size = new System.Drawing.Size(50, 13); + this.sensor22Label.TabIndex = 182; + this.sensor22Label.Text = "sensor22"; + this.sensor22Label.Visible = false; + // + // error19Label + // + this.error19Label.AutoSize = true; + this.error19Label.Location = new System.Drawing.Point(484, 321); + this.error19Label.Name = "error19Label"; + this.error19Label.Size = new System.Drawing.Size(40, 13); + this.error19Label.TabIndex = 211; + this.error19Label.Text = "error19"; + this.error19Label.Visible = false; + // + // refPulses21Label + // + this.refPulses21Label.AutoSize = true; + this.refPulses21Label.Location = new System.Drawing.Point(624, 284); + this.refPulses21Label.Name = "refPulses21Label"; + this.refPulses21Label.Size = new System.Drawing.Size(62, 13); + this.refPulses21Label.TabIndex = 197; + this.refPulses21Label.Text = "refPulses21"; + this.refPulses21Label.Visible = false; + // + // volume19Label + // + this.volume19Label.AutoSize = true; + this.volume19Label.Location = new System.Drawing.Point(484, 302); + this.volume19Label.Name = "volume19Label"; + this.volume19Label.Size = new System.Drawing.Size(53, 13); + this.volume19Label.TabIndex = 201; + this.volume19Label.Text = "volume19"; + this.volume19Label.Visible = false; + // + // pulses21Label + // + this.pulses21Label.AutoSize = true; + this.pulses21Label.Location = new System.Drawing.Point(624, 265); + this.pulses21Label.Name = "pulses21Label"; + this.pulses21Label.Size = new System.Drawing.Size(49, 13); + this.pulses21Label.TabIndex = 193; + this.pulses21Label.Text = "pulses21"; + this.pulses21Label.Visible = false; + // + // sensor21Label + // + this.sensor21Label.AutoSize = true; + this.sensor21Label.Location = new System.Drawing.Point(624, 247); + this.sensor21Label.Name = "sensor21Label"; + this.sensor21Label.Size = new System.Drawing.Size(50, 13); + this.sensor21Label.TabIndex = 183; + this.sensor21Label.Text = "sensor21"; + this.sensor21Label.Visible = false; + // + // refPulses19Label + // + this.refPulses19Label.AutoSize = true; + this.refPulses19Label.Location = new System.Drawing.Point(484, 284); + this.refPulses19Label.Name = "refPulses19Label"; + this.refPulses19Label.Size = new System.Drawing.Size(62, 13); + this.refPulses19Label.TabIndex = 198; + this.refPulses19Label.Text = "refPulses19"; + this.refPulses19Label.Visible = false; + // + // refPulses20Label + // + this.refPulses20Label.AutoSize = true; + this.refPulses20Label.Location = new System.Drawing.Point(554, 284); + this.refPulses20Label.Name = "refPulses20Label"; + this.refPulses20Label.Size = new System.Drawing.Size(62, 13); + this.refPulses20Label.TabIndex = 196; + this.refPulses20Label.Text = "refPulses20"; + this.refPulses20Label.Visible = false; + // + // pulses20Label + // + this.pulses20Label.AutoSize = true; + this.pulses20Label.Location = new System.Drawing.Point(554, 265); + this.pulses20Label.Name = "pulses20Label"; + this.pulses20Label.Size = new System.Drawing.Size(49, 13); + this.pulses20Label.TabIndex = 192; + this.pulses20Label.Text = "pulses20"; + this.pulses20Label.Visible = false; + // + // pulses19Label + // + this.pulses19Label.AutoSize = true; + this.pulses19Label.Location = new System.Drawing.Point(484, 265); + this.pulses19Label.Name = "pulses19Label"; + this.pulses19Label.Size = new System.Drawing.Size(49, 13); + this.pulses19Label.TabIndex = 190; + this.pulses19Label.Text = "pulses19"; + this.pulses19Label.Visible = false; + // + // sensor20Label + // + this.sensor20Label.AutoSize = true; + this.sensor20Label.Location = new System.Drawing.Point(554, 247); + this.sensor20Label.Name = "sensor20Label"; + this.sensor20Label.Size = new System.Drawing.Size(50, 13); + this.sensor20Label.TabIndex = 186; + this.sensor20Label.Text = "sensor20"; + this.sensor20Label.Visible = false; + // + // sensor19Label + // + this.sensor19Label.AutoSize = true; + this.sensor19Label.Location = new System.Drawing.Point(484, 247); + this.sensor19Label.Name = "sensor19Label"; + this.sensor19Label.Size = new System.Drawing.Size(50, 13); + this.sensor19Label.TabIndex = 187; + this.sensor19Label.Text = "sensor19"; + this.sensor19Label.Visible = false; + // + // meter18Label + // + this.meter18Label.AutoSize = true; + this.meter18Label.Location = new System.Drawing.Point(414, 229); + this.meter18Label.Name = "meter18Label"; + this.meter18Label.Size = new System.Drawing.Size(49, 13); + this.meter18Label.TabIndex = 181; + this.meter18Label.Text = "Meter 18"; + this.meter18Label.Visible = false; + // + // meter17Label + // + this.meter17Label.AutoSize = true; + this.meter17Label.Location = new System.Drawing.Point(344, 229); + this.meter17Label.Name = "meter17Label"; + this.meter17Label.Size = new System.Drawing.Size(49, 13); + this.meter17Label.TabIndex = 180; + this.meter17Label.Text = "Meter 17"; + this.meter17Label.Visible = false; + // + // meter16Label + // + this.meter16Label.AutoSize = true; + this.meter16Label.Location = new System.Drawing.Point(274, 229); + this.meter16Label.Name = "meter16Label"; + this.meter16Label.Size = new System.Drawing.Size(49, 13); + this.meter16Label.TabIndex = 179; + this.meter16Label.Text = "Meter 16"; + this.meter16Label.Visible = false; + // + // meter15Label + // + this.meter15Label.AutoSize = true; + this.meter15Label.Location = new System.Drawing.Point(204, 229); + this.meter15Label.Name = "meter15Label"; + this.meter15Label.Size = new System.Drawing.Size(49, 13); + this.meter15Label.TabIndex = 178; + this.meter15Label.Text = "Meter 15"; + this.meter15Label.Visible = false; + // + // meter14Label + // + this.meter14Label.AutoSize = true; + this.meter14Label.Location = new System.Drawing.Point(134, 229); + this.meter14Label.Name = "meter14Label"; + this.meter14Label.Size = new System.Drawing.Size(49, 13); + this.meter14Label.TabIndex = 177; + this.meter14Label.Text = "Meter 14"; + this.meter14Label.Visible = false; + // + // meter13Label + // + this.meter13Label.AutoSize = true; + this.meter13Label.Location = new System.Drawing.Point(64, 229); + this.meter13Label.Name = "meter13Label"; + this.meter13Label.Size = new System.Drawing.Size(49, 13); + this.meter13Label.TabIndex = 176; + this.meter13Label.Text = "Meter 13"; + this.meter13Label.Visible = false; + // + // passed18Label + // + this.passed18Label.AutoSize = true; + this.passed18Label.Location = new System.Drawing.Point(414, 339); + this.passed18Label.Name = "passed18Label"; + this.passed18Label.Size = new System.Drawing.Size(53, 13); + this.passed18Label.TabIndex = 174; + this.passed18Label.Text = "passed18"; + this.passed18Label.Visible = false; + // + // passed17Label + // + this.passed17Label.AutoSize = true; + this.passed17Label.Location = new System.Drawing.Point(344, 339); + this.passed17Label.Name = "passed17Label"; + this.passed17Label.Size = new System.Drawing.Size(53, 13); + this.passed17Label.TabIndex = 169; + this.passed17Label.Text = "passed17"; + this.passed17Label.Visible = false; + // + // error18Label + // + this.error18Label.AutoSize = true; + this.error18Label.Location = new System.Drawing.Point(414, 321); + this.error18Label.Name = "error18Label"; + this.error18Label.Size = new System.Drawing.Size(40, 13); + this.error18Label.TabIndex = 167; + this.error18Label.Text = "error18"; + this.error18Label.Visible = false; + // + // passed16Label + // + this.passed16Label.AutoSize = true; + this.passed16Label.Location = new System.Drawing.Point(273, 339); + this.passed16Label.Name = "passed16Label"; + this.passed16Label.Size = new System.Drawing.Size(53, 13); + this.passed16Label.TabIndex = 170; + this.passed16Label.Text = "passed16"; + this.passed16Label.Visible = false; + // + // error17Label + // + this.error17Label.AutoSize = true; + this.error17Label.Location = new System.Drawing.Point(344, 321); + this.error17Label.Name = "error17Label"; + this.error17Label.Size = new System.Drawing.Size(40, 13); + this.error17Label.TabIndex = 163; + this.error17Label.Text = "error17"; + this.error17Label.Visible = false; + // + // volume18Label + // + this.volume18Label.AutoSize = true; + this.volume18Label.Location = new System.Drawing.Point(414, 302); + this.volume18Label.Name = "volume18Label"; + this.volume18Label.Size = new System.Drawing.Size(53, 13); + this.volume18Label.TabIndex = 159; + this.volume18Label.Text = "volume18"; + this.volume18Label.Visible = false; + // + // passed15Label + // + this.passed15Label.AutoSize = true; + this.passed15Label.Location = new System.Drawing.Point(204, 339); + this.passed15Label.Name = "passed15Label"; + this.passed15Label.Size = new System.Drawing.Size(53, 13); + this.passed15Label.TabIndex = 173; + this.passed15Label.Text = "passed15"; + this.passed15Label.Visible = false; + // + // error16Label + // + this.error16Label.AutoSize = true; + this.error16Label.Location = new System.Drawing.Point(273, 321); + this.error16Label.Name = "error16Label"; + this.error16Label.Size = new System.Drawing.Size(40, 13); + this.error16Label.TabIndex = 165; + this.error16Label.Text = "error16"; + this.error16Label.Visible = false; + // + // volume17Label + // + this.volume17Label.AutoSize = true; + this.volume17Label.Location = new System.Drawing.Point(344, 302); + this.volume17Label.Name = "volume17Label"; + this.volume17Label.Size = new System.Drawing.Size(53, 13); + this.volume17Label.TabIndex = 160; + this.volume17Label.Text = "volume17"; + this.volume17Label.Visible = false; + // + // passed14Label + // + this.passed14Label.AutoSize = true; + this.passed14Label.Location = new System.Drawing.Point(134, 339); + this.passed14Label.Name = "passed14Label"; + this.passed14Label.Size = new System.Drawing.Size(53, 13); + this.passed14Label.TabIndex = 171; + this.passed14Label.Text = "passed14"; + this.passed14Label.Visible = false; + // + // refPulses18Label + // + this.refPulses18Label.AutoSize = true; + this.refPulses18Label.Location = new System.Drawing.Point(414, 284); + this.refPulses18Label.Name = "refPulses18Label"; + this.refPulses18Label.Size = new System.Drawing.Size(62, 13); + this.refPulses18Label.TabIndex = 149; + this.refPulses18Label.Text = "refPulses18"; + this.refPulses18Label.Visible = false; + // + // error15Label + // + this.error15Label.AutoSize = true; + this.error15Label.Location = new System.Drawing.Point(204, 321); + this.error15Label.Name = "error15Label"; + this.error15Label.Size = new System.Drawing.Size(40, 13); + this.error15Label.TabIndex = 166; + this.error15Label.Text = "error15"; + this.error15Label.Visible = false; + // + // pulses18Label + // + this.pulses18Label.AutoSize = true; + this.pulses18Label.Location = new System.Drawing.Point(414, 265); + this.pulses18Label.Name = "pulses18Label"; + this.pulses18Label.Size = new System.Drawing.Size(49, 13); + this.pulses18Label.TabIndex = 144; + this.pulses18Label.Text = "pulses18"; + this.pulses18Label.Visible = false; + // + // sensor18Label + // + this.sensor18Label.AutoSize = true; + this.sensor18Label.Location = new System.Drawing.Point(414, 247); + this.sensor18Label.Name = "sensor18Label"; + this.sensor18Label.Size = new System.Drawing.Size(50, 13); + this.sensor18Label.TabIndex = 140; + this.sensor18Label.Text = "sensor18"; + this.sensor18Label.Visible = false; + // + // volume16Label + // + this.volume16Label.AutoSize = true; + this.volume16Label.Location = new System.Drawing.Point(273, 302); + this.volume16Label.Name = "volume16Label"; + this.volume16Label.Size = new System.Drawing.Size(53, 13); + this.volume16Label.TabIndex = 156; + this.volume16Label.Text = "volume16"; + this.volume16Label.Visible = false; + // + // passed13Label + // + this.passed13Label.AutoSize = true; + this.passed13Label.Location = new System.Drawing.Point(64, 339); + this.passed13Label.Name = "passed13Label"; + this.passed13Label.Size = new System.Drawing.Size(53, 13); + this.passed13Label.TabIndex = 172; + this.passed13Label.Text = "passed13"; + this.passed13Label.Visible = false; + // + // refPulses17Label + // + this.refPulses17Label.AutoSize = true; + this.refPulses17Label.Location = new System.Drawing.Point(344, 284); + this.refPulses17Label.Name = "refPulses17Label"; + this.refPulses17Label.Size = new System.Drawing.Size(62, 13); + this.refPulses17Label.TabIndex = 151; + this.refPulses17Label.Text = "refPulses17"; + this.refPulses17Label.Visible = false; + // + // pulses17Label + // + this.pulses17Label.AutoSize = true; + this.pulses17Label.Location = new System.Drawing.Point(344, 265); + this.pulses17Label.Name = "pulses17Label"; + this.pulses17Label.Size = new System.Drawing.Size(49, 13); + this.pulses17Label.TabIndex = 142; + this.pulses17Label.Text = "pulses17"; + this.pulses17Label.Visible = false; + // + // error14Label + // + this.error14Label.AutoSize = true; + this.error14Label.Location = new System.Drawing.Point(134, 321); + this.error14Label.Name = "error14Label"; + this.error14Label.Size = new System.Drawing.Size(40, 13); + this.error14Label.TabIndex = 164; + this.error14Label.Text = "error14"; + this.error14Label.Visible = false; + // + // sensor17Label + // + this.sensor17Label.AutoSize = true; + this.sensor17Label.Location = new System.Drawing.Point(344, 247); + this.sensor17Label.Name = "sensor17Label"; + this.sensor17Label.Size = new System.Drawing.Size(50, 13); + this.sensor17Label.TabIndex = 139; + this.sensor17Label.Text = "sensor17"; + this.sensor17Label.Visible = false; + // + // volume15Label + // + this.volume15Label.AutoSize = true; + this.volume15Label.Location = new System.Drawing.Point(204, 302); + this.volume15Label.Name = "volume15Label"; + this.volume15Label.Size = new System.Drawing.Size(53, 13); + this.volume15Label.TabIndex = 158; + this.volume15Label.Text = "volume15"; + this.volume15Label.Visible = false; + // + // refPulses16Label + // + this.refPulses16Label.AutoSize = true; + this.refPulses16Label.Location = new System.Drawing.Point(273, 284); + this.refPulses16Label.Name = "refPulses16Label"; + this.refPulses16Label.Size = new System.Drawing.Size(62, 13); + this.refPulses16Label.TabIndex = 147; + this.refPulses16Label.Text = "refPulses16"; + this.refPulses16Label.Visible = false; + // + // label104 + // + this.label104.AutoSize = true; + this.label104.Location = new System.Drawing.Point(18, 247); + this.label104.Name = "label104"; + this.label104.Size = new System.Drawing.Size(43, 13); + this.label104.TabIndex = 175; + this.label104.Text = "Sensor:"; + // + // pulses16Label + // + this.pulses16Label.AutoSize = true; + this.pulses16Label.Location = new System.Drawing.Point(273, 265); + this.pulses16Label.Name = "pulses16Label"; + this.pulses16Label.Size = new System.Drawing.Size(49, 13); + this.pulses16Label.TabIndex = 143; + this.pulses16Label.Text = "pulses16"; + this.pulses16Label.Visible = false; + // + // volume14Label + // + this.volume14Label.AutoSize = true; + this.volume14Label.Location = new System.Drawing.Point(134, 302); + this.volume14Label.Name = "volume14Label"; + this.volume14Label.Size = new System.Drawing.Size(53, 13); + this.volume14Label.TabIndex = 161; + this.volume14Label.Text = "volume14"; + this.volume14Label.Visible = false; + // + // sensor16Label + // + this.sensor16Label.AutoSize = true; + this.sensor16Label.Location = new System.Drawing.Point(273, 247); + this.sensor16Label.Name = "sensor16Label"; + this.sensor16Label.Size = new System.Drawing.Size(50, 13); + this.sensor16Label.TabIndex = 137; + this.sensor16Label.Text = "sensor16"; + this.sensor16Label.Visible = false; + // + // error13Label + // + this.error13Label.AutoSize = true; + this.error13Label.Location = new System.Drawing.Point(64, 321); + this.error13Label.Name = "error13Label"; + this.error13Label.Size = new System.Drawing.Size(40, 13); + this.error13Label.TabIndex = 168; + this.error13Label.Text = "error13"; + this.error13Label.Visible = false; + // + // refPulses15Label + // + this.refPulses15Label.AutoSize = true; + this.refPulses15Label.Location = new System.Drawing.Point(204, 284); + this.refPulses15Label.Name = "refPulses15Label"; + this.refPulses15Label.Size = new System.Drawing.Size(62, 13); + this.refPulses15Label.TabIndex = 148; + this.refPulses15Label.Text = "refPulses15"; + this.refPulses15Label.Visible = false; + // + // volume13Label + // + this.volume13Label.AutoSize = true; + this.volume13Label.Location = new System.Drawing.Point(64, 302); + this.volume13Label.Name = "volume13Label"; + this.volume13Label.Size = new System.Drawing.Size(53, 13); + this.volume13Label.TabIndex = 157; + this.volume13Label.Text = "volume13"; + this.volume13Label.Visible = false; + // + // pulses15Label + // + this.pulses15Label.AutoSize = true; + this.pulses15Label.Location = new System.Drawing.Point(204, 265); + this.pulses15Label.Name = "pulses15Label"; + this.pulses15Label.Size = new System.Drawing.Size(49, 13); + this.pulses15Label.TabIndex = 141; + this.pulses15Label.Text = "pulses15"; + this.pulses15Label.Visible = false; + // + // sensor15Label + // + this.sensor15Label.AutoSize = true; + this.sensor15Label.Location = new System.Drawing.Point(204, 247); + this.sensor15Label.Name = "sensor15Label"; + this.sensor15Label.Size = new System.Drawing.Size(50, 13); + this.sensor15Label.TabIndex = 138; + this.sensor15Label.Text = "sensor15"; + this.sensor15Label.Visible = false; + // + // refPulses13Label + // + this.refPulses13Label.AutoSize = true; + this.refPulses13Label.Location = new System.Drawing.Point(64, 284); + this.refPulses13Label.Name = "refPulses13Label"; + this.refPulses13Label.Size = new System.Drawing.Size(62, 13); + this.refPulses13Label.TabIndex = 152; + this.refPulses13Label.Text = "refPulses13"; + this.refPulses13Label.Visible = false; + // + // refPulses14Label + // + this.refPulses14Label.AutoSize = true; + this.refPulses14Label.Location = new System.Drawing.Point(134, 284); + this.refPulses14Label.Name = "refPulses14Label"; + this.refPulses14Label.Size = new System.Drawing.Size(62, 13); + this.refPulses14Label.TabIndex = 150; + this.refPulses14Label.Text = "refPulses14"; + this.refPulses14Label.Visible = false; + // + // pulses14Label + // + this.pulses14Label.AutoSize = true; + this.pulses14Label.Location = new System.Drawing.Point(134, 265); + this.pulses14Label.Name = "pulses14Label"; + this.pulses14Label.Size = new System.Drawing.Size(49, 13); + this.pulses14Label.TabIndex = 146; + this.pulses14Label.Text = "pulses14"; + this.pulses14Label.Visible = false; + // + // pulses13Label + // + this.pulses13Label.AutoSize = true; + this.pulses13Label.Location = new System.Drawing.Point(64, 265); + this.pulses13Label.Name = "pulses13Label"; + this.pulses13Label.Size = new System.Drawing.Size(49, 13); + this.pulses13Label.TabIndex = 145; + this.pulses13Label.Text = "pulses13"; + this.pulses13Label.Visible = false; + // + // sensor14Label + // + this.sensor14Label.AutoSize = true; + this.sensor14Label.Location = new System.Drawing.Point(134, 247); + this.sensor14Label.Name = "sensor14Label"; + this.sensor14Label.Size = new System.Drawing.Size(50, 13); + this.sensor14Label.TabIndex = 135; + this.sensor14Label.Text = "sensor14"; + this.sensor14Label.Visible = false; + // + // sensor13Label + // + this.sensor13Label.AutoSize = true; + this.sensor13Label.Location = new System.Drawing.Point(64, 247); + this.sensor13Label.Name = "sensor13Label"; + this.sensor13Label.Size = new System.Drawing.Size(50, 13); + this.sensor13Label.TabIndex = 136; + this.sensor13Label.Text = "sensor13"; + this.sensor13Label.Visible = false; + // + // label119 + // + this.label119.AutoSize = true; + this.label119.Location = new System.Drawing.Point(12, 321); + this.label119.Name = "label119"; + this.label119.Size = new System.Drawing.Size(49, 13); + this.label119.TabIndex = 162; + this.label119.Text = "Error [%]:"; + // + // label120 + // + this.label120.AutoSize = true; + this.label120.Location = new System.Drawing.Point(16, 302); + this.label120.Name = "label120"; + this.label120.Size = new System.Drawing.Size(45, 13); + this.label120.TabIndex = 155; + this.label120.Text = "Volume:"; + // + // label121 + // + this.label121.AutoSize = true; + this.label121.Location = new System.Drawing.Point(1, 284); + this.label121.Name = "label121"; + this.label121.Size = new System.Drawing.Size(60, 13); + this.label121.TabIndex = 154; + this.label121.Text = "Ref. count:"; + // + // label122 + // + this.label122.AutoSize = true; + this.label122.Location = new System.Drawing.Point(23, 265); + this.label122.Name = "label122"; + this.label122.Size = new System.Drawing.Size(38, 13); + this.label122.TabIndex = 153; + this.label122.Text = "Count:"; + // + // ProcessTabPageCtrl48 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.SystemColors.Control; + this.Controls.Add(this.meter24Label); + this.Controls.Add(this.meter23Label); + this.Controls.Add(this.meter22Label); + this.Controls.Add(this.meter21Label); + this.Controls.Add(this.meter20Label); + this.Controls.Add(this.meter19Label); + this.Controls.Add(this.passed24Label); + this.Controls.Add(this.passed23Label); + this.Controls.Add(this.error24Label); + this.Controls.Add(this.passed22Label); + this.Controls.Add(this.error23Label); + this.Controls.Add(this.volume24Label); + this.Controls.Add(this.passed21Label); + this.Controls.Add(this.error22Label); + this.Controls.Add(this.volume23Label); + this.Controls.Add(this.passed20Label); + this.Controls.Add(this.refPulses24Label); + this.Controls.Add(this.error21Label); + this.Controls.Add(this.pulses24Label); + this.Controls.Add(this.sensor24Label); + this.Controls.Add(this.volume22Label); + this.Controls.Add(this.passed19Label); + this.Controls.Add(this.refPulses23Label); + this.Controls.Add(this.pulses23Label); + this.Controls.Add(this.error20Label); + this.Controls.Add(this.sensor23Label); + this.Controls.Add(this.volume21Label); + this.Controls.Add(this.refPulses22Label); + this.Controls.Add(this.pulses22Label); + this.Controls.Add(this.volume20Label); + this.Controls.Add(this.sensor22Label); + this.Controls.Add(this.error19Label); + this.Controls.Add(this.refPulses21Label); + this.Controls.Add(this.volume19Label); + this.Controls.Add(this.pulses21Label); + this.Controls.Add(this.sensor21Label); + this.Controls.Add(this.refPulses19Label); + this.Controls.Add(this.refPulses20Label); + this.Controls.Add(this.pulses20Label); + this.Controls.Add(this.pulses19Label); + this.Controls.Add(this.sensor20Label); + this.Controls.Add(this.sensor19Label); + this.Controls.Add(this.meter18Label); + this.Controls.Add(this.meter17Label); + this.Controls.Add(this.meter16Label); + this.Controls.Add(this.meter15Label); + this.Controls.Add(this.meter14Label); + this.Controls.Add(this.meter13Label); + this.Controls.Add(this.passed18Label); + this.Controls.Add(this.passed17Label); + this.Controls.Add(this.error18Label); + this.Controls.Add(this.passed16Label); + this.Controls.Add(this.error17Label); + this.Controls.Add(this.volume18Label); + this.Controls.Add(this.passed15Label); + this.Controls.Add(this.error16Label); + this.Controls.Add(this.volume17Label); + this.Controls.Add(this.passed14Label); + this.Controls.Add(this.refPulses18Label); + this.Controls.Add(this.error15Label); + this.Controls.Add(this.pulses18Label); + this.Controls.Add(this.sensor18Label); + this.Controls.Add(this.volume16Label); + this.Controls.Add(this.passed13Label); + this.Controls.Add(this.refPulses17Label); + this.Controls.Add(this.pulses17Label); + this.Controls.Add(this.error14Label); + this.Controls.Add(this.sensor17Label); + this.Controls.Add(this.volume15Label); + this.Controls.Add(this.refPulses16Label); + this.Controls.Add(this.label104); + this.Controls.Add(this.pulses16Label); + this.Controls.Add(this.volume14Label); + this.Controls.Add(this.sensor16Label); + this.Controls.Add(this.error13Label); + this.Controls.Add(this.refPulses15Label); + this.Controls.Add(this.volume13Label); + this.Controls.Add(this.pulses15Label); + this.Controls.Add(this.sensor15Label); + this.Controls.Add(this.refPulses13Label); + this.Controls.Add(this.refPulses14Label); + this.Controls.Add(this.pulses14Label); + this.Controls.Add(this.pulses13Label); + this.Controls.Add(this.sensor14Label); + this.Controls.Add(this.sensor13Label); + this.Controls.Add(this.label119); + this.Controls.Add(this.label120); + this.Controls.Add(this.label121); + this.Controls.Add(this.label122); + this.Controls.Add(this.meter12Label); + this.Controls.Add(this.meter11Label); + this.Controls.Add(this.meter10Label); + this.Controls.Add(this.meter9Label); + this.Controls.Add(this.meter8Label); + this.Controls.Add(this.meter7Label); + this.Controls.Add(this.passed12Label); + this.Controls.Add(this.passed11Label); + this.Controls.Add(this.error12Label); + this.Controls.Add(this.passed10Label); + this.Controls.Add(this.error11Label); + this.Controls.Add(this.volume12Label); + this.Controls.Add(this.passed9Label); + this.Controls.Add(this.error10Label); + this.Controls.Add(this.volume11Label); + this.Controls.Add(this.passed8Label); + this.Controls.Add(this.refPulses12Label); + this.Controls.Add(this.error9Label); + this.Controls.Add(this.pulses12Label); + this.Controls.Add(this.sensor12Label); + this.Controls.Add(this.volume10Label); + this.Controls.Add(this.passed7Label); + this.Controls.Add(this.refPulses11Label); + this.Controls.Add(this.pulses11Label); + this.Controls.Add(this.error8Label); + this.Controls.Add(this.sensor11Label); + this.Controls.Add(this.volume9Label); + this.Controls.Add(this.refPulses10Label); + this.Controls.Add(this.pulses10Label); + this.Controls.Add(this.volume8Label); + this.Controls.Add(this.sensor10Label); + this.Controls.Add(this.error7Label); + this.Controls.Add(this.refPulses9Label); + this.Controls.Add(this.volume7Label); + this.Controls.Add(this.pulses9Label); + this.Controls.Add(this.sensor9Label); + this.Controls.Add(this.refPulses7Label); + this.Controls.Add(this.refPulses8Label); + this.Controls.Add(this.pulses8Label); + this.Controls.Add(this.pulses7Label); + this.Controls.Add(this.sensor8Label); + this.Controls.Add(this.sensor7Label); + this.Controls.Add(this.meter6Label); + this.Controls.Add(this.meter5Label); + this.Controls.Add(this.meter4Label); + this.Controls.Add(this.meter3Label); + this.Controls.Add(this.meter2Label); + this.Controls.Add(this.meter1Label); + this.Controls.Add(this.passed6Label); + this.Controls.Add(this.passed5Label); + this.Controls.Add(this.error6Label); + this.Controls.Add(this.passed4Label); + this.Controls.Add(this.error5Label); + this.Controls.Add(this.volume6Label); + this.Controls.Add(this.passed3Label); + this.Controls.Add(this.error4Label); + this.Controls.Add(this.volume5Label); + this.Controls.Add(this.passed2Label); + this.Controls.Add(this.refPulses6Label); + this.Controls.Add(this.error3Label); + this.Controls.Add(this.pulses6Label); + this.Controls.Add(this.sensor6Label); + this.Controls.Add(this.volume4Label); + this.Controls.Add(this.passed1Label); + this.Controls.Add(this.refPulses5Label); + this.Controls.Add(this.pulses5Label); + this.Controls.Add(this.error2Label); + this.Controls.Add(this.sensor5Label); + this.Controls.Add(this.volume3Label); + this.Controls.Add(this.refPulses4Label); + this.Controls.Add(this.label35); + this.Controls.Add(this.pulses4Label); + this.Controls.Add(this.volume2Label); + this.Controls.Add(this.sensor4Label); + this.Controls.Add(this.error1Label); + this.Controls.Add(this.refPulses3Label); + this.Controls.Add(this.volume1Label); + this.Controls.Add(this.pulses3Label); + this.Controls.Add(this.pumpPctTextBox); + this.Controls.Add(this.sensor3Label); + this.Controls.Add(this.refPulses1Label); + this.Controls.Add(this.refPulses2Label); + this.Controls.Add(this.groupBox3z); + this.Controls.Add(this.pulses2Label); + this.Controls.Add(this.pulses1Label); + this.Controls.Add(this.sensor2Label); + this.Controls.Add(this.groupBox2z); + this.Controls.Add(this.sensor1Label); + this.Controls.Add(this.label4); + this.Controls.Add(this.groupBox1z); + this.Controls.Add(this.watermeterPictureBox3z); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.watermeterPictureBox2z); + this.Controls.Add(this.label1); + this.Controls.Add(this.watermeterPictureBox1z); + this.Controls.Add(this.pictureBox1); + this.Controls.Add(this.flowMeterPictureBox); + this.Controls.Add(this.watermeterPictureBox6); + this.Controls.Add(this.watermeterPictureBox5); + this.Controls.Add(this.watermeterPictureBox4); + this.Controls.Add(this.watermeterPictureBox3); + this.Controls.Add(this.watermeterPictureBox2); + this.Controls.Add(this.watermeterPictureBox1); + this.Controls.Add(this.pumpPictureBox); + this.Controls.Add(this.reservoirPictureBox); + this.Controls.Add(this.airHumiLabel); + this.Controls.Add(this.airPressLabel); + this.Controls.Add(this.airTempLabel); + this.Controls.Add(this.label34); + this.Controls.Add(this.label33); + this.Controls.Add(this.label32); + this.Controls.Add(this.estmtdTimeLabel); + this.Controls.Add(this.targetRefCountLabel); + this.Controls.Add(this.label31); + this.Controls.Add(this.targetVolumeLabel); + this.Controls.Add(this.targetFlowHighLabel); + this.Controls.Add(this.targetFlowLowLabel); + this.Controls.Add(this.label30); + this.Controls.Add(this.label20); + this.Controls.Add(this.label29); + this.Controls.Add(this.label28); + this.Controls.Add(this.refErrorLabel); + this.Controls.Add(this.label27); + this.Controls.Add(this.volumeCtvLabel); + this.Controls.Add(this.label26); + this.Controls.Add(this.refVolumeLabel); + this.Controls.Add(this.label25); + this.Controls.Add(this.massDiffLabel); + this.Controls.Add(this.label23); + this.Controls.Add(this.massLabel); + this.Controls.Add(this.label22); + this.Controls.Add(this.scaleCmpntLabel); + this.Controls.Add(this.tDivCmpntLabel); + this.Controls.Add(this.tDivLabel); + this.Controls.Add(this.label24); + this.Controls.Add(this.label21); + this.Controls.Add(this.regValvePosLabel); + this.Controls.Add(this.regValveCmpntLabel); + this.Controls.Add(this.refFlowCmpntLabel); + this.Controls.Add(this.refPulsesLabel); + this.Controls.Add(this.label19); + this.Controls.Add(this.refFreqLabel); + this.Controls.Add(this.label16); + this.Controls.Add(this.refFlowLabel); + this.Controls.Add(this.prInCmpntLabel); + this.Controls.Add(this.prOutCmpntLabel); + this.Controls.Add(this.tOutCmpntLabel); + this.Controls.Add(this.tInCmpntLabel); + this.Controls.Add(this.label15); + this.Controls.Add(this.prOutLabel); + this.Controls.Add(this.tOutLabel); + this.Controls.Add(this.label17); + this.Controls.Add(this.label18); + this.Controls.Add(this.prInLabel); + this.Controls.Add(this.tInLabel); + this.Controls.Add(this.label14); + this.Controls.Add(this.label13); + this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.Name = "ProcessTabPageCtrl48"; + this.Size = new System.Drawing.Size(1097, 682); + this.Load += new System.EventHandler(this.ProcessTabPageCtrl_Load); + this.Paint += new System.Windows.Forms.PaintEventHandler(this.ProcessTabPageCtrl_Paint); + ((System.ComponentModel.ISupportInitialize)(this.reservoirPictureBox)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pumpPictureBox)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox3)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.flowMeterPictureBox)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox1z)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox2z)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.watermeterPictureBox3z)).EndInit(); + this.groupBox1z.ResumeLayout(false); + this.groupBox1z.PerformLayout(); + this.groupBox2z.ResumeLayout(false); + this.groupBox2z.PerformLayout(); + this.groupBox3z.ResumeLayout(false); + this.groupBox3z.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label sensor1Label; + private System.Windows.Forms.Label pulses1Label; + private System.Windows.Forms.Label refPulses1Label; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label volume1Label; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label error1Label; + private System.Windows.Forms.Label passed1Label; + private System.Windows.Forms.Label passed2Label; + private System.Windows.Forms.Label error2Label; + private System.Windows.Forms.Label volume2Label; + private System.Windows.Forms.Label refPulses2Label; + private System.Windows.Forms.Label pulses2Label; + private System.Windows.Forms.Label sensor2Label; + private System.Windows.Forms.Label passed3Label; + private System.Windows.Forms.Label error3Label; + private System.Windows.Forms.Label volume3Label; + private System.Windows.Forms.Label refPulses3Label; + private System.Windows.Forms.Label pulses3Label; + private System.Windows.Forms.Label sensor3Label; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Label tInLabel; + private System.Windows.Forms.Label prInLabel; + private System.Windows.Forms.Label prOutLabel; + private System.Windows.Forms.Label tOutLabel; + private System.Windows.Forms.Label label17; + private System.Windows.Forms.Label label18; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label tInCmpntLabel; + private System.Windows.Forms.Label tOutCmpntLabel; + private System.Windows.Forms.Label prOutCmpntLabel; + private System.Windows.Forms.Label prInCmpntLabel; + private System.Windows.Forms.Label refFlowLabel; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label refFreqLabel; + private System.Windows.Forms.Label label19; + private System.Windows.Forms.Label refPulsesLabel; + private System.Windows.Forms.Label refFlowCmpntLabel; + private System.Windows.Forms.Label regValveCmpntLabel; + private System.Windows.Forms.Label regValvePosLabel; + private System.Windows.Forms.Label label21; + private System.Windows.Forms.Label tDivCmpntLabel; + private System.Windows.Forms.Label tDivLabel; + private System.Windows.Forms.Label label24; + private System.Windows.Forms.Label scaleCmpntLabel; + private System.Windows.Forms.Label label22; + private System.Windows.Forms.Label massLabel; + private System.Windows.Forms.Label label23; + private System.Windows.Forms.Label massDiffLabel; + private System.Windows.Forms.Label label25; + private System.Windows.Forms.Label refVolumeLabel; + private System.Windows.Forms.Label label26; + private System.Windows.Forms.Label volumeCtvLabel; + private System.Windows.Forms.Label label27; + private System.Windows.Forms.Label refErrorLabel; + private System.Windows.Forms.Label label28; + private System.Windows.Forms.Label label29; + private System.Windows.Forms.Label label20; + private System.Windows.Forms.Label label30; + private System.Windows.Forms.Label targetFlowLowLabel; + private System.Windows.Forms.Label targetFlowHighLabel; + private System.Windows.Forms.Label targetVolumeLabel; + private System.Windows.Forms.Label label31; + private System.Windows.Forms.Label targetRefCountLabel; + private System.Windows.Forms.Label estmtdTimeLabel; + private System.Windows.Forms.Label label32; + private System.Windows.Forms.Label label33; + private System.Windows.Forms.Label label34; + private System.Windows.Forms.Label airTempLabel; + private System.Windows.Forms.Label airPressLabel; + private System.Windows.Forms.Label airHumiLabel; + private System.Windows.Forms.PictureBox reservoirPictureBox; + private System.Windows.Forms.PictureBox pumpPictureBox; + private System.Windows.Forms.PictureBox watermeterPictureBox1; + private System.Windows.Forms.PictureBox watermeterPictureBox2; + private System.Windows.Forms.PictureBox watermeterPictureBox3; + private System.Windows.Forms.PictureBox watermeterPictureBox4; + private System.Windows.Forms.Label passed4Label; + private System.Windows.Forms.Label error4Label; + private System.Windows.Forms.Label volume4Label; + private System.Windows.Forms.Label refPulses4Label; + private System.Windows.Forms.Label pulses4Label; + private System.Windows.Forms.Label sensor4Label; + private System.Windows.Forms.PictureBox watermeterPictureBox5; + private System.Windows.Forms.Label passed5Label; + private System.Windows.Forms.Label error5Label; + private System.Windows.Forms.Label volume5Label; + private System.Windows.Forms.Label refPulses5Label; + private System.Windows.Forms.Label pulses5Label; + private System.Windows.Forms.Label sensor5Label; + private System.Windows.Forms.Label label35; + private System.Windows.Forms.PictureBox watermeterPictureBox6; + private System.Windows.Forms.Label passed6Label; + private System.Windows.Forms.Label error6Label; + private System.Windows.Forms.Label volume6Label; + private System.Windows.Forms.Label refPulses6Label; + private System.Windows.Forms.Label pulses6Label; + private System.Windows.Forms.Label sensor6Label; + private System.Windows.Forms.PictureBox flowMeterPictureBox; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.PictureBox watermeterPictureBox1z; + private System.Windows.Forms.PictureBox watermeterPictureBox2z; + private System.Windows.Forms.PictureBox watermeterPictureBox3z; + private System.Windows.Forms.GroupBox groupBox1z; + private System.Windows.Forms.Label passed1zLabel; + private System.Windows.Forms.Label error1zLabel; + private System.Windows.Forms.Label label56; + private System.Windows.Forms.Label volume1zLabel; + private System.Windows.Forms.Label label58; + private System.Windows.Forms.GroupBox groupBox2z; + private System.Windows.Forms.Label passed2zLabel; + private System.Windows.Forms.Label error2zLabel; + private System.Windows.Forms.Label label52; + private System.Windows.Forms.Label volume2zLabel; + private System.Windows.Forms.Label label59; + private System.Windows.Forms.GroupBox groupBox3z; + private System.Windows.Forms.Label passed3zLabel; + private System.Windows.Forms.Label error3zLabel; + private System.Windows.Forms.Label label57; + private System.Windows.Forms.Label volume3zLabel; + private System.Windows.Forms.Label label61; + private System.Windows.Forms.TextBox pumpPctTextBox; + private System.Windows.Forms.Label meter1Label; + private System.Windows.Forms.Label meter2Label; + private System.Windows.Forms.Label meter3Label; + private System.Windows.Forms.Label meter4Label; + private System.Windows.Forms.Label meter5Label; + private System.Windows.Forms.Label meter6Label; + private System.Windows.Forms.Label meter12Label; + private System.Windows.Forms.Label meter11Label; + private System.Windows.Forms.Label meter10Label; + private System.Windows.Forms.Label meter9Label; + private System.Windows.Forms.Label meter8Label; + private System.Windows.Forms.Label meter7Label; + private System.Windows.Forms.Label passed12Label; + private System.Windows.Forms.Label passed11Label; + private System.Windows.Forms.Label error12Label; + private System.Windows.Forms.Label passed10Label; + private System.Windows.Forms.Label error11Label; + private System.Windows.Forms.Label volume12Label; + private System.Windows.Forms.Label passed9Label; + private System.Windows.Forms.Label error10Label; + private System.Windows.Forms.Label volume11Label; + private System.Windows.Forms.Label passed8Label; + private System.Windows.Forms.Label refPulses12Label; + private System.Windows.Forms.Label error9Label; + private System.Windows.Forms.Label pulses12Label; + private System.Windows.Forms.Label sensor12Label; + private System.Windows.Forms.Label volume10Label; + private System.Windows.Forms.Label passed7Label; + private System.Windows.Forms.Label refPulses11Label; + private System.Windows.Forms.Label pulses11Label; + private System.Windows.Forms.Label error8Label; + private System.Windows.Forms.Label sensor11Label; + private System.Windows.Forms.Label volume9Label; + private System.Windows.Forms.Label refPulses10Label; + private System.Windows.Forms.Label pulses10Label; + private System.Windows.Forms.Label volume8Label; + private System.Windows.Forms.Label sensor10Label; + private System.Windows.Forms.Label error7Label; + private System.Windows.Forms.Label refPulses9Label; + private System.Windows.Forms.Label volume7Label; + private System.Windows.Forms.Label pulses9Label; + private System.Windows.Forms.Label sensor9Label; + private System.Windows.Forms.Label refPulses7Label; + private System.Windows.Forms.Label refPulses8Label; + private System.Windows.Forms.Label pulses8Label; + private System.Windows.Forms.Label pulses7Label; + private System.Windows.Forms.Label sensor8Label; + private System.Windows.Forms.Label sensor7Label; + private System.Windows.Forms.Label meter24Label; + private System.Windows.Forms.Label meter23Label; + private System.Windows.Forms.Label meter22Label; + private System.Windows.Forms.Label meter21Label; + private System.Windows.Forms.Label meter20Label; + private System.Windows.Forms.Label meter19Label; + private System.Windows.Forms.Label passed24Label; + private System.Windows.Forms.Label passed23Label; + private System.Windows.Forms.Label error24Label; + private System.Windows.Forms.Label passed22Label; + private System.Windows.Forms.Label error23Label; + private System.Windows.Forms.Label volume24Label; + private System.Windows.Forms.Label passed21Label; + private System.Windows.Forms.Label error22Label; + private System.Windows.Forms.Label volume23Label; + private System.Windows.Forms.Label passed20Label; + private System.Windows.Forms.Label refPulses24Label; + private System.Windows.Forms.Label error21Label; + private System.Windows.Forms.Label pulses24Label; + private System.Windows.Forms.Label sensor24Label; + private System.Windows.Forms.Label volume22Label; + private System.Windows.Forms.Label passed19Label; + private System.Windows.Forms.Label refPulses23Label; + private System.Windows.Forms.Label pulses23Label; + private System.Windows.Forms.Label error20Label; + private System.Windows.Forms.Label sensor23Label; + private System.Windows.Forms.Label volume21Label; + private System.Windows.Forms.Label refPulses22Label; + private System.Windows.Forms.Label pulses22Label; + private System.Windows.Forms.Label volume20Label; + private System.Windows.Forms.Label sensor22Label; + private System.Windows.Forms.Label error19Label; + private System.Windows.Forms.Label refPulses21Label; + private System.Windows.Forms.Label volume19Label; + private System.Windows.Forms.Label pulses21Label; + private System.Windows.Forms.Label sensor21Label; + private System.Windows.Forms.Label refPulses19Label; + private System.Windows.Forms.Label refPulses20Label; + private System.Windows.Forms.Label pulses20Label; + private System.Windows.Forms.Label pulses19Label; + private System.Windows.Forms.Label sensor20Label; + private System.Windows.Forms.Label sensor19Label; + private System.Windows.Forms.Label meter18Label; + private System.Windows.Forms.Label meter17Label; + private System.Windows.Forms.Label meter16Label; + private System.Windows.Forms.Label meter15Label; + private System.Windows.Forms.Label meter14Label; + private System.Windows.Forms.Label meter13Label; + private System.Windows.Forms.Label passed18Label; + private System.Windows.Forms.Label passed17Label; + private System.Windows.Forms.Label error18Label; + private System.Windows.Forms.Label passed16Label; + private System.Windows.Forms.Label error17Label; + private System.Windows.Forms.Label volume18Label; + private System.Windows.Forms.Label passed15Label; + private System.Windows.Forms.Label error16Label; + private System.Windows.Forms.Label volume17Label; + private System.Windows.Forms.Label passed14Label; + private System.Windows.Forms.Label refPulses18Label; + private System.Windows.Forms.Label error15Label; + private System.Windows.Forms.Label pulses18Label; + private System.Windows.Forms.Label sensor18Label; + private System.Windows.Forms.Label volume16Label; + private System.Windows.Forms.Label passed13Label; + private System.Windows.Forms.Label refPulses17Label; + private System.Windows.Forms.Label pulses17Label; + private System.Windows.Forms.Label error14Label; + private System.Windows.Forms.Label sensor17Label; + private System.Windows.Forms.Label volume15Label; + private System.Windows.Forms.Label refPulses16Label; + private System.Windows.Forms.Label label104; + private System.Windows.Forms.Label pulses16Label; + private System.Windows.Forms.Label volume14Label; + private System.Windows.Forms.Label sensor16Label; + private System.Windows.Forms.Label error13Label; + private System.Windows.Forms.Label refPulses15Label; + private System.Windows.Forms.Label volume13Label; + private System.Windows.Forms.Label pulses15Label; + private System.Windows.Forms.Label sensor15Label; + private System.Windows.Forms.Label refPulses13Label; + private System.Windows.Forms.Label refPulses14Label; + private System.Windows.Forms.Label pulses14Label; + private System.Windows.Forms.Label pulses13Label; + private System.Windows.Forms.Label sensor14Label; + private System.Windows.Forms.Label sensor13Label; + private System.Windows.Forms.Label label119; + private System.Windows.Forms.Label label120; + private System.Windows.Forms.Label label121; + private System.Windows.Forms.Label label122; + + + } +} diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl48.cs b/TestBenchFramework/Screens/ProcessTabPageCtrl48.cs new file mode 100644 index 000000000..c158bf706 --- /dev/null +++ b/TestBenchFramework/Screens/ProcessTabPageCtrl48.cs @@ -0,0 +1,577 @@ +/// +/// Copyright (c) 2015 Sensus Metering Systems +/// Author: Milan Hanajík +/// +using System; +using System.Drawing; +using System.Windows.Forms; +using log4net; +using TBF.UiBridge; +using TBF.Resources; + +#pragma warning disable 162 /// Disables 'Unreachable code detected' warning + +namespace TBF.Screens +{ + public partial class ProcessTabPageCtrl48 : UserControl + { + static readonly ILog log = LogManager.GetLogger(typeof(ProcessTabPageCtrl48)); + + Entities.MetersKind currentMetersKind; + + int textBoxesCount; + + Label[] meter; + Label[] sensor; + Label[] pulses; + Label[] refPulses; + Label[] volume; + Label[] error; + Label[] passed; + + bool pumpOn = true; + bool diverterToTank = true; + + /// + /// Constructor, initializes anonymous event handlers + /// + public ProcessTabPageCtrl48() + { + currentMetersKind = Entities.MetersKind.Single; + + InitializeComponent(); + + textBoxesCount = 24; + meter = new Label[] { + meter1Label, meter2Label, meter3Label, meter4Label, meter5Label, meter6Label, + meter7Label, meter8Label, meter9Label, meter10Label, meter11Label, meter12Label, + meter13Label, meter14Label, meter15Label, meter16Label, meter17Label, meter18Label, + meter19Label, meter20Label, meter21Label, meter22Label, meter23Label, meter24Label, + }; + sensor = new Label[] { + sensor1Label, sensor2Label, sensor3Label, sensor4Label, sensor5Label, sensor6Label, + sensor7Label, sensor8Label, sensor9Label, sensor10Label, sensor11Label, sensor12Label, + sensor13Label, sensor14Label, sensor15Label, sensor16Label, sensor17Label, sensor18Label, + sensor19Label, sensor20Label, sensor21Label, sensor22Label, sensor23Label, sensor24Label, + }; + pulses = new Label[] { + pulses1Label, pulses2Label, pulses3Label, pulses4Label, pulses5Label, pulses6Label, + pulses7Label, pulses8Label, pulses9Label, pulses10Label, pulses11Label, pulses12Label, + pulses13Label, pulses14Label, pulses15Label, pulses16Label, pulses17Label, pulses18Label, + pulses19Label, pulses20Label, pulses21Label, pulses22Label, pulses23Label, pulses24Label, + }; + refPulses = new Label[] { + refPulses1Label, refPulses2Label, refPulses3Label, refPulses4Label, refPulses5Label, refPulses6Label, + refPulses7Label, refPulses8Label, refPulses9Label, refPulses10Label, refPulses11Label, refPulses12Label, + refPulses13Label, refPulses14Label, refPulses15Label, refPulses16Label, refPulses17Label, refPulses18Label, + refPulses19Label, refPulses20Label, refPulses21Label, refPulses22Label, refPulses23Label, refPulses24Label, + }; + volume = new Label[] { + volume1Label, volume2Label, volume3Label, volume4Label, volume5Label, volume6Label, + volume7Label, volume8Label, volume9Label, volume10Label, volume11Label, volume12Label, + volume13Label, volume14Label, volume15Label, volume16Label, volume17Label, volume18Label, + volume19Label, volume20Label, volume21Label, volume22Label, volume23Label, volume24Label, + }; + error = new Label[] { + error1Label, error2Label, error3Label, error4Label, error5Label, error6Label, + error7Label, error8Label, error9Label, error10Label, error11Label, error12Label, + error13Label, error14Label, error15Label, error16Label, error17Label, error18Label, + error19Label, error20Label, error21Label, error22Label, error23Label, error24Label, + }; + passed = new Label[] { + passed1Label, passed2Label, passed3Label, passed4Label, passed5Label, passed6Label, + passed7Label, passed8Label, passed9Label, passed10Label, passed11Label, passed12Label, + passed13Label, passed14Label, passed15Label, passed16Label, passed17Label, passed18Label, + passed19Label, passed20Label, passed21Label, passed22Label, passed23Label, passed24Label, + }; + ShuffleLabels(Program.WMsCount, Program.LineSize); + + Bridge.ProcedureSelectedHandler += delegate(object sndr, ProcedureSelectedEventArgs args) + { + if (InvokeRequired) + Invoke(new EventHandler(OnProcedureSelected), sndr, args); + else + OnProcedureSelected(sndr, args); + }; + Bridge.TestSelectedHandler += delegate(object sender, TestSelectedEventArgs args) + { + if (InvokeRequired) + Invoke(new EventHandler(OnTestSelected), sender, args); + else + OnTestSelected(sender, args); + }; + Bridge.TestProgressHandler += delegate(object sender, TestProgressEventArgs args) + { + if (InvokeRequired) + Invoke(new EventHandler(OnTestProgress), sender, args); + else + OnTestProgress(sender, args); + }; + Bridge.TestCompletedHandler += delegate(object sender, TestCompletedEventArgs args) + { + if (InvokeRequired) + Invoke(new EventHandler(OnTestCompleted), sender, args); + else + OnTestCompleted(sender, args); + }; + Bridge.ProcedureCompletedHandler += delegate(object sender, ProcedureCompletedEventArgs args) + { + if (InvokeRequired) + Invoke(new EventHandler(OnProcedureCompleted), sender, args); + else + OnProcedureCompleted(sender, args); + }; + } + + /// + /// Make sure the layout of labels/text boxes on the screen + /// corresponds to the layout of watermeters of the test bench. + /// Enable only used labels. + /// + /// Number of watermeters + /// Number of watermeters in one line + void ShuffleLabels(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++) + { + meter[dest] = meter[l * lineSize + l * gap + i]; + meter[dest].Visible = true; + meter[dest].Text = string.Format("Meter {0}", dest + 1); + sensor[dest] = sensor[l * lineSize + l * gap + i]; + sensor[dest].Visible = true; + pulses[dest] = pulses[l * lineSize + l * gap + i]; + pulses[dest].Visible = true; + refPulses[dest] = refPulses[l * lineSize + l * gap + i]; + refPulses[dest].Visible = true; + volume[dest] = volume[l * lineSize + l * gap + i]; + volume[dest].Visible = true; + error[dest] = error[l * lineSize + l * gap + i]; + error[dest].Visible = true; + passed[dest] = passed[l * lineSize + l * gap + i]; + passed[dest].Visible = true; + dest++; + } + } + textBoxesCount = wmsCount; + } + } + + private void ProcessTabPageCtrl_Load(object sender, EventArgs e) + { + Once(); + ResetLabelsAndTargetVals(); + ResetReadings(); + } + + void Once() + { + + } + + void UpdateVisibility(Entities.MetersKind metersKind) + { + bool visible = (metersKind == Entities.MetersKind.Single); + + for (int i = 2 * Program.CompoundWMsCount; i < textBoxesCount; i++) + { + meter[i].Visible = visible; + sensor[i].Visible = visible; + pulses[i].Visible = visible; + refPulses[i].Visible = visible; + volume[i].Visible = visible; + error[i].Visible = visible; + passed[i].Visible = visible; + } + + groupBox1z.Visible = (metersKind == Entities.MetersKind.Combined) && (Program.CompoundWMsCount >= 1); + groupBox2z.Visible = (metersKind == Entities.MetersKind.Combined) && (Program.CompoundWMsCount >= 2); + groupBox3z.Visible = (metersKind == Entities.MetersKind.Combined) && (Program.CompoundWMsCount >= 3); + } + + + /// + /// Called when a new procedure is selected + /// + void ResetLabelsAndTargetVals() + { + /// Target values + targetFlowLowLabel.Text = "---"; + targetFlowHighLabel.Text = "---"; + targetVolumeLabel.Text = "---"; + targetRefCountLabel.Text = "---"; + estmtdTimeLabel.Text = "---"; + + // + refFlowCmpntLabel.Text = "---"; + regValveCmpntLabel.Text = "---"; + + /// Water pressure + prInCmpntLabel.Text = "---"; + prOutCmpntLabel.Text = "---"; + + /// Water temperature + tInCmpntLabel.Text = "---"; + tOutCmpntLabel.Text = "---"; + tDivCmpntLabel.Text = "---"; + + scaleCmpntLabel.Text = "---"; + + if (currentMetersKind == Entities.MetersKind.Single) + { + watermeterPictureBox1.Visible = true; + watermeterPictureBox2.Visible = true; + watermeterPictureBox3.Visible = true; + watermeterPictureBox4.Visible = true; + watermeterPictureBox5.Visible = true; + watermeterPictureBox6.Visible = true; + + watermeterPictureBox1z.Visible = false; + watermeterPictureBox2z.Visible = false; + watermeterPictureBox3z.Visible = false; + + groupBox1z.Visible = false; + groupBox2z.Visible = false; + groupBox3z.Visible = false; + + sensor1Label.Text = "---"; + + for (int i = 0; i < textBoxesCount; i++) + { + sensor[i].Text = "---"; + } + } + else if (currentMetersKind == Entities.MetersKind.Combined) + { + watermeterPictureBox1.Visible = false; + watermeterPictureBox2.Visible = true; + watermeterPictureBox3.Visible = false; + watermeterPictureBox4.Visible = false; + watermeterPictureBox5.Visible = false; + watermeterPictureBox6.Visible = false; + + watermeterPictureBox1z.Visible = true; + watermeterPictureBox2z.Visible = false; + watermeterPictureBox3z.Visible = false; + + groupBox1z.Visible = true; + groupBox2z.Visible = false; + groupBox3z.Visible = false; + + sensor1Label.Visible = true; + sensor1Label.Text = "---"; + sensor2Label.Visible = true; + sensor2Label.Text = "---"; + } + } + + /// + /// Called when a new procedure or a new test procedure is selected + /// + void ResetReadings() + { + /// Top part + airTempLabel.Text = "---"; + airPressLabel.Text = "---"; + airHumiLabel.Text = "---"; + + refPulsesLabel.Text = "---"; + refFreqLabel.Text = "---"; + refFlowLabel.Text = "---"; + refVolumeLabel.Text = "---"; + + regValvePosLabel.Text = "---"; + tDivLabel.Text = "---"; + + tInLabel.Text = "---"; + tOutLabel.Text = "---"; + prInLabel.Text = "---"; + prOutLabel.Text = "---"; + + massLabel.Text = "---"; + massDiffLabel.Text = "---"; + volumeCtvLabel.Text = "---"; + refErrorLabel.Text = "---"; + + /// Meters + pulses1Label.Text = "---"; + refPulses1Label.Text = "---"; + volume1Label.Text = "---"; + error1Label.Text = "---"; + passed1Label.Text = "---"; + + if (currentMetersKind == Entities.MetersKind.Single) + { + for (int i = 0; i < textBoxesCount; i++) + { + pulses[i].Text = "---"; + refPulses[i].Text = "---"; + volume[i].Text = "---"; + error[i].Text = "---"; + passed[i].Text = "---"; + } + } + else if (currentMetersKind == Entities.MetersKind.Combined) + { + for (int i = 0; i < 2; i++) + { + pulses[i].Text = "---"; + refPulses[i].Text = "---"; + volume[i].Text = "---"; + error[i].Text = "---"; + passed[i].Text = "---"; + } + volume1zLabel.Text = "---"; + error1zLabel.Text = "---"; + passed1zLabel.Text = "---"; + } + } + + void OnProcedureSelected(object sender, ProcedureSelectedEventArgs args) + { + currentMetersKind = args.Procedure.MetersKind; + UpdateVisibility(currentMetersKind); + ResetLabelsAndTargetVals(); + ResetReadings(); + Invalidate(); + } + + void OnTestSelected(object sender, TestSelectedEventArgs args) + { + /// Readings and target values + ResetReadings(); + + /// Target values + targetFlowLowLabel.Text = args.Test.Qfrom.ToString("F3"); + targetFlowHighLabel.Text = args.Test.Qto.ToString("F3"); + targetVolumeLabel.Text = args.Test.Volume.ToString("F1"); + targetRefCountLabel.Text = args.TotalPulses.ToString(); + estmtdTimeLabel.Text = args.Test.TstTime.ToString("F1"); + + /// Names of virtual bench components + if (args.BenchPath.PressIn != null) prInCmpntLabel.Text = args.BenchPath.PressIn.Name; + if (args.BenchPath.PressOut != null) prOutCmpntLabel.Text = args.BenchPath.PressOut.Name; + if (args.BenchPath.TempIn != null) tInCmpntLabel.Text = args.BenchPath.TempIn.Name; + if (args.BenchPath.TempOut != null) tOutCmpntLabel.Text = args.BenchPath.TempOut.Name; + if (args.OutputPath.TempDiv != null) tDivCmpntLabel.Text = args.OutputPath.TempDiv.Name; + if (args.OutputPath.FlowMeter != null) refFlowCmpntLabel.Text = args.OutputPath.FlowMeter.Name; + if (args.OutputPath.RegulValve != null) regValveCmpntLabel.Text = args.OutputPath.RegulValve.Name; + if (args.OutputPath.Balance != null) scaleCmpntLabel.Text = args.OutputPath.Balance.Name; + + for (int i = 0; i < textBoxesCount; i++) + { + sensor[i].Text = (args.MetersPath.RegisterReaders[i] == null) ? "" : args.MetersPath.RegisterReaders[i].Cfg.Name; + } + + if (args.FeedingPath != null && (args.FeedingPath.Pump is BenchControl.GenericDevices.IPumpFM)) + { + pumpPctTextBox.Visible = true; + pumpPctTextBox.Text = (args.FeedingPath.Pump as BenchControl.GenericDevices.IPumpFM).Power.ToString("F0") + " %"; + } + else + { + pumpPctTextBox.Visible = false; + } + } + + void OnTestProgress(object sender, TestProgressEventArgs args) + { + /// Top part + airTempLabel.Text = args.AmbientTemp.ToString(); + airPressLabel.Text = args.AmbientPressure.ToString(); + airHumiLabel.Text = args.AmbientHumidity.ToString(); + + refPulsesLabel.Text = args.RefPulses.ToString(); + refFreqLabel.Text = args.FlowMtrFreq.ToString(); + refFlowLabel.Text = Utils.FloatToStr(args.Flow.Val, 4); + refVolumeLabel.Text = args.Volume.ToString(); + + //regValvePosLabel.Text = args.RegValvePos.ToString(); + tDivLabel.Text = args.Tdiv.ToString(); + + /// Bottom part + if (currentMetersKind == Entities.MetersKind.Single) + { + for (int i = 0; i < textBoxesCount; i++) + { + pulses[i].Text = args.TestResult.Meters[i].PulsesMeter.ToString(); + refPulses[i].Text = args.TestResult.Meters[i].PulsesMaster.ToString(); + volume[i].Text = args.TestResult.Meters[i].VolumeMeter.ToString(); + error[i].Text = args.TestResult.Meters[i].VolumeErrorPct.ToString(); + } + } + else if (currentMetersKind == Entities.MetersKind.Combined) + { + for (int i = 0; i < 2; i++) + { + pulses[i].Text = args.TestResult.Meters[i].PulsesMeter.ToString(); + refPulses[i].Text = args.TestResult.Meters[i].PulsesMaster.ToString(); + volume[i].Text = args.TestResult.Meters[i].VolumeMeter.ToString(); + error[i].Text = args.TestResult.Meters[i].VolumeErrorPct.ToString(); + } + volume1zLabel.Text = args.TestResult.CombinedMeters[0].VolumeMeter.ToString(); + error1zLabel.Text = args.TestResult.CombinedMeters[0].VolumeErrorPct.ToString(); + } + + tInLabel.Text = args.Tin.ToString(); + tOutLabel.Text = args.Tout.ToString(); + prInLabel.Text = args.Pin.ToString(); + prOutLabel.Text = args.Pout.ToString(); + + massLabel.Text = args.Mass.ToString(); + + if (args.Mass.Valid && args.StartMass.Valid) + { + massDiffLabel.Text = (args.Mass.Val - args.StartMass.Val).ToString(args.Mass.Format); + } + + if (pumpOn != args.PumpOn || diverterToTank != args.DivToTank) + { + //if (pumpOn != args.PumpOn) + //{ + // if (pumpOn) pumpPictureBox.Image = System.Resources. + // else pumpPictureBox.Image = System.Resources. + //} + pumpOn = args.PumpOn; + diverterToTank = args.DivToTank; + Invalidate(); + } + } + + void OnTestCompleted(object sender, TestCompletedEventArgs args) + { + Entities.TestResult tRes = args.TestResult; + + tInLabel.Text = tRes.TempInAvrg.ToString("F2"); + tOutLabel.Text = tRes.TempOutAvrg.ToString("F2"); + tDivLabel.Text = tRes.TempDivAvrg.ToString("F2"); + prInLabel.Text = tRes.PressInAvrg.ToString("F1"); + prOutLabel.Text = tRes.PressOutAvrg.ToString("F1"); + airTempLabel.Text = tRes.AmbientTempAve.ToString("F1"); + airPressLabel.Text = tRes.AmbientPressAve.ToString("F1"); + airHumiLabel.Text = tRes.AmbientHumiAve.ToString("F1"); + + refPulsesLabel.Text = tRes.PulsesMaster.ToString("F0"); + //refFreqLabel.Text = tstRslt. + refFlowLabel.Text = Utils.FloatToStr(tRes.FlowMass / 1000.0f, 4); + + refVolumeLabel.Text = tRes.VolumeCTV.ToString("F2"); + //regValvePosLabel.Text = tstRslt. + //massLabel.Text = tstRslt. + + volumeCtvLabel.Text = args.TestResult.VolumeCTV.ToString("F1"); + refErrorLabel.Text = (tRes.ErrorMaster == 0) ? "---" : tRes.ErrorMaster.ToString("F2"); + + if (tRes.MetersKind == Entities.MetersKind.Single) + { + for (int i = 0; i < textBoxesCount; i++) + { + pulses[i].Text = tRes.Meters[i].PulsesMeter.ToString("F0"); + refPulses[i].Text = tRes.Meters[i].PulsesMaster.ToString("F0"); + volume[i].Text = tRes.Meters[i].VolumeMeter.ToString("F2"); + error[i].Text = tRes.Meters[i].VolumeErrorPct.ToString("F2"); + passed[i].Text = tRes.Meters[i].Passed ? Strings.Passed : Strings.Failed; + } + } + else if (tRes.MetersKind == Entities.MetersKind.Combined) + { + pulses1Label.Text = tRes.Meters[0].PulsesMeter.ToString("F0"); + pulses2Label.Text = tRes.Meters[1].PulsesMeter.ToString("F0"); + //pulses1zLabel.Text = tRes.CombinedMeters[0].PulsesMeter.ToString("F0"); + refPulses1Label.Text = tRes.Meters[0].PulsesMaster.ToString("F0"); + refPulses2Label.Text = tRes.Meters[1].PulsesMaster.ToString("F0"); + //refPulses1zLabel.Text = tRes.CombinedMeters[0].PulsesMaster.ToString("F0"); + volume1Label.Text = tRes.Meters[0].VolumeMeter.ToString("F2"); + volume2Label.Text = tRes.Meters[1].VolumeMeter.ToString("F2"); + volume1zLabel.Text = tRes.CombinedMeters[0].VolumeMeter.ToString("F2"); + error1Label.Text = tRes.Meters[0].VolumeErrorPct.ToString("F2"); + error2Label.Text = tRes.Meters[1].VolumeErrorPct.ToString("F2"); + error1zLabel.Text = tRes.CombinedMeters[0].VolumeErrorPct.ToString("F2"); + passed1Label.Text = tRes.Meters[0].Passed ? Strings.Passed : Strings.Failed; + passed2Label.Text = tRes.Meters[1].Passed ? Strings.Passed : Strings.Failed; + passed1zLabel.Text = tRes.CombinedMeters[0].Passed ? Strings.Passed : Strings.Failed; + } + } + + void OnProcedureCompleted(object sender, ProcedureCompletedEventArgs args) + { + } + + private void ProcessTabPageCtrl_Paint(object sender, PaintEventArgs e) + { + System.Drawing.Graphics formGraphics = this.CreateGraphics(); + + System.Drawing.SolidBrush filledBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Blue); + System.Drawing.SolidBrush emptyBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Gray); + System.Drawing.SolidBrush benchBrush = (pumpOn ? filledBrush : emptyBrush); + + int diam = 14; // pipe diameter (pixels) + int left = 20; // left-most pipe x-coordinate + int top = 14; // top-most pipe y-coordinate + int topLeft = 876; + int topRight = 966; + int divTop = 40; + int bottom = 504; // bottom-most pipe y-coordinate + int benchTop = 378; // bench-pipe top y-coordinate + int pumpLeft = 779; + int pumpWdth = 38; + + /// Pipes + formGraphics.FillRectangle(filledBrush,new Rectangle(pumpLeft+pumpWdth, bottom-diam, 65, diam)); // tank -> pump + formGraphics.FillRectangle(benchBrush, new Rectangle(left, bottom-diam, pumpLeft-left, diam)); // pump ->bench horizontal + formGraphics.FillRectangle(benchBrush, new Rectangle(left, benchTop, diam, bottom-benchTop)); // ->bench vertical + formGraphics.FillRectangle(benchBrush, new Rectangle(left + diam, benchTop, topLeft-left, diam)); // bench horizontal + formGraphics.FillRectangle(benchBrush, new Rectangle(topLeft, top + diam, diam, benchTop-top-diam)); // bench -> top vertical + formGraphics.FillRectangle(benchBrush, new Rectangle(topLeft, top, topRight-topLeft, diam)); // top horizontal + formGraphics.FillRectangle(benchBrush, new Rectangle(topRight-diam, top+diam, diam, divTop-top-diam)); // top -> diverter vertical + + /// Combined meters bypasses + if (watermeterPictureBox1z.Visible) PaintBypass(formGraphics, benchBrush, 186, benchTop + diam); + if (watermeterPictureBox2z.Visible) PaintBypass(formGraphics, benchBrush, 470, benchTop + diam); + if (watermeterPictureBox3z.Visible) PaintBypass(formGraphics, benchBrush, 754, benchTop + diam); + + /// Diverter + int displacement = diverterToTank ? 25 : -25; + Point[] points = new Point[4]; + points[0].X = topRight - diam; + points[0].Y = divTop; + points[1].X = topRight; + points[1].Y = divTop; + points[2].X = topRight + displacement; + points[2].Y = divTop + 50; + points[3].X = topRight - diam + displacement; + points[3].Y = divTop + 50; + formGraphics.FillPolygon(benchBrush, points); + + /// Sink + formGraphics.FillEllipse(emptyBrush, topRight - diam / 2 - 45, divTop + 50, 40, 30); + formGraphics.DrawEllipse(Pens.Black, topRight - diam / 2 - 45, divTop + 50, 40, 30); + + /// Tank + formGraphics.DrawRectangle(Pens.Black, topRight - diam / 2, divTop + 51, 60, 80); + + + emptyBrush.Dispose(); + filledBrush.Dispose(); + formGraphics.Dispose(); + } + + private void PaintBypass(System.Drawing.Graphics formGraphics, System.Drawing.SolidBrush brush, int startX, int startY) + { + int w = 80; + int h = 43; + int diam = 10; // pipe diameter (pixels) + + formGraphics.FillRectangle(brush, new Rectangle(startX, startY, diam, h - diam)); + formGraphics.FillRectangle(brush, new Rectangle(startX, startY + h - diam, w, diam)); + formGraphics.FillRectangle(brush, new Rectangle(startX + w - diam, startY, diam, h)); + } + } +} diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl48.resx b/TestBenchFramework/Screens/ProcessTabPageCtrl48.resx new file mode 100644 index 000000000..23c643642 --- /dev/null +++ b/TestBenchFramework/Screens/ProcessTabPageCtrl48.resx @@ -0,0 +1,333 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + + iVBORw0KGgoAAAANSUhEUgAAAI4AAABtCAYAAAB3LVkkAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIxSURBVHhe7dqxbgJBEETB+/+fxgJLDkjwbYCeWhVcBMHM + Xnctkn1d1/XwOIODDDwP7eFxBjcy8Cqa4CjOXTgE50bL7h7u8vcFR3COrmjBERzBWb4aarsRhzjEqbVy + eR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xaK5fnIQ5xiLPc8NpuxCEOcWqtXJ6HOMQhznLD + a7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xaK5fnIQ5xiLPc8NpuxCEOcWqt + XJ6HOMQhznLDa7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xaK5fnIQ5xiLPc + 8NpuxCEOcWqtXJ6HOMQhznLDa7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xa + K5fnIQ5xiLPc8NpuxCEOcWqtXJ6HOMQhznLDa7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIs + N7y2G3GIQ5xaK5fnIQ5xzsVZbobdrqNgfDq3lzifvuRzZ/SeAcFxVR3BITiCIziu1O9dqcQhDnGIQ5yj + FgiO4AhO/Ar1Gyf+gqqKCo7gHOkuOIIjOFXWF+ciDnGIs9js6k7+H4c45+I801NNtrma74Y4SnOEhuAI + juC41r53rRGHOMQhDnGOWiA4giM48SvUb5z4C6oqKjiCc6T7X3B+/9rpcQb/zcAPdaeY4roQUU4AAAAA + SUVORK5CYII= + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAYAAACoPemuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADr0AAA69AUf7kK0AAALVSURBVFhH7Zi9TgJBEMeXr8RCTUz4SEyo6bEACuIDkBBK + MOSiUFDwBj4AJQkdsbGgsqQ02oMmNEpoLH0BYmU3+gf3du5uOQ44PgqLDeGOnf0xM7s7/xHT6ZQ2GYFA + gIQQjrGJTcwVqxpIJBKEwWFyuRxVq1Vz8HfhcHj2+16vt5IDPIENBgOqVCoWmFarRV5GsVg058ViMWo2 + m54Al4Jls1ltqLxA4TccjHtyMpm4ArqCpVIpLRQW2BQMIXZLIy1Yt9ulfD5vQp2did8QCLq9VUm+Dtjj + o6CrK2UjFApRoVDQAmrBONT5uSCi+dgUTNq5vBR0fKwAR6ORA84BxsN3f6+g/ASDrc9Pq+fsYbWA8UTn + nvLbY9Le66uCQ86Nx2PTcyYYjgS5a5BTcjL/9CuU3CbCKtdtt9tOMH5OIdF3BYZ1+DEiQ2p6TL6s1fRQ + fucY/+PYrXL9crk889rvd56Egl5edg8GyFTKcd+qBycni6G26THYfn52AdPl1baTn9s/PbXAqS8HCVap + uIdx26GE/a8vjccMY/9gtqNjTvkP9lcQLMpndnz9e0x7zdk95/AYHhzkcXHQYHd3+7uSUDgeHbFzDJov + GAzOjgyUu9/f+7nEHx5sdyVKDIhRmXRPT/sBk+tnMhnq9/tKiUejURMO9dEuC8VcTnmr0+nM6zFZMUIh + S2pIrF2BfXwoqEgk4iyt/6pGEw61uB3O75r/7U1QOKzAhsOhHgyyHdRyI2CnbLMeu75WUIZhWLSlVvBC + IcuwQmL5Ld/e3wXd3CioWq22XPAipJDtXAvIsPoRSuQUDx/W0fUwFjZVINu552Dg4mKz3gXffbBXr9cX + NlaWtqGgkHUdw3WaKtyOPadcWwQ6l0K2QyHb4dYFw+biu29RK2qpx/hEiFEJmE6nSY5Go2Hpl/F3yWRy + Ngcnujw8vbRXVwLjBuPxOGHowoxn8n2pVPLU2rTD/gAxvvGUSgVAUAAAAABJRU5ErkJggg== + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAeCAYAAABAFGxuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIUSURBVFhH7Zgxa8JAFMfTFqSTgoJLJyUgDq5xcXGsEKRr + B2ldHZwL+gnEoaMQx9LVtehguujgUipCwUDpUigItlPb5fXeJSdWTS6nSezQ4W+Gy9373XvvLu8pzedz + cKt2uw2SJHkink2J98Ly+D8YieIWHjsgoTzZUREYDodgGIZtGm0BFiJQsKNmNE8TiQS0Wq2NcHsCYxvD + w5SFZDIJlUrlF6AQWLVaJQt54bFVj/cXJ13XdQpIPCpy/A93DCEvBRSy/hGDRLAGEVLz9OgzGIIby2B3 + ARjkeWt5nEYRf/wH07QRpNPvLh0QIFg2O4N+vw/45F83AYIhTLd7T+EKhVcOnANYvT6hi/ilfP7NAW6P + YL2eDtHolw3cHsHi8c/tPMZPUJHjb77LciyTwZvdaX6AyV8qPdN8TaU+/tapbDQeXAAxLwboMbHUWICd + k93UBXYknl/OYOhNtM9EwBRFAZT5aZItfQcI+URtM44Fz2ozYgJizXUbENwlqKq6VsWuFYrj8Rg0TbM8 + qPoMd0HtbOrUbCvYZrMJuVyOTIwQXfsAOKFQnU5HDIztQpZlCIUwtFdELx4BmlCDwWC3Lmk0GlmhPfYA + zAwfdkietW/lctkCPN0C8JLMMet5u/At55pQl4QTp9MpxGIxC/CGPFF29xpeOzh+RucUi0XX/5MIg7Fd + 1Wo1C865ywqHw6S8iboGYuv/AMJ7ZtVaEL7eAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAeCAYAAABAFGxuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIUSURBVFhH7Zgxa8JAFMfTFqSTgoJLJyUgDq5xcXGsEKRr + B2ldHZwL+gnEoaMQx9LVtehguujgUipCwUDpUigItlPb5fXeJSdWTS6nSezQ4W+Gy9373XvvLu8pzedz + cKt2uw2SJHkink2J98Ly+D8YieIWHjsgoTzZUREYDodgGIZtGm0BFiJQsKNmNE8TiQS0Wq2NcHsCYxvD + w5SFZDIJlUrlF6AQWLVaJQt54bFVj/cXJ13XdQpIPCpy/A93DCEvBRSy/hGDRLAGEVLz9OgzGIIby2B3 + ARjkeWt5nEYRf/wH07QRpNPvLh0QIFg2O4N+vw/45F83AYIhTLd7T+EKhVcOnANYvT6hi/ilfP7NAW6P + YL2eDtHolw3cHsHi8c/tPMZPUJHjb77LciyTwZvdaX6AyV8qPdN8TaU+/tapbDQeXAAxLwboMbHUWICd + k93UBXYknl/OYOhNtM9EwBRFAZT5aZItfQcI+URtM44Fz2ozYgJizXUbENwlqKq6VsWuFYrj8Rg0TbM8 + qPoMd0HtbOrUbCvYZrMJuVyOTIwQXfsAOKFQnU5HDIztQpZlCIUwtFdELx4BmlCDwWC3Lmk0GlmhPfYA + zAwfdkietW/lctkCPN0C8JLMMet5u/At55pQl4QTp9MpxGIxC/CGPFF29xpeOzh+RucUi0XX/5MIg7Fd + 1Wo1C865ywqHw6S8iboGYuv/AMJ7ZtVaEL7eAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAeCAYAAABAFGxuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIUSURBVFhH7Zgxa8JAFMfTFqSTgoJLJyUgDq5xcXGsEKRr + B2ldHZwL+gnEoaMQx9LVtehguujgUipCwUDpUigItlPb5fXeJSdWTS6nSezQ4W+Gy9373XvvLu8pzedz + cKt2uw2SJHkink2J98Ly+D8YieIWHjsgoTzZUREYDodgGIZtGm0BFiJQsKNmNE8TiQS0Wq2NcHsCYxvD + w5SFZDIJlUrlF6AQWLVaJQt54bFVj/cXJ13XdQpIPCpy/A93DCEvBRSy/hGDRLAGEVLz9OgzGIIby2B3 + ARjkeWt5nEYRf/wH07QRpNPvLh0QIFg2O4N+vw/45F83AYIhTLd7T+EKhVcOnANYvT6hi/ilfP7NAW6P + YL2eDtHolw3cHsHi8c/tPMZPUJHjb77LciyTwZvdaX6AyV8qPdN8TaU+/tapbDQeXAAxLwboMbHUWICd + k93UBXYknl/OYOhNtM9EwBRFAZT5aZItfQcI+URtM44Fz2ozYgJizXUbENwlqKq6VsWuFYrj8Rg0TbM8 + qPoMd0HtbOrUbCvYZrMJuVyOTIwQXfsAOKFQnU5HDIztQpZlCIUwtFdELx4BmlCDwWC3Lmk0GlmhPfYA + zAwfdkietW/lctkCPN0C8JLMMet5u/At55pQl4QTp9MpxGIxC/CGPFF29xpeOzh+RucUi0XX/5MIg7Fd + 1Wo1C865ywqHw6S8iboGYuv/AMJ7ZtVaEL7eAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAeCAYAAABAFGxuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIUSURBVFhH7Zgxa8JAFMfTFqSTgoJLJyUgDq5xcXGsEKRr + B2ldHZwL+gnEoaMQx9LVtehguujgUipCwUDpUigItlPb5fXeJSdWTS6nSezQ4W+Gy9373XvvLu8pzedz + cKt2uw2SJHkink2J98Ly+D8YieIWHjsgoTzZUREYDodgGIZtGm0BFiJQsKNmNE8TiQS0Wq2NcHsCYxvD + w5SFZDIJlUrlF6AQWLVaJQt54bFVj/cXJ13XdQpIPCpy/A93DCEvBRSy/hGDRLAGEVLz9OgzGIIby2B3 + ARjkeWt5nEYRf/wH07QRpNPvLh0QIFg2O4N+vw/45F83AYIhTLd7T+EKhVcOnANYvT6hi/ilfP7NAW6P + YL2eDtHolw3cHsHi8c/tPMZPUJHjb77LciyTwZvdaX6AyV8qPdN8TaU+/tapbDQeXAAxLwboMbHUWICd + k93UBXYknl/OYOhNtM9EwBRFAZT5aZItfQcI+URtM44Fz2ozYgJizXUbENwlqKq6VsWuFYrj8Rg0TbM8 + qPoMd0HtbOrUbCvYZrMJuVyOTIwQXfsAOKFQnU5HDIztQpZlCIUwtFdELx4BmlCDwWC3Lmk0GlmhPfYA + zAwfdkietW/lctkCPN0C8JLMMet5u/At55pQl4QTp9MpxGIxC/CGPFF29xpeOzh+RucUi0XX/5MIg7Fd + 1Wo1C865ywqHw6S8iboGYuv/AMJ7ZtVaEL7eAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAeCAYAAABAFGxuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIUSURBVFhH7Zgxa8JAFMfTFqSTgoJLJyUgDq5xcXGsEKRr + B2ldHZwL+gnEoaMQx9LVtehguujgUipCwUDpUigItlPb5fXeJSdWTS6nSezQ4W+Gy9373XvvLu8pzedz + cKt2uw2SJHkink2J98Ly+D8YieIWHjsgoTzZUREYDodgGIZtGm0BFiJQsKNmNE8TiQS0Wq2NcHsCYxvD + w5SFZDIJlUrlF6AQWLVaJQt54bFVj/cXJ13XdQpIPCpy/A93DCEvBRSy/hGDRLAGEVLz9OgzGIIby2B3 + ARjkeWt5nEYRf/wH07QRpNPvLh0QIFg2O4N+vw/45F83AYIhTLd7T+EKhVcOnANYvT6hi/ilfP7NAW6P + YL2eDtHolw3cHsHi8c/tPMZPUJHjb77LciyTwZvdaX6AyV8qPdN8TaU+/tapbDQeXAAxLwboMbHUWICd + k93UBXYknl/OYOhNtM9EwBRFAZT5aZItfQcI+URtM44Fz2ozYgJizXUbENwlqKq6VsWuFYrj8Rg0TbM8 + qPoMd0HtbOrUbCvYZrMJuVyOTIwQXfsAOKFQnU5HDIztQpZlCIUwtFdELx4BmlCDwWC3Lmk0GlmhPfYA + zAwfdkietW/lctkCPN0C8JLMMet5u/At55pQl4QTp9MpxGIxC/CGPFF29xpeOzh+RucUi0XX/5MIg7Fd + 1Wo1C865ywqHw6S8iboGYuv/AMJ7ZtVaEL7eAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAeCAYAAABAFGxuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIUSURBVFhH7Zgxa8JAFMfTFqSTgoJLJyUgDq5xcXGsEKRr + B2ldHZwL+gnEoaMQx9LVtehguujgUipCwUDpUigItlPb5fXeJSdWTS6nSezQ4W+Gy9373XvvLu8pzedz + cKt2uw2SJHkink2J98Ly+D8YieIWHjsgoTzZUREYDodgGIZtGm0BFiJQsKNmNE8TiQS0Wq2NcHsCYxvD + w5SFZDIJlUrlF6AQWLVaJQt54bFVj/cXJ13XdQpIPCpy/A93DCEvBRSy/hGDRLAGEVLz9OgzGIIby2B3 + ARjkeWt5nEYRf/wH07QRpNPvLh0QIFg2O4N+vw/45F83AYIhTLd7T+EKhVcOnANYvT6hi/ilfP7NAW6P + YL2eDtHolw3cHsHi8c/tPMZPUJHjb77LciyTwZvdaX6AyV8qPdN8TaU+/tapbDQeXAAxLwboMbHUWICd + k93UBXYknl/OYOhNtM9EwBRFAZT5aZItfQcI+URtM44Fz2ozYgJizXUbENwlqKq6VsWuFYrj8Rg0TbM8 + qPoMd0HtbOrUbCvYZrMJuVyOTIwQXfsAOKFQnU5HDIztQpZlCIUwtFdELx4BmlCDwWC3Lmk0GlmhPfYA + zAwfdkietW/lctkCPN0C8JLMMet5u/At55pQl4QTp9MpxGIxC/CGPFF29xpeOzh+RucUi0XX/5MIg7Fd + 1Wo1C865ywqHw6S8iboGYuv/AMJ7ZtVaEL7eAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAYAAACoPemuAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAOoSURBVFhHtZi/SjtBEMc3JjFBEm0kIaDGTjD+A0ERTSWY + ShDEJmAkWmgUBP+CoGCVl8gL5AFSpLO3VAiYKo/gG+zvvne5vd29vbu9837FNsns7OdmZmdnhvz+/lLd + dXNzQwkhkZffOQcHBxTr+PjY0q8LBbm4wWq1GsVaWFhwf6wO2Pf3N202m5EtZVu5UqnQTqfDPATr2KvV + aon6g8Cur6/dQJOTlGQylLy/+6+lJUtO4f7BYEBHo5G56vW6IJNKpfxduQTFstJGg5K3t2AoHhp7Zmdd + hwPq8PBQ+L1arZqxpoyxfr9PIcCgsllKtrbCwaiseXpKyeqq0oKlUon+/PzQjY0NbzABCm4LclnY/xcX + Bbh8Ps/cCmMgvFwWc7nv/j5+sJUVASyZTPqDCYEOS/0PqJ0dpSuzRrgMh0N2Y5nFkBKEmArrHh15Hmpq + yvIE59Zut+sGE/JUHIEugxo5TLjhz89OiHA3305fzGLCJp2vDyOzve1AwVI8FPTAEGO4u7s7J/iFW4ic + E+bQINndXQfKuH2euiWrmRYrFovWZgT862t8YNLtIy8v3rpPTtgHsHTB3KjzzARZyP5/c1O8TE9P/h98 + dsbkl5eXrTzGwHQPDZLb23N0Tk/re2D8rhYKBUpyuVy8YGtr4u0LExpjsEQiAR1c4RdkiaD/jXeO6UOF + 8PCgby3oFiuRmMD4R39mJhyQ/cFKsPX1aMqglLcUPBBkWa//Y7WYXMaEdR8PGRsYf/uius8LLHK64PMU + Aj2q+xRgZroQwFBK6xwgZ/THR719frqvriiZmDBvNQObwsOKoNXJ/Pzbh+QZJk/5gXGZv91uWxabm5tz + 8o/fI85XCegDdKyrK6N6xD8+PhwwdDMqZbL7gt4+XSDIoSsag6FDEmp+8+G0qdHN8Ir5yhOli1+VEAbI + luU81uv1RDB0yAwM7529SVUORznca8/tLTu3XC67S2vhdsJyhhDxK4fjgEOXP76JMMrX15caDG17Op12 + dzGqcvivYAgXLuAbxqXjxxXKTtw1FvgrhLxfmoecn5+7RmEuMHmWYELCrXHBIaY499mdtzzcEcD4qQva + dnTIgvX+0tYhJczPC/ouLi48h4YMjJ9PYcBhfwE6ZJdr0TggUwdZ8fLSklOMoeSYUlrs6OhI2Iypiy2I + th0dsnLEiSfMb0kugw6kBP72ec3nCJt5GpsyxiGfn5+e5t3f31cDas5l7eQZNCwcpy6rtObd57Ux7hms + H+A/sZE2jkXDPvIAAAAASUVORK5CYII= + + + + + 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 + + + \ No newline at end of file diff --git a/TestBenchFramework/TBF.csproj b/TestBenchFramework/TBF.csproj index 90f45616c..02526f8b8 100644 --- a/TestBenchFramework/TBF.csproj +++ b/TestBenchFramework/TBF.csproj @@ -912,6 +912,12 @@ ProcessTabPageCtrl24.cs + + UserControl + + + ProcessTabPageCtrl48.cs + Form @@ -1564,6 +1570,9 @@ ProcessTabPageCtrl24.cs + + ProcessTabPageCtrl48.cs + SelectComponentClassDlg.cs