diff --git a/Config/Units.cs b/Config/Units.cs
index 24a5909f0..423320733 100644
--- a/Config/Units.cs
+++ b/Config/Units.cs
@@ -25,8 +25,8 @@ namespace Config
hPa, /// 1 hPa = 100 Pa
kPa, /// 1 kPa = 10 HPa
MPa, /// 1 MPa = 10000 hPa
- mBar, /// 1 mbar = 1 hPa = 100 Pa
- Bar, /// 1 Bar = 1000 mbar = 100000 Pa
+ mbar, /// 1 mbar = 1 hPa = 100 Pa
+ bar, /// 1 Bar = 1000 mbar = 100000 Pa
inHg, /// 1 inHg = 33.864 hPa
Pct, /// 1 %
Promile, /// 1 promile = 0.1 %
@@ -64,12 +64,12 @@ namespace Config
case Unit.F: return 1.8 * v + 32; /// degree Fahrenheit
case Unit.K: return v + 273.15; /// degree Kelvin
- /// Pressure: internal representation in hPa (???)
+ /// Pressure: internal representation in mbar = hPa
case Unit.Pa: return 100 * v; /// 1 hPa = 100 Pa
case Unit.hPa: return v; /// 1 hPa = 100 Pa
- case Unit.mBar: return v; /// 1 mbar = 1 hPa = 100 Pa
+ case Unit.mbar: return v; /// 1 mbar = 1 hPa = 100 Pa
case Unit.kPa: return 0.1 * v; /// 1 kPa = 10 HPa
- case Unit.Bar: return 0.001 * v; /// 1 Bar = 1000 mbar = 100000 Pa
+ case Unit.bar: return 0.001 * v; /// 1 bar = 1000 mbar = 100000 Pa
case Unit.MPa: return 0.0001 * v; /// 1 MPa = 10000 hPa
case Unit.inHg: return 0.02953 * v; /// 1 inHg = 33.864 hPa
@@ -112,12 +112,12 @@ namespace Config
case Unit.F: return 5 * (v-32) / 9; /// degree Fahrenheit
case Unit.K: return v - 273.15; /// degree Kelvin
- /// Pressure: internal representation in hPa (???)
+ /// Pressure: internal representation in mbar = hPa
case Unit.Pa: return 0.01 * v; /// 1 hPa = 100 Pa
case Unit.hPa: return v; /// 1 hPa = 100 Pa
- case Unit.mBar: return v; /// 1 mbar = 1 hPa = 100 Pa
+ case Unit.mbar: return v; /// 1 mbar = 1 hPa = 100 Pa
case Unit.kPa: return 10 * v; /// 1 kPa = 10 HPa
- case Unit.Bar: return 1000 * v; /// 1 Bar = 1000 mbar = 100000 Pa
+ case Unit.bar: return 1000 * v; /// 1 bar = 1000 mbar = 100000 Pa
case Unit.MPa: return 10000 * v; /// 1 MPa = 10000 hPa
case Unit.inHg: return 33.864 * v; /// 1 inHg = 33.864 hPa
diff --git a/TestBenchFramework/BenchControl/Ambient/Comet/Ambient.cs b/TestBenchFramework/BenchControl/Ambient/Comet/Ambient.cs
index ba896ca29..d73dc8d1f 100644
--- a/TestBenchFramework/BenchControl/Ambient/Comet/Ambient.cs
+++ b/TestBenchFramework/BenchControl/Ambient/Comet/Ambient.cs
@@ -30,14 +30,12 @@ namespace TBF.BenchControl.Ambient.Comet
/// The state of the measurement
MsrmntState msrmntState;
- /// Measured temperature when MsrmntState == MsrmntState.Valid
- float temperature;
-
- /// Measured humidity when MsrmntState == MsrmntState.Valid
- float humidity;
-
- /// Measured pressure when MsrmntState == MsrmntState.Valid
- float pressure;
+ ///
+ /// Measured values when MsrmntState == MsrmntState.Valid
+ ///
+ float temperature; /// [deg C]
+ float pressure; /// [mbar]
+ float humidity; /// [%]
/// Measurement time stamp when MsrmntState == MsrmntState.Valid
int msrmntTimeStamp;
@@ -63,7 +61,7 @@ namespace TBF.BenchControl.Ambient.Comet
{
temperature = 20.0f;
humidity = 40.0f;
- pressure = 1.0f;
+ pressure = 1000.0f;
msrmntTimeStamp = StateMachine.Time;
msrmntState = MsrmntState.Valid;
return;
diff --git a/TestBenchFramework/BenchControl/Elde/PressureMeter/PressureMeter.cs b/TestBenchFramework/BenchControl/Elde/PressureMeter/PressureMeter.cs
index 81cf6cf70..a34f43986 100644
--- a/TestBenchFramework/BenchControl/Elde/PressureMeter/PressureMeter.cs
+++ b/TestBenchFramework/BenchControl/Elde/PressureMeter/PressureMeter.cs
@@ -42,6 +42,17 @@ namespace TBF.BenchControl.Elde.PressureMeter
log.Debug(this.ToString());
}
+
+ ///
+ /// Returns the water pressure
+ ///
+ /// Pressure in mBar
+ public float ReadPressure()
+ {
+ return 10 * ControlBoard.Pressure(Idx0); /// converted from [kPa] to [mbar]
+ }
+
+
///
/// Events: PressureDone, Error
///
diff --git a/TestBenchFramework/BenchControl/Elde/PressureMeter/ReadPressureOp.cs b/TestBenchFramework/BenchControl/Elde/PressureMeter/ReadPressureOp.cs
index 2771d269b..d87b8d691 100644
--- a/TestBenchFramework/BenchControl/Elde/PressureMeter/ReadPressureOp.cs
+++ b/TestBenchFramework/BenchControl/Elde/PressureMeter/ReadPressureOp.cs
@@ -10,12 +10,13 @@ namespace TBF.BenchControl.Elde.PressureMeter
public class ReadPressureOp : IOperation
{
private static readonly ILog log = LogManager.GetLogger(typeof(ReadPressureOp));
- public override string ToString() { return string.Format("ReadPressureOp(.,{0},{1},.)", eventDone, pressureMeterNr); }
+ public override string ToString() { return string.Format("ReadPressureOp(.,{0},{1},.)", eventDone, pressureMeter.Idx0); }
/// Set by the constructor
- readonly ControlBoardDev controlBoardDev;
- readonly int pressureMeterNr;
+ readonly PressureMeter pressureMeter;
readonly Event eventDone;
+
+ /// Measured value
FloatBox pressure;
///
@@ -27,10 +28,9 @@ namespace TBF.BenchControl.Elde.PressureMeter
public ReadPressureOp(PressureMeter pressureMeter, ref FloatBox pressure, Event eventDone)
{
if (pressureMeter == null) throw new ArgumentNullException("pressureMeter");
- this.controlBoardDev = pressureMeter.ControlBoard;
- this.pressureMeterNr = pressureMeter.Idx0;
- this.eventDone = eventDone;
- this.pressure = pressure;
+ this.pressureMeter = pressureMeter;
+ this.pressure = pressure;
+ this.eventDone = eventDone;
log.Debug(this.ToString());
}
@@ -39,10 +39,11 @@ namespace TBF.BenchControl.Elde.PressureMeter
{
}
+
/// Start this operation
public void Start()
{
- pressure.Val = controlBoardDev.Pressure(pressureMeterNr);
+ pressure.Val = pressureMeter.ReadPressure();
}
/// Run this operation
@@ -51,7 +52,7 @@ namespace TBF.BenchControl.Elde.PressureMeter
///
public Event Run()
{
- pressure.Val = controlBoardDev.Pressure(pressureMeterNr);
+ pressure.Val = pressureMeter.ReadPressure();
return eventDone;
}
diff --git a/TestBenchFramework/BenchControl/Sequences/ProcessData.cs b/TestBenchFramework/BenchControl/Sequences/ProcessData.cs
index 9851f3de0..be67efa77 100644
--- a/TestBenchFramework/BenchControl/Sequences/ProcessData.cs
+++ b/TestBenchFramework/BenchControl/Sequences/ProcessData.cs
@@ -8,23 +8,23 @@ namespace TBF.BenchControl.Sequences
{
public static IBenchInfo BenchInfo;
- public static FloatBox AmbientTemp = new FloatBox() { Name = "Ambient Temperature", Format = "F1" }; /// [Celsius]
+ public static FloatBox AmbientTemp = new FloatBox() { Name = "Ambient Temperature", Format = "F1" }; /// [Celsius]
public static FloatBox AmbientPressure = new FloatBox() { Name = "Ambient Pressure", Format = "F1" };
- public static FloatBox AmbientHumidity = new FloatBox() { Name = "Ambient Humidity", Format = "F1" }; /// [%]
- public static FloatBox TempIn = new FloatBox() { Name = "Temperature In", Format = "F2" }; /// [Celsius]
- public static FloatBox TempOut = new FloatBox() { Name = "Temperature Out", Format = "F2" }; /// [Celsius]
- public static FloatBox TempDiv = new FloatBox() { Name = "Temperature Div", Format = "F2" }; /// [Celsius]
- public static FloatBox PressureUp = new FloatBox() { Name = "Pressure In", Format = "F3", Factor = 0.01f };
- public static FloatBox PressureDown = new FloatBox() { Name = "Pressure Out", Format = "F3", Factor = 0.01f };
+ public static FloatBox AmbientHumidity = new FloatBox() { Name = "Ambient Humidity", Format = "F1" }; /// [%]
+ public static FloatBox TempIn = new FloatBox() { Name = "Temperature In", Format = "F2" }; /// [Celsius]
+ public static FloatBox TempOut = new FloatBox() { Name = "Temperature Out", Format = "F2" }; /// [Celsius]
+ public static FloatBox TempDiv = new FloatBox() { Name = "Temperature Div", Format = "F2" }; /// [Celsius]
+ public static FloatBox PressureUp = new FloatBox() { Name = "Pressure In", Format = "F2", Factor = 0.001f }; /// [mbar], printed by ToString() in [bar]
+ public static FloatBox PressureDown = new FloatBox() { Name = "Pressure Out", Format = "F2", Factor = 0.001f }; /// [mbar], printed by ToString() in [bar]
- public static float LtrPerRefPulse; /// to calculate the ref.volume
+ public static float LtrPerRefPulse; /// to calculate the ref.volume
public static int RefPulses;
public static FloatBox RefFreq = new FloatBox() { Name = "RefFreq", Format = "F2" };
- public static FloatBox RefFlow = new FloatBox() { Name = "RefFlow", Format = "F2" }; /// [m3/h]
+ public static FloatBox RefFlow = new FloatBox() { Name = "RefFlow", Format = "F2" }; /// [m3/h]
- public static FloatBox Mass = new FloatBox() { Name = "Mass", Format = "F3" }; /// [kg]
- public static FloatBox StartMass = new FloatBox() { Name = "Start Mass", Format = "F3" }; /// [kg]
- public static FloatBox EndMass = new FloatBox() { Name = "End Mass", Format = "F3" }; /// [kg]
+ public static FloatBox Mass = new FloatBox() { Name = "Mass", Format = "F3" }; /// [kg]
+ public static FloatBox StartMass = new FloatBox() { Name = "Start Mass", Format = "F3" }; /// [kg]
+ public static FloatBox EndMass = new FloatBox() { Name = "End Mass", Format = "F3" }; /// [kg]
public static DateTime TestStartTime;
public static DateTime TestEndTime;
diff --git a/TestBenchFramework/BenchControl/TestMethods/LeakTest/LeakTestSeq.cs b/TestBenchFramework/BenchControl/TestMethods/LeakTest/LeakTestSeq.cs
index f00c091ef..3434aee55 100644
--- a/TestBenchFramework/BenchControl/TestMethods/LeakTest/LeakTestSeq.cs
+++ b/TestBenchFramework/BenchControl/TestMethods/LeakTest/LeakTestSeq.cs
@@ -102,11 +102,11 @@ namespace TBF.BenchControl.TestMethods.LeakTest
}
while (e.Contains(Event.TimerBusy));
- UiBridge.Bridge.OnLog(this, string.Format("time = {0}, pump_power = {1}%, pressure_up = {2}kPa, pressure_down = {3}kPa\r\n",
+ UiBridge.Bridge.OnLog(this, string.Format("time = {0}, pump_power = {1}%, pressure_up = {2}bar, pressure_down = {3}bar\r\n",
StateMachine.Time - startTime,
pumpPower.ToString("F0"),
- PressureUp.Val.ToString("F1"),
- PressureUp.Val.ToString("F1")));
+ PressureUp.ToString(),
+ PressureDown.ToString()));
float step = (pumpPower < 40.0f) ? 5.0f : ((pumpPower < 60.0f) ? 3.0f : ((pumpPower < 80.0f) ? 2.0f : 1.0f));
diff --git a/TestBenchFramework/BenchControl/TestMethods/PMaxTest/PMaxTestSeq.cs b/TestBenchFramework/BenchControl/TestMethods/PMaxTest/PMaxTestSeq.cs
index 88bf0a0c4..d9b538b43 100644
--- a/TestBenchFramework/BenchControl/TestMethods/PMaxTest/PMaxTestSeq.cs
+++ b/TestBenchFramework/BenchControl/TestMethods/PMaxTest/PMaxTestSeq.cs
@@ -103,11 +103,11 @@ namespace TBF.BenchControl.TestMethods.PMaxTest
}
while (e.Contains(Event.TimerBusy));
- UiBridge.Bridge.OnLog(this, string.Format("time = {0}, pump_power = {1}%, pressure_up = {2}kPa, pressure_down = {3}kPa\r\n",
+ UiBridge.Bridge.OnLog(this, string.Format("time = {0}, pump_power = {1}%, pressure_up = {2}bar, pressure_down = {3}bar\r\n",
StateMachine.Time - startTime,
pumpPower.ToString("F0"),
- PressureUp.Val.ToString("F1"),
- PressureUp.Val.ToString("F1")));
+ PressureUp.ToString(),
+ PressureDown.ToString()));
float step = (pumpPower < 40.0f) ? 5.0f : ((pumpPower < 60.0f) ? 3.0f : ((pumpPower < 80.0f) ? 2.0f : 1.0f));
diff --git a/TestBenchFramework/Resources/Strings.Designer.cs b/TestBenchFramework/Resources/Strings.Designer.cs
index 122458b5a..2e75e030f 100644
--- a/TestBenchFramework/Resources/Strings.Designer.cs
+++ b/TestBenchFramework/Resources/Strings.Designer.cs
@@ -2338,20 +2338,20 @@ namespace TBF.Resources {
}
///
- /// Looks up a localized string similar to Pr down [mbar]:.
+ /// Looks up a localized string similar to Pr down.
///
- internal static string Pr_down_mbar_ {
+ internal static string Pr_down {
get {
- return ResourceManager.GetString("Pr_down_mbar_", resourceCulture);
+ return ResourceManager.GetString("Pr_down", resourceCulture);
}
}
///
- /// Looks up a localized string similar to Pr up [mbar]:.
+ /// Looks up a localized string similar to Pr up.
///
- internal static string Pr_up_mbar_ {
+ internal static string Pr_up {
get {
- return ResourceManager.GetString("Pr_up_mbar_", resourceCulture);
+ return ResourceManager.GetString("Pr_up", resourceCulture);
}
}
diff --git a/TestBenchFramework/Resources/Strings.de.resx b/TestBenchFramework/Resources/Strings.de.resx
index 7debbd51c..a300bbcc7 100644
--- a/TestBenchFramework/Resources/Strings.de.resx
+++ b/TestBenchFramework/Resources/Strings.de.resx
@@ -1071,11 +1071,11 @@
Wasserzähler {0}
-
- Dr. un. [mbar]:
+
+ Dr. un.
-
- Dr. ob. [mbar]:
+
+ Dr. ob.
Impulse:
diff --git a/TestBenchFramework/Resources/Strings.resx b/TestBenchFramework/Resources/Strings.resx
index 8bb052d86..ca79e2ceb 100644
--- a/TestBenchFramework/Resources/Strings.resx
+++ b/TestBenchFramework/Resources/Strings.resx
@@ -1276,11 +1276,11 @@
Meter {0}
-
- Pr down [mbar]:
+
+ Pr down
-
- Pr up [mbar]:
+
+ Pr up
Pulses:
diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl24.Designer.cs b/TestBenchFramework/Screens/ProcessTabPageCtrl24.Designer.cs
index d80bbe6e6..a3c465f7c 100644
--- a/TestBenchFramework/Screens/ProcessTabPageCtrl24.Designer.cs
+++ b/TestBenchFramework/Screens/ProcessTabPageCtrl24.Designer.cs
@@ -31,3106 +31,3106 @@ namespace TBF.Screens
///
private void InitializeComponent()
{
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProcessTabPageCtrl24));
- 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:";
- //
- // ProcessTabPageCtrl24
- //
- 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 = "ProcessTabPageCtrl24";
- 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();
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProcessTabPageCtrl24));
+ 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(53, 91);
+ this.label14.Name = "label14";
+ this.label14.Size = new System.Drawing.Size(59, 13);
+ this.label14.TabIndex = 14;
+ this.label14.Text = "Pr up [bar]:";
+ //
+ // 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(497, 91);
+ this.label17.Name = "label17";
+ this.label17.Size = new System.Drawing.Size(73, 13);
+ this.label17.TabIndex = 18;
+ this.label17.Text = "Pr down [bar]:";
+ //
+ // 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:";
+ //
+ // ProcessTabPageCtrl24
+ //
+ 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 = "ProcessTabPageCtrl24";
+ 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();
}
diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl24.resx b/TestBenchFramework/Screens/ProcessTabPageCtrl24.resx
index 23c643642..1f4e3da58 100644
--- a/TestBenchFramework/Screens/ProcessTabPageCtrl24.resx
+++ b/TestBenchFramework/Screens/ProcessTabPageCtrl24.resx
@@ -121,213 +121,207 @@
iVBORw0KGgoAAAANSUhEUgAAAI4AAABtCAYAAAB3LVkkAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIxSURBVHhe7dqxbgJBEETB+/+fxgJLDkjwbYCeWhVcBMHM
- Xnctkn1d1/XwOIODDDwP7eFxBjcy8Cqa4CjOXTgE50bL7h7u8vcFR3COrmjBERzBWb4aarsRhzjEqbVy
- eR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xaK5fnIQ5xiLPc8NpuxCEOcWqtXJ6HOMQhznLD
- a7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xaK5fnIQ5xiLPc8NpuxCEOcWqt
- XJ6HOMQhznLDa7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xaK5fnIQ5xiLPc
- 8NpuxCEOcWqtXJ6HOMQhznLDa7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIsN7y2G3GIQ5xa
- K5fnIQ5xiLPc8NpuxCEOcWqtXJ6HOMQhznLDa7sRhzjEqbVyeR7iEIc4yw2v7UYc4hCn1srleYhDHOIs
- N7y2G3GIQ5xaK5fnIQ5xzsVZbobdrqNgfDq3lzifvuRzZ/SeAcFxVR3BITiCIziu1O9dqcQhDnGIQ5yj
- FgiO4AhO/Ar1Gyf+gqqKCo7gHOkuOIIjOFXWF+ciDnGIs9js6k7+H4c45+I801NNtrma74Y4SnOEhuAI
- juC41r53rRGHOMQhDnGOWiA4giM48SvUb5z4C6oqKjiCc6T7X3B+/9rpcQb/zcAPdaeY4roQUU4AAAAA
- SUVORK5CYII=
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAEuSURBVHhe7dIxDoAwEAQx/v/pQFJQBaRM7ZN8zbZzPTcg
+ mG/AAeGQCIdEOCTCIREOiXBIhEMiHBLhkAiHRDgkwiERDolwSIRDIhwS4ZAIh0Q4JMIhEQ6JcEiEQyIc
+ EuGQCIdEOCTCIREOiXBIhEMiHBLhkAiHRDgkwiERDolwSIRDIhwS4ZAIh0Q4JMIhEQ6JcEiEQyIcEuGQ
+ CIdEOCTCIREOiXBIhEMiHBLhkAiHRDgkwiERDolwSIRDIhwS4ZAIh0Q4JMIhEQ6JcEiEQyIcEuGQCIdE
+ OCTCIREOiXBIhEMiHJIVzm6AP8IhEQ6JcEiEQyIcEuGQCIdEOCTCIREOiXBIhEMiHBLhkKxw5tuN8EU4
+ JMIhEQ6JcEiEQyIcEuGQCIdEOCTCIXnDgRPXuAF1p5ji1T6jKwAAAABJRU5ErkJggg==
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==
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAALTSURBVFhH7Ze9ajJBFIbXP0iRBAL+QMDa3hRqIbkAQSw1
+ iCRaWHgHuQBLwU7SpLBKaRmSXhOwScQmZW5AUqWb7Lt6ds7uHmMkO3x8kOKBXefMOw/O7jLHWq1W6jdE
+ IhFlWVYAqXYf9hbLZDIOXKJUKqlms+nCx+LxuFM/Ho/FvG38SGw6napGo+FZsN/v/4hqterOSaVSqtfr
+ iWv42SlWLBY9QoQkIcHFOMvlUlyP+FYsl8uJoUCSkNgmhi2W1iREsdFopMrlshtycmLZW2Cp62sdLElI
+ cLH7e0tdXOiMWCymKpVKYH0ginGp01NLKbXmt2KUc35uqcNDnTWfzwMOATG+fbe3OixMMfD+rrPwz/k9
+ PGL8Qef/FBGmGHh+1nl45haLRVAMnwQqwjPlDwFhiwFsK40PBoOgGP9O4UGXQkyIARoHATEaaLflycCU
+ GN5WqqnX6+Sjf4zFLPX0JE8GpsRALqezN+iboyN5EmFS7PFRZ2/QN9IEjkkxcHys8230jVTM+SdijYZc
+ zDEt9vGh823WF62WXMwxLQao1mZ98Se2A6q1WV/8ie2Aam30jVTIMS32f33HwM2NPIEwKYaD48GBzrfQ
+ 80WjUecGx93PT3kiMCl2d6ezHXDEQDNKPzw8yBOBSTGqKRQKajKZ6PNYMpl0B3E+kiabEiuVdO5wOPQe
+ FNEh0yBaLCnAhNjbm85MJBKOi0fMudkUAJzF/SFhi728oAnRmbPZTBZD2w5rFOFFwJvCg8IWu7zUea1W
+ y/UAHjECfR5NQItFQWGJvb5a6upKZ7Xb7YCDKIa2nSYB2tYwxPBM8e0DkoMoBtC2838OnJ3pa0lCgovx
+ tw90Oh1xbbBVjECHzMMISUKCi3H8z5SfnWJo29Eh+4MlCQm/GF4u/vZtY6cYB80oLZDP51263a5Hho9l
+ s1mnHl90+nj+hL3EOOl02oFE/dB4rVYT53/PSn0BMb7xlEsaQlIAAAAASUVORK5CYII=
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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=
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAN+SURBVFhHtZi5SgRBEIbbW8QjkRXBKxPWEwRF1EjQSBDE
+ RFBxDdRdEDxBUDDyJXwBH8DAzNxQQdDIR9g3aOfv3emp6qkd5zL4PHqqqn/6qO5qVa1WdVwqlYpWSqVG
+ iumztrZm2NraqtlLRo3IW9j6+rphZGQkbO8aS3x8fOiDg4Owc0ImJib04+OjjYvR8Tk5OeH2VIBEuVzm
+ DqC9XauODq3u76MZH6/Zuf4en5+f+ufnx7Czs8O+tba2RgsbR2DiYNjb0+ruThbSCPj097M46ByiNjY2
+ WPvKyopZa6Kwl5cXY2AdOju1mp+XO03C7q5WU1NMiM/g4KD++vrSs7OzjYUxUZg2qZMsjI0xUT09PXZa
+ 8T80hISFpu/8XA6ehclJ1kdLS0u0MLbQMVL/IWpxMeiD0Oktl+/vb6vFCkNKsIZYU1LQrFBRXV21NjKt
+ T09PYWEsT+Wx0F28HGbjg+vr4BtpDwmjH1nAPFhYCGJjpKgogIGofz87OwuEsV2InEOdsrK0FMT2dp9o
+ A3wbDytsYGCg1ogFf3srO6bB2X3q5ka2A9vb1s4Ks45xjpm4zM0FcbGZrq5kO5/9fWtfLBYdYZJDGpaX
+ g5i9vbKNRP1cLRQKWnV3d+crbHo6iAeSLI26sKamJvwmQSTjJHjnnI2FG8LFhWzXCH4TsX/IxnGhO7uv
+ T7b5C1HYzIxsHAc6UkCyiUOuI+ZeY5JOHyU3YXT3pZ0+ChWWOl3QPIWFLtkkpS7MpAsmDHcxycHFzeiX
+ l7JdEo6PtWpuNvGssC4crOgAiiUnCj37kDzzOsJI5n94eKgJGxoaCjqLOsTpLSHvO5sf18PMIn68vr4G
+ H1DNSI7u9P119iUBxUc9LgoRKwyYg9PvFNUMdaQ3T1xdom4JaSAz9vz8zIWhQrad47zznaTrcJ6cntr4
+ o6OjRgsTZv7xBQDPKPI6nAcofuo7Eby/v8vCULa3tbVxMUC6DmcFy4X0sedtOqqFCbONxMEgBc6C8x5S
+ KpXCGtwG9y3BgGmVOkgD1hSZPuBqAEwYfXVB2Y4KmQbIVNYhJQwPs3iHh4dMDMUKo+9TeODw21Eh02AG
+ FA7I1JIAytERy+gUd025GGGbm5vMCa8uvgHKdlTI9LsFR1gUzpQBpAS6+xqh7JunR4cX7O3tTTQEq6ur
+ rJOk+MkzDp59zYlOXyP+83GYU9W/sZE2jpG87/4AAAAASUVORK5CYII=
iVBORw0KGgoAAAANSUhEUgAAACYAAAAjCAYAAAD48HgdAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAN1SURBVFhHxZg5SDNBGIZHiTZBEA9UEESE2ARvJFEiWIlX
- FW0UUUFsLQRBm3QWBsHKCBaCkBCIeDQpgoKNRCLYaGXAUrAyWnkU3+8768ZsNrs7u5v4F1NkZ/abZ9/5
- rgnLZDKUOyYnJ4kx9l9GLgfLB8Pv+fn5Pwe7vb1VCFQQLJFIcLCVFUZEpRufn4yqqhgtLS0poCBOQTBM
- nJ+fc7hAoDRgT0+Su8zNzamgdMEweXl5yV++uSk+HOxWVlYWhDIEwwKXy8Xh3t6KB7e1pQ8lBIZFbreb
- KiqKA7axIR1hOp3WVEsYTPa3xkZ7cAgmQPn9fl0oYTAsjMVi3Oj2tnW45mZGExMThlCmwLB4fX2dw+3t
- mYP7+GBUXc1odHRUCMo0GF7o6OjgcJmMOJxcSQolc61nmnlMz0hDQwOHe383hjs5YVReXk7X19dZtXZ3
- d6mpqYkPh8OhqDKDg4N8nSWwZDLJjTmd+mAHB5Kz39/fq44wHo9/Z/0qDi0rend3l11nCQxfdHp6auhv
- 2LC3tze72fLyMvX19anq8NraGuFjDYu4qC/Im0SjauXcbkb9/f00MzND09PTCpienh7a3Nzkc4FAwHxJ
- EgFsb2/nmx4f/8K5XOq2aWpqihYWFrIQ+Qrl72X5KHMNtba2UleXGgZB4vV6hVNEUY4S/ROGVlMporbe
- GtOKhcNhqq2tpbKyMhXU8zOjujpJuT8Bm52dpYGBARUIHDcSiRCOcnj418cAhmd24DQVW1xc5MU2/6gA
- EwwGs5vC+YeGlFGJQMB7mLMKpwBDRu7s7FTBjIyM8NDO36SlpYV8vsJJFikEcPv7+5bgFGBy6MuJUa8T
- ODs74xuj5GjdC9raJDgkY7PKKcC6u7spFAoZGpH7s2TSuFaibDmdTnp8fDS0aytdRKPRn/pnDAUlUeih
- GnKaGdVMpwv4YH09o68vMTDAxWISHFomUThTYB6P5zvSxIFyfS8UkuCguAicMBhqHQzbuQCPjUlwR0dH
- hnBCYBcXF9zgzo49MHwULjQilcEQ7OHhgRs6PLQPJavtcDB+JbRcK6+urnhNzG1p7Byl/O7rq6QaLtNa
- cLqK+Xw+buDlpXhqyXDBoHQXSKVS5hrF8fFxqqkxlxbMqok/bPDhSNhCjeLq6upPaCO8Szu0gkF1lPIN
- SKsBLNVz/FmYq9o/66yHqbdqC6IAAAAASUVORK5CYII=
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAN0SURBVFhHxZg5SDNBGIZHiTZBEA9UEESE2ARvxIMIVuJV
+ qY0iKoithSBok87CIFgZwUIQlEDEo7EQBRuJKNiYSsFSsDJaeRTf7zvLbvb4drObqH/xNNmZ93symWsj
+ UqkU6RkeHiYhxH9B72ERA1NTU2zH3+T29tbgwIqdnp7KxvPzgoh+j89PQUVFgmZnZy0OrBg4OzuTcuEw
+ H5orT0/KSE1OTrL1bcXAxcWF7Hxzw4fnAnILCwvZusBRDAQCARny9sYXyIbVVWcpkFEMBINBKijgi3hl
+ eVkZrYeHB7aWiisxdb5VVvLF3ILFhJyRkRG2jh5XYiAej8vQtTW+qBuqqwUNDQ2x+WZci4GlpSUpt7nJ
+ F7bj40NQcbGg/v5+NpfDkxhoaGiQcqkUL8GB9kofPpPDsxioqKiQhd7feRE9h4eC8vPz6erqSuu/sbFB
+ VVVVEp/Pp4mD7u5u2SYrsUQiIUP8fl5GZXtbKZZMJi0ZJycn37t+kZRWpe7u7rTnWYmBo6MjGeY03/C8
+ tbVV6zM3N0dtbW2aiMri4qL8svr8rMWAWiQWs0oFg4La29tpfHycxsbGDCItLS20srIin4XDYTY7JzFQ
+ X18vix0cpKUCAeOIgNHRUZqentb6mUfITM5ioLa2lpqarDJYJJ2dnWyfTGQthvsTMMuocH284Flsd3eX
+ SktLKS8vzyLz/CyorOwPxSYmJqirq8sigom7t7cnf8re3vQcwzN8xmW5xVZsZmZGHracTCQS0dph8vf0
+ pKUAFgLa4pk+0wsGMezIjY2NFpm+vj65tPVtQU1NDYVCRikVbCHou7W1ZennBoOYuvQBNkanm8Dx8bFs
+ hyOHEwN1dUoWNmMuwwmDWHNzM0WjUUMDDvV+lkjwQnpwbPn9fnp8fGSz7HA1+fXEYjEplUzyImZw0KM9
+ 9jQuzw7PYpiD5eWCvr54EY54XJHDlYnL5PAk1tHR8T0P+eKZiEYVOYw4l23GtRjOOgRzRd0yMKDI7e/v
+ szX0uBI7Pz+XgevrfEEv4IUGWVwdPRnF7u/vZdDODl8oG3w+XIuCbD0VR7HLy0t5JuqvND/B66syaniZ
+ 5uoCR7FQKCQDXl74ArkQiSjvAtfX12xtW7HBwUEqKfG2LXgFf9jgi2PDNtdnxRYWFmQHnHe/jd1isIip
+ b0B/Df4sTHuk6B/rrIep2LXHGgAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
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
+ YQUAAAAJcEhZcwAADrwAAA68AZW8ckkAAAIGSURBVFhH7de/SwJhGAfwtwJpUlBwaVIEcXDVxcUxQaS1
+ QdLVwTnQv0AcGgUdo9U1dNAWHVwiEQKFaAkCwZqq5el53rvT03v8cXqeDQ0fjXu97/PFO+w9MZlMYFO1
+ Wg2EEJbg8vX+iy3i8vW2KHaEznbkgm63C6PRiJ1DtijmQLCjMRLg8/mgUqmwsw5UTEN5UfD7/ZDL5eZm
+ mSqWz+cxyMpimhZS7r12uy1n4d/GG3O5Y8QFWyWCTpCcRy8lRK3XeUJcoJVGaFrsXj34V9hYrFrtQSj0
+ wa4Z2VgsGh1Dq9WS79z6PBuLkUbjQZZLJN7Y9ZkVxYrFgQzZl3j83TBz5oDFms02uN3fhrmKAxbzer8M
+ M2dWFNsH7R4Lh+mXnf+MwsZi6fSLLBUMfrLr82wsVio9ssd5NhYzZ1rsEhXVg4dA3ybN12CnSCQCRCkY
+ UP0gLmAfnpGQHfQM+zGlIO257hAXZLUMJJPJuQ6yx+KBfr+P/3CreAIVTOoC9uEK8Q8mS3ew5XIZYrEY
+ nuhCN2qQlQZIQL1eZ+ev3VoHAgFwOOjSXqNXNXRXSqlOp8POJBvt+Xu9ngwS4lQN3oVy+egJybLHt2w2
+ K0OFOFeHmJFByn5+2eXTM1WMDIdD8Hg8coAQtyquCKGfHVq/kOekUik2k2O6mKZQKOBAKrea0+nE7Y2b
+ zVhuAr/Ce2bVcGWw1gAAAABJRU5ErkJggg==
\ No newline at end of file
diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs b/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs
index 2cd927854..950e6acc7 100644
--- a/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs
+++ b/TestBenchFramework/Screens/ProcessTabPageCtrl48.Designer.cs
@@ -662,11 +662,11 @@ namespace TBF.Screens
// label14
//
this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(44, 91);
+ this.label14.Location = new System.Drawing.Point(53, 91);
this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(68, 13);
+ this.label14.Size = new System.Drawing.Size(59, 13);
this.label14.TabIndex = 14;
- this.label14.Text = "Pr up [mBar]:";
+ this.label14.Text = "Pr up [bar]:";
//
// tInLabel
//
@@ -707,11 +707,11 @@ namespace TBF.Screens
// label17
//
this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(488, 91);
+ this.label17.Location = new System.Drawing.Point(497, 91);
this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(82, 13);
+ this.label17.Size = new System.Drawing.Size(73, 13);
this.label17.TabIndex = 18;
- this.label17.Text = "Pr down [mBar]:";
+ this.label17.Text = "Pr down [bar]:";
//
// label18
//
diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl6.Designer.cs b/TestBenchFramework/Screens/ProcessTabPageCtrl6.Designer.cs
index 15d98edda..ebd3f044a 100644
--- a/TestBenchFramework/Screens/ProcessTabPageCtrl6.Designer.cs
+++ b/TestBenchFramework/Screens/ProcessTabPageCtrl6.Designer.cs
@@ -581,11 +581,11 @@ namespace TBF.Screens
// prUpCapLabel
//
this.prUpCapLabel.AutoSize = true;
- this.prUpCapLabel.Location = new System.Drawing.Point(44, 91);
+ this.prUpCapLabel.Location = new System.Drawing.Point(49, 91);
this.prUpCapLabel.Name = "prUpCapLabel";
- this.prUpCapLabel.Size = new System.Drawing.Size(67, 13);
+ this.prUpCapLabel.Size = new System.Drawing.Size(59, 13);
this.prUpCapLabel.TabIndex = 14;
- this.prUpCapLabel.Text = "Pr up [mbar]:";
+ this.prUpCapLabel.Text = "Pr up [bar]:";
//
// tInLabel
//
@@ -626,11 +626,11 @@ namespace TBF.Screens
// prDownCapLabel
//
this.prDownCapLabel.AutoSize = true;
- this.prDownCapLabel.Location = new System.Drawing.Point(488, 91);
+ this.prDownCapLabel.Location = new System.Drawing.Point(486, 91);
this.prDownCapLabel.Name = "prDownCapLabel";
- this.prDownCapLabel.Size = new System.Drawing.Size(81, 13);
+ this.prDownCapLabel.Size = new System.Drawing.Size(73, 13);
this.prDownCapLabel.TabIndex = 18;
- this.prDownCapLabel.Text = "Pr down [mbar]:";
+ this.prDownCapLabel.Text = "Pr down [bar]:";
//
// tOutCapLabel
//
diff --git a/TestBenchFramework/Screens/ProcessTabPageCtrl6.cs b/TestBenchFramework/Screens/ProcessTabPageCtrl6.cs
index bd60dc64d..bbf899460 100644
--- a/TestBenchFramework/Screens/ProcessTabPageCtrl6.cs
+++ b/TestBenchFramework/Screens/ProcessTabPageCtrl6.cs
@@ -130,8 +130,8 @@ namespace TBF.Screens
targetRefCountCapLabel.Text = Strings.Target_ref_pulses_;
estmtdTimeCapLabel.Text = Strings.Estimated_time_s_;
- prUpCapLabel.Text = Strings.Pr_up_mbar_;
- prDownCapLabel.Text = Strings.Pr_down_mbar_;
+ prUpCapLabel.Text = string.Format("{0} [bar]:", Strings.Pr_up);
+ prDownCapLabel.Text = string.Format("{0} [bar]:", Strings.Pr_down);
tInCapLabel.Text = Strings.T_in_C_;
tOutCapLabel.Text = Strings.T_out_C_;
tDivCapLabel.Text = Strings.T_div_C_;