diff --git a/TBF/Rig/DataEntry/PoseidonCmd/CycleBeginningForm.cs b/TBF/Rig/DataEntry/PoseidonCmd/CycleBeginningForm.cs
index ef72abc8d..62787c9a8 100644
--- a/TBF/Rig/DataEntry/PoseidonCmd/CycleBeginningForm.cs
+++ b/TBF/Rig/DataEntry/PoseidonCmd/CycleBeginningForm.cs
@@ -8,10 +8,8 @@ using System.Windows.Forms;
using log4net;
using Common;
using TBF.Rig.Sequences;
-using TBF.Rig.Output.DB.SensusOracle;
using TBF.Resources;
using System.Drawing;
-using NHibernate;
namespace TBF.Rig.DataEntry.PoseidonCmd
{
diff --git a/TBF/Rig/DataEntry/PoseidonCmd/EntryForm.cs b/TBF/Rig/DataEntry/PoseidonCmd/EntryForm.cs
index eef0438a6..7977c0453 100644
--- a/TBF/Rig/DataEntry/PoseidonCmd/EntryForm.cs
+++ b/TBF/Rig/DataEntry/PoseidonCmd/EntryForm.cs
@@ -61,6 +61,15 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
CurrentOp currentOp;
+ public enum ReadDataOp
+ {
+ None,
+ Start,
+ Busy,
+ Done,
+ }
+ ReadDataOp readDataOp;
+
public EntryForm() { }
@@ -112,6 +121,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
|| currentOp == CurrentOp.SendStartDataStream)
) throw new Exception("Sequence error");
currentOp = CurrentOp.ReadDatastream_StartStates;
+ readDataOp = ReadDataOp.None;
//TODO BUMI apply show data in dialog if config required
//entryFormCfg.Direction = Direction.S640;
//currentOp = CurrentOp.EnterTestStartStates;
@@ -122,10 +132,14 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
if (reader != null && reader is PoseidonReader)
{
PoseidonReader poseidonReader = (reader as PoseidonReader);
- if (!string.IsNullOrEmpty(poseidonReader.SerialNr)
- && waterMeters.Count > iterator)
+ if (waterMeters.Count > iterator)
{
- waterMeters[iterator].SerialNr = poseidonReader.SerialNr;
+ if(string.IsNullOrEmpty(poseidonReader.SerialNr))
+ waterMeters[iterator].SerialNr = poseidonReader.SerialNr;
+ else
+ {
+ waterMeters[iterator].SerialNr = "*";
+ }
}
}
@@ -135,8 +149,17 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
}
/// null (not implemented)
- public IOperation ShowAdvancedTestStartFormOp(IRegReader[] regReaders, IList waterMeters, bool isCondOp) { return null; }
- public IOperation ShowTestCollectFormOp(IRegReader[] regReaders, double volumeRef, double errLimLo, double errLimHi) { return null; }
+ public IOperation ShowAdvancedTestStartFormOp(IRegReader[] regReaders,
+ IList waterMeters, bool isCondOp)
+ {
+ return null;
+ }
+
+ public IOperation ShowTestCollectFormOp(IRegReader[] regReaders, double volumeRef, double errLimLo,
+ double errLimHi)
+ {
+ return null;
+ }
/// Reference to the operation
public IOperation ShowTestEndFormOp(IRegReader[] regReaders, double refVolume, double errLimLo, double errLimHi)
@@ -181,6 +204,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
/// Start this operation
public void Start()
{
+ readDataOp = ReadDataOp.None;
+ readAndSetDataToMeters = false;
+ filedDataToMeters = false;
+
if (!ShowForm)
return ;
@@ -188,8 +215,8 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
switch (currentOp)
{
case CurrentOp.SendStartDataStream:
- ReadAndSetDataToMeters();
- if (ProcessData.SelectedProcedure.OrderInfo == null || entryFormCfg.Direction != Direction.S640)
+ //ReadAndSetDataToMeters();
+ if (ProcessData.SelectedProcedure.OrderInfo == null)
{
Program.MainWnd.Invoke(new EntryFormDlgt(OpenBeginningDlg), this);
}
@@ -209,28 +236,70 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
}
}
+ private bool readAndSetDataToMeters = false;
+ private bool filedDataToMeters = false;
+
/// Run this operation
/// Event.ResultsPrinted
public Event Run()
{
- ReadAndSetDataToMeters();
+ if (!readAndSetDataToMeters) // run until not finished
+ readAndSetDataToMeters = ReadAndSetDataToMeters();
if (!ShowForm)
- return Event.ModelessFormClosed;
-
- if (ProcessData.SelectedProcedure.OrderInfo != null && entryFormCfg.Direction == Direction.S640)
- {
- for (int i = 0; i < waterMeters.Count; i++)
- {
- if (waterMeters[i] != null)
- waterMeters[i].PurchaseOrder = ProcessData.SelectedProcedure.OrderInfo.POName;
- }
- return Event.ModelessFormClosed;
- }
+ if(readAndSetDataToMeters)
+ return Event.ModelessFormClosed;
+ else
+ {
+ return Event.ModelessFormIsOpen;
+ }
- if ((modelessDlg is IHasCompleted) && !(modelessDlg as IHasCompleted).Completed)
+ if (readAndSetDataToMeters && !filedDataToMeters)
{
- return Event.ModelessFormIsOpen;
+ if (regReaders != null)
+ {
+ //add data into dialog
+ int item = 0;
+ TestStartEndForm dlg = (modelessDlg as TestStartEndForm);
+ foreach (var iRegReader in regReaders)
+ {
+ if (iRegReader is PoseidonReader poseidonReader)
+ {
+ if (dlg != null)
+ {
+ if (currentOp == CurrentOp.ReadDatastream_StartStates)
+ {
+ dlg.WMStartState[item] = poseidonReader.BeginWMState;
+ dlg.WMStartStateStr[item] = poseidonReader.BeginWMState.ToString();
+ }
+
+ if (currentOp == CurrentOp.ReadDatastream_EndStates)
+ dlg.WMEndState[item] = poseidonReader.EndWMState;
+ }
+ }
+
+ item++;
+ }
+
+ if (dlg != null)
+ {
+ if (dlg.InvokeRequired)
+ {
+ dlg.BeginInvoke(new Action(() =>
+ dlg.UpdateValues(currentOp == CurrentOp.ReadDatastream_StartStates, true)));
+ }
+ else
+ {
+ dlg.UpdateValues(currentOp == CurrentOp.ReadDatastream_StartStates, true);
+ }
+ }
+ filedDataToMeters = true;
+ }
+ }
+
+ if ((modelessDlg is IHasCompleted) && !(modelessDlg as IHasCompleted).Completed)
+ {
+ return Event.ModelessFormIsOpen; //ModelessFormClosed ??
}
if (!resultSaved) /// This is to save the result only once
@@ -290,6 +359,8 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
modelessDlg = null;
}
currentOp = CurrentOp.None;
+ readAndSetDataToMeters = false;
+ filedDataToMeters = false;
}
public bool ShowForm
@@ -303,13 +374,15 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
get { return entryFormCfg == null ? false : entryFormCfg.SaveCommunication;}
}
+ //private long GetMaxtime()
+
public bool ReadAndSetDataToMeters()
{
bool bOperationSuccess = false;
if (currentOp == CurrentOp.SendStartDataStream)
{
bool finishedReading = regReaders == null; // we can work only with register readers
- while (!finishedReading)
+ while (!finishedReading) //TODO BUMI lock - fuck ?
{
bool bAllReadersFinished = true;
foreach (var iRegReader in regReaders )
@@ -326,6 +399,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
}
/// Send start data stream
poseidonReader.Run();
+ readDataOp = ReadDataOp.Start;
if (!(poseidonReader.CurrentOp == PoseidonReader.CurrentPoseidonOp.Done
|| poseidonReader.CurrentOp == PoseidonReader.CurrentPoseidonOp.Error))
{
@@ -337,10 +411,11 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
if (bAllReadersFinished)
{
finishedReading = true;
+ readDataOp = ReadDataOp.Done;
}
else
{
- System.Threading.Thread.Sleep(100);
+ System.Threading.Thread.Sleep(10);
}
}
@@ -350,7 +425,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
|| (currentOp == CurrentOp.ReadDatastream_EndStates))
{
bool finishedReading = regReaders == null; // we can work only with register readers
- while (!finishedReading)
+ while (!finishedReading) //TODO BUMI lock - fuck ?
{
bool bAllReadersFinished = true;
foreach (var iRegReader in regReaders )
@@ -383,7 +458,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
}
else
{
- System.Threading.Thread.Sleep(100);
+ System.Threading.Thread.Sleep(10);
}
}
diff --git a/TBF/Rig/DataEntry/PoseidonCmd/EntryFormCfg.cs b/TBF/Rig/DataEntry/PoseidonCmd/EntryFormCfg.cs
index 4c187e022..72fc62f53 100644
--- a/TBF/Rig/DataEntry/PoseidonCmd/EntryFormCfg.cs
+++ b/TBF/Rig/DataEntry/PoseidonCmd/EntryFormCfg.cs
@@ -89,7 +89,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
{
Direction = Direction.Forward_RL;
Orders = Orders.Arbitrary;
- ShowDialog = false;
+ ShowDialog = true;
SaveCommunication = false;
}
diff --git a/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.cs b/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.cs
index 8e785d7d3..b981ffed2 100644
--- a/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.cs
+++ b/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.cs
@@ -99,9 +99,12 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.disabled = disabled;
ShuffleTextBoxes();
+ ResizeDlgToFitEnabledControls();
WMStartState = new double[waterMetersCount];
WMStartStateStr = new string[waterMetersCount];
+
+ SetUiBusy(true);
}
///
@@ -130,8 +133,41 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.warningLimHi = 2 * errLimHi;
ShuffleTextBoxes();
+ ResizeDlgToFitEnabledControls();
+
WMEndState = new double[waterMetersCount];
+
+ SetUiBusy(true);
+ }
+
+ private void SetUiBusy(bool busy, long deltaTime = -1)
+ {
+ // show wait cursor for form and children
+ this.UseWaitCursor = busy;
+
+ // block editing textboxes
+ for (int i = 0; i < enabledTextBoxes.Count; i++)
+ {
+ enabledTextBoxes[i].ReadOnly = busy;
+ }
+
+ // disable buttons while busy
+ if (okButton != null) okButton.Enabled = !busy;
+
+
+ // show/hide "loading..." label
+ if (loadingLabel != null)
+ {
+ loadingLabel.Visible = busy;
+ loadingLabel.Text = "Loading...";
+ if (deltaTime > 0)
+ {
+ //show delta time in label
+ loadingLabel.Visible = true;
+ loadingLabel.Text = string.Format("Get: {0} s", deltaTime/1000.0);
+ }
+ }
}
///
@@ -159,6 +195,43 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
TextBoxesCount = TBF.Data.WMsCount;
}
}
+
+ void ResizeDlgToFitEnabledControls()
+ {
+ int xMax = 0;
+ int yMax = 0;
+ GetMaxDimensions(startTextBoxes,WaterMetersCount,ref xMax, ref yMax);
+ GetMaxDimensions(endTextBoxes,WaterMetersCount, ref xMax, ref yMax);
+
+ int shapeGap = 50;
+ okButton.Left = xMax + shapeGap;
+ xMax = okButton.Left + okButton.Width;
+
+ Width = xMax + shapeGap;
+ Height = yMax + shapeGap;
+ }
+
+ private void GetMaxDimensions(TextBox[] textBoxes, int waterMetersCount, ref int xMax, ref int yMax)
+ {
+ for (int i = 0; i < waterMetersCount; i++)
+ {
+ if (textBoxes[i].Left + textBoxes[i].Width > xMax)
+ xMax = textBoxes[i].Left + textBoxes[i].Width;
+ if (textBoxes[i].Top + textBoxes[i].Height > yMax)
+ yMax = textBoxes[i].Top + textBoxes[i].Height;
+ }
+ }
+
+ // private void GetMaxDimensions(TextBox[] textBoxes, ref int xMax, ref int yMax)
+ // {
+ // for (int i = 0; i < textBoxes.Length; i++)
+ // {
+ // if(!textBoxes[i].Visible)
+ // continue;
+ // if (textBoxes[i].Left + textBoxes[i].Width > xMax) xMax = textBoxes[i].Left + textBoxes[i].Width;
+ // if (textBoxes[i].Top + textBoxes[i].Height > yMax) yMax = textBoxes[i].Top + textBoxes[i].Height;
+ // }
+ // }
private void CycleEndForm_Load(object sender, EventArgs e)
{
@@ -211,6 +284,41 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
}
}
+ public void UpdateValues(bool stratValue = true, bool enableEdit = false, long deltaTime = -1)
+ {
+ // Ensure we are on the UI thread
+ if (InvokeRequired)
+ {
+ BeginInvoke(new Action(() => UpdateValues(stratValue, enableEdit)));
+ return;
+ }
+
+ for (int i = 0; i < TextBoxesCount; i++)
+ {
+ if (stratValue)
+ {
+ if (WMStartStateStr != null && i < WMStartStateStr.Length)
+ {
+ startTextBoxes[i].Text = WMStartStateStr[i];
+ }
+ }
+ else
+ {
+ // small bugfix: check WMEndState, not WMStartStateStr
+ if ((WMEndState != null && i < WMEndState.Length) &&
+ (WMStartStateStr != null && i < WMStartStateStr.Length && WMStartStateStr[i] != ""))
+ {
+ endTextBoxes[i].Text = WMEndState[i].ToString();
+ }
+ }
+ }
+
+ if (enableEdit)
+ SetUiBusy(false, deltaTime);
+ // if you also need to enable/disable editing, do it here,
+ // it's now safely on the UI thread.
+ }
+
void Localize()
{
Text = Strings.Water_Meter_States;
diff --git a/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.designer.cs b/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.designer.cs
index 1c1ef645a..e91037961 100644
--- a/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.designer.cs
+++ b/TBF/Rig/DataEntry/PoseidonCmd/TestStartEndForm.designer.cs
@@ -228,6 +228,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.endTextBox28 = new System.Windows.Forms.TextBox();
this.endTextBox27 = new System.Windows.Forms.TextBox();
this.endTextBox26 = new System.Windows.Forms.TextBox();
+ this.loadingLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// exclamation1
@@ -235,9 +236,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation1.AutoSize = true;
this.exclamation1.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation1.ForeColor = System.Drawing.Color.Red;
- this.exclamation1.Location = new System.Drawing.Point(532, 30);
+ this.exclamation1.Location = new System.Drawing.Point(798, 46);
+ this.exclamation1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation1.Name = "exclamation1";
- this.exclamation1.Size = new System.Drawing.Size(26, 32);
+ this.exclamation1.Size = new System.Drawing.Size(39, 49);
this.exclamation1.TabIndex = 5;
this.exclamation1.Text = "!";
this.exclamation1.Visible = false;
@@ -246,9 +248,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox1.Enabled = false;
this.startTextBox1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox1.Location = new System.Drawing.Point(185, 34);
+ this.startTextBox1.Location = new System.Drawing.Point(278, 52);
+ this.startTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox1.Name = "startTextBox1";
- this.startTextBox1.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox1.Size = new System.Drawing.Size(242, 37);
this.startTextBox1.TabIndex = 3;
this.startTextBox1.Visible = false;
this.startTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox1_KeyPress);
@@ -257,9 +260,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox1.Enabled = false;
this.endTextBox1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox1.Location = new System.Drawing.Point(367, 34);
+ this.endTextBox1.Location = new System.Drawing.Point(550, 52);
+ this.endTextBox1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox1.Name = "endTextBox1";
- this.endTextBox1.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox1.Size = new System.Drawing.Size(242, 37);
this.endTextBox1.TabIndex = 4;
this.endTextBox1.Visible = false;
this.endTextBox1.TextChanged += new System.EventHandler(this.endTextBox1_TextChanged);
@@ -269,9 +273,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label1.Location = new System.Drawing.Point(23, 37);
+ this.label1.Location = new System.Drawing.Point(34, 57);
+ this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(126, 18);
+ this.label1.Size = new System.Drawing.Size(181, 29);
this.label1.TabIndex = 2;
this.label1.Text = "Water Meter 1";
this.label1.Visible = false;
@@ -280,9 +285,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.okButton.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.okButton.ForeColor = System.Drawing.Color.Black;
- this.okButton.Location = new System.Drawing.Point(1138, 34);
+ this.okButton.Location = new System.Drawing.Point(1707, 52);
+ this.okButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.okButton.Name = "okButton";
- this.okButton.Size = new System.Drawing.Size(98, 63);
+ this.okButton.Size = new System.Drawing.Size(147, 97);
this.okButton.TabIndex = 100;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
@@ -293,9 +299,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation3.AutoSize = true;
this.exclamation3.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation3.ForeColor = System.Drawing.Color.Red;
- this.exclamation3.Location = new System.Drawing.Point(532, 90);
+ this.exclamation3.Location = new System.Drawing.Point(798, 138);
+ this.exclamation3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation3.Name = "exclamation3";
- this.exclamation3.Size = new System.Drawing.Size(26, 32);
+ this.exclamation3.Size = new System.Drawing.Size(39, 49);
this.exclamation3.TabIndex = 13;
this.exclamation3.Text = "!";
this.exclamation3.Visible = false;
@@ -304,9 +311,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox3.Enabled = false;
this.startTextBox3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox3.Location = new System.Drawing.Point(185, 94);
+ this.startTextBox3.Location = new System.Drawing.Point(278, 145);
+ this.startTextBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox3.Name = "startTextBox3";
- this.startTextBox3.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox3.Size = new System.Drawing.Size(242, 37);
this.startTextBox3.TabIndex = 11;
this.startTextBox3.Visible = false;
this.startTextBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox3_KeyPress);
@@ -315,9 +323,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox3.Enabled = false;
this.endTextBox3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox3.Location = new System.Drawing.Point(367, 94);
+ this.endTextBox3.Location = new System.Drawing.Point(550, 145);
+ this.endTextBox3.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox3.Name = "endTextBox3";
- this.endTextBox3.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox3.Size = new System.Drawing.Size(242, 37);
this.endTextBox3.TabIndex = 12;
this.endTextBox3.Visible = false;
this.endTextBox3.TextChanged += new System.EventHandler(this.endTextBox3_TextChanged);
@@ -327,9 +336,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label3.Location = new System.Drawing.Point(23, 97);
+ this.label3.Location = new System.Drawing.Point(34, 149);
+ this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(126, 18);
+ this.label3.Size = new System.Drawing.Size(181, 29);
this.label3.TabIndex = 10;
this.label3.Text = "Water Meter 3";
this.label3.Visible = false;
@@ -339,9 +349,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation4.AutoSize = true;
this.exclamation4.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation4.ForeColor = System.Drawing.Color.Red;
- this.exclamation4.Location = new System.Drawing.Point(532, 120);
+ this.exclamation4.Location = new System.Drawing.Point(798, 185);
+ this.exclamation4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation4.Name = "exclamation4";
- this.exclamation4.Size = new System.Drawing.Size(26, 32);
+ this.exclamation4.Size = new System.Drawing.Size(39, 49);
this.exclamation4.TabIndex = 17;
this.exclamation4.Text = "!";
this.exclamation4.Visible = false;
@@ -350,9 +361,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox4.Enabled = false;
this.startTextBox4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox4.Location = new System.Drawing.Point(185, 124);
+ this.startTextBox4.Location = new System.Drawing.Point(278, 191);
+ this.startTextBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox4.Name = "startTextBox4";
- this.startTextBox4.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox4.Size = new System.Drawing.Size(242, 37);
this.startTextBox4.TabIndex = 15;
this.startTextBox4.Visible = false;
this.startTextBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox4_KeyPress);
@@ -361,9 +373,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox4.Enabled = false;
this.endTextBox4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox4.Location = new System.Drawing.Point(367, 124);
+ this.endTextBox4.Location = new System.Drawing.Point(550, 191);
+ this.endTextBox4.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox4.Name = "endTextBox4";
- this.endTextBox4.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox4.Size = new System.Drawing.Size(242, 37);
this.endTextBox4.TabIndex = 16;
this.endTextBox4.Visible = false;
this.endTextBox4.TextChanged += new System.EventHandler(this.endTextBox4_TextChanged);
@@ -373,9 +386,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label4.Location = new System.Drawing.Point(23, 127);
+ this.label4.Location = new System.Drawing.Point(34, 195);
+ this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(126, 18);
+ this.label4.Size = new System.Drawing.Size(181, 29);
this.label4.TabIndex = 14;
this.label4.Text = "Water Meter 4";
this.label4.Visible = false;
@@ -385,9 +399,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation5.AutoSize = true;
this.exclamation5.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation5.ForeColor = System.Drawing.Color.Red;
- this.exclamation5.Location = new System.Drawing.Point(532, 150);
+ this.exclamation5.Location = new System.Drawing.Point(798, 231);
+ this.exclamation5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation5.Name = "exclamation5";
- this.exclamation5.Size = new System.Drawing.Size(26, 32);
+ this.exclamation5.Size = new System.Drawing.Size(39, 49);
this.exclamation5.TabIndex = 21;
this.exclamation5.Text = "!";
this.exclamation5.Visible = false;
@@ -396,9 +411,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox5.Enabled = false;
this.startTextBox5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox5.Location = new System.Drawing.Point(185, 154);
+ this.startTextBox5.Location = new System.Drawing.Point(278, 237);
+ this.startTextBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox5.Name = "startTextBox5";
- this.startTextBox5.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox5.Size = new System.Drawing.Size(242, 37);
this.startTextBox5.TabIndex = 19;
this.startTextBox5.Visible = false;
this.startTextBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox5_KeyPress);
@@ -407,9 +423,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox5.Enabled = false;
this.endTextBox5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox5.Location = new System.Drawing.Point(367, 154);
+ this.endTextBox5.Location = new System.Drawing.Point(550, 237);
+ this.endTextBox5.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox5.Name = "endTextBox5";
- this.endTextBox5.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox5.Size = new System.Drawing.Size(242, 37);
this.endTextBox5.TabIndex = 20;
this.endTextBox5.Visible = false;
this.endTextBox5.TextChanged += new System.EventHandler(this.endTextBox5_TextChanged);
@@ -419,9 +436,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label5.Location = new System.Drawing.Point(23, 157);
+ this.label5.Location = new System.Drawing.Point(34, 242);
+ this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(126, 18);
+ this.label5.Size = new System.Drawing.Size(181, 29);
this.label5.TabIndex = 18;
this.label5.Text = "Water Meter 5";
this.label5.Visible = false;
@@ -431,9 +449,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation6.AutoSize = true;
this.exclamation6.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation6.ForeColor = System.Drawing.Color.Red;
- this.exclamation6.Location = new System.Drawing.Point(532, 180);
+ this.exclamation6.Location = new System.Drawing.Point(798, 277);
+ this.exclamation6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation6.Name = "exclamation6";
- this.exclamation6.Size = new System.Drawing.Size(26, 32);
+ this.exclamation6.Size = new System.Drawing.Size(39, 49);
this.exclamation6.TabIndex = 25;
this.exclamation6.Text = "!";
this.exclamation6.Visible = false;
@@ -442,9 +461,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox6.Enabled = false;
this.startTextBox6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox6.Location = new System.Drawing.Point(185, 184);
+ this.startTextBox6.Location = new System.Drawing.Point(278, 283);
+ this.startTextBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox6.Name = "startTextBox6";
- this.startTextBox6.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox6.Size = new System.Drawing.Size(242, 37);
this.startTextBox6.TabIndex = 23;
this.startTextBox6.Visible = false;
this.startTextBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox6_KeyPress);
@@ -453,9 +473,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox6.Enabled = false;
this.endTextBox6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox6.Location = new System.Drawing.Point(367, 184);
+ this.endTextBox6.Location = new System.Drawing.Point(550, 283);
+ this.endTextBox6.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox6.Name = "endTextBox6";
- this.endTextBox6.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox6.Size = new System.Drawing.Size(242, 37);
this.endTextBox6.TabIndex = 24;
this.endTextBox6.Visible = false;
this.endTextBox6.TextChanged += new System.EventHandler(this.endTextBox6_TextChanged);
@@ -465,9 +486,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label6.Location = new System.Drawing.Point(23, 187);
+ this.label6.Location = new System.Drawing.Point(34, 288);
+ this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(126, 18);
+ this.label6.Size = new System.Drawing.Size(181, 29);
this.label6.TabIndex = 22;
this.label6.Text = "Water Meter 6";
this.label6.Visible = false;
@@ -476,9 +498,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startLabel.AutoSize = true;
this.startLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startLabel.Location = new System.Drawing.Point(237, 6);
+ this.startLabel.Location = new System.Drawing.Point(356, 9);
+ this.startLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.startLabel.Name = "startLabel";
- this.startLabel.Size = new System.Drawing.Size(56, 23);
+ this.startLabel.Size = new System.Drawing.Size(86, 35);
this.startLabel.TabIndex = 0;
this.startLabel.Text = "Start";
//
@@ -486,9 +509,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endLabel.AutoSize = true;
this.endLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endLabel.Location = new System.Drawing.Point(423, 6);
+ this.endLabel.Location = new System.Drawing.Point(634, 9);
+ this.endLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.endLabel.Name = "endLabel";
- this.endLabel.Size = new System.Drawing.Size(46, 23);
+ this.endLabel.Size = new System.Drawing.Size(69, 35);
this.endLabel.TabIndex = 1;
this.endLabel.Text = "End";
//
@@ -496,9 +520,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label2.Location = new System.Drawing.Point(23, 67);
+ this.label2.Location = new System.Drawing.Point(34, 103);
+ this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(126, 18);
+ this.label2.Size = new System.Drawing.Size(181, 29);
this.label2.TabIndex = 6;
this.label2.Text = "Water Meter 2";
this.label2.Visible = false;
@@ -507,9 +532,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox2.Enabled = false;
this.endTextBox2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox2.Location = new System.Drawing.Point(367, 64);
+ this.endTextBox2.Location = new System.Drawing.Point(550, 98);
+ this.endTextBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox2.Name = "endTextBox2";
- this.endTextBox2.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox2.Size = new System.Drawing.Size(242, 37);
this.endTextBox2.TabIndex = 8;
this.endTextBox2.Visible = false;
this.endTextBox2.TextChanged += new System.EventHandler(this.endTextBox2_TextChanged);
@@ -519,9 +545,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox2.Enabled = false;
this.startTextBox2.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox2.Location = new System.Drawing.Point(185, 64);
+ this.startTextBox2.Location = new System.Drawing.Point(278, 98);
+ this.startTextBox2.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox2.Name = "startTextBox2";
- this.startTextBox2.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox2.Size = new System.Drawing.Size(242, 37);
this.startTextBox2.TabIndex = 7;
this.startTextBox2.Visible = false;
this.startTextBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox2_KeyPress);
@@ -531,9 +558,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation2.AutoSize = true;
this.exclamation2.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation2.ForeColor = System.Drawing.Color.Red;
- this.exclamation2.Location = new System.Drawing.Point(532, 60);
+ this.exclamation2.Location = new System.Drawing.Point(798, 92);
+ this.exclamation2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation2.Name = "exclamation2";
- this.exclamation2.Size = new System.Drawing.Size(26, 32);
+ this.exclamation2.Size = new System.Drawing.Size(39, 49);
this.exclamation2.TabIndex = 9;
this.exclamation2.Text = "!";
this.exclamation2.Visible = false;
@@ -543,9 +571,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation7.AutoSize = true;
this.exclamation7.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation7.ForeColor = System.Drawing.Color.Red;
- this.exclamation7.Location = new System.Drawing.Point(532, 210);
+ this.exclamation7.Location = new System.Drawing.Point(798, 323);
+ this.exclamation7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation7.Name = "exclamation7";
- this.exclamation7.Size = new System.Drawing.Size(26, 32);
+ this.exclamation7.Size = new System.Drawing.Size(39, 49);
this.exclamation7.TabIndex = 29;
this.exclamation7.Text = "!";
this.exclamation7.Visible = false;
@@ -554,9 +583,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox7.Enabled = false;
this.startTextBox7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox7.Location = new System.Drawing.Point(185, 214);
+ this.startTextBox7.Location = new System.Drawing.Point(278, 329);
+ this.startTextBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox7.Name = "startTextBox7";
- this.startTextBox7.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox7.Size = new System.Drawing.Size(242, 37);
this.startTextBox7.TabIndex = 27;
this.startTextBox7.Visible = false;
this.startTextBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox7_KeyPress);
@@ -565,9 +595,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox7.Enabled = false;
this.endTextBox7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox7.Location = new System.Drawing.Point(367, 214);
+ this.endTextBox7.Location = new System.Drawing.Point(550, 329);
+ this.endTextBox7.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox7.Name = "endTextBox7";
- this.endTextBox7.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox7.Size = new System.Drawing.Size(242, 37);
this.endTextBox7.TabIndex = 28;
this.endTextBox7.Visible = false;
this.endTextBox7.TextChanged += new System.EventHandler(this.endTextBox7_TextChanged);
@@ -577,9 +608,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label7.Location = new System.Drawing.Point(23, 217);
+ this.label7.Location = new System.Drawing.Point(34, 334);
+ this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(126, 18);
+ this.label7.Size = new System.Drawing.Size(181, 29);
this.label7.TabIndex = 26;
this.label7.Text = "Water Meter 7";
this.label7.Visible = false;
@@ -589,9 +621,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation8.AutoSize = true;
this.exclamation8.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation8.ForeColor = System.Drawing.Color.Red;
- this.exclamation8.Location = new System.Drawing.Point(532, 240);
+ this.exclamation8.Location = new System.Drawing.Point(798, 369);
+ this.exclamation8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation8.Name = "exclamation8";
- this.exclamation8.Size = new System.Drawing.Size(26, 32);
+ this.exclamation8.Size = new System.Drawing.Size(39, 49);
this.exclamation8.TabIndex = 33;
this.exclamation8.Text = "!";
this.exclamation8.Visible = false;
@@ -600,9 +633,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox8.Enabled = false;
this.startTextBox8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox8.Location = new System.Drawing.Point(185, 244);
+ this.startTextBox8.Location = new System.Drawing.Point(278, 375);
+ this.startTextBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox8.Name = "startTextBox8";
- this.startTextBox8.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox8.Size = new System.Drawing.Size(242, 37);
this.startTextBox8.TabIndex = 31;
this.startTextBox8.Visible = false;
this.startTextBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox8_KeyPress);
@@ -611,9 +645,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox8.Enabled = false;
this.endTextBox8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox8.Location = new System.Drawing.Point(367, 244);
+ this.endTextBox8.Location = new System.Drawing.Point(550, 375);
+ this.endTextBox8.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox8.Name = "endTextBox8";
- this.endTextBox8.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox8.Size = new System.Drawing.Size(242, 37);
this.endTextBox8.TabIndex = 32;
this.endTextBox8.Visible = false;
this.endTextBox8.TextChanged += new System.EventHandler(this.endTextBox8_TextChanged);
@@ -623,9 +658,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label8.Location = new System.Drawing.Point(23, 247);
+ this.label8.Location = new System.Drawing.Point(34, 380);
+ this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(126, 18);
+ this.label8.Size = new System.Drawing.Size(181, 29);
this.label8.TabIndex = 30;
this.label8.Text = "Water Meter 8";
this.label8.Visible = false;
@@ -635,9 +671,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation9.AutoSize = true;
this.exclamation9.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation9.ForeColor = System.Drawing.Color.Red;
- this.exclamation9.Location = new System.Drawing.Point(532, 270);
+ this.exclamation9.Location = new System.Drawing.Point(798, 415);
+ this.exclamation9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation9.Name = "exclamation9";
- this.exclamation9.Size = new System.Drawing.Size(26, 32);
+ this.exclamation9.Size = new System.Drawing.Size(39, 49);
this.exclamation9.TabIndex = 37;
this.exclamation9.Text = "!";
this.exclamation9.Visible = false;
@@ -646,9 +683,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox9.Enabled = false;
this.startTextBox9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox9.Location = new System.Drawing.Point(185, 274);
+ this.startTextBox9.Location = new System.Drawing.Point(278, 422);
+ this.startTextBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox9.Name = "startTextBox9";
- this.startTextBox9.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox9.Size = new System.Drawing.Size(242, 37);
this.startTextBox9.TabIndex = 35;
this.startTextBox9.Visible = false;
this.startTextBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox9_KeyPress);
@@ -657,9 +695,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox9.Enabled = false;
this.endTextBox9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox9.Location = new System.Drawing.Point(367, 274);
+ this.endTextBox9.Location = new System.Drawing.Point(550, 422);
+ this.endTextBox9.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox9.Name = "endTextBox9";
- this.endTextBox9.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox9.Size = new System.Drawing.Size(242, 37);
this.endTextBox9.TabIndex = 36;
this.endTextBox9.Visible = false;
this.endTextBox9.TextChanged += new System.EventHandler(this.endTextBox9_TextChanged);
@@ -669,9 +708,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label9.Location = new System.Drawing.Point(23, 277);
+ this.label9.Location = new System.Drawing.Point(34, 426);
+ this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(126, 18);
+ this.label9.Size = new System.Drawing.Size(181, 29);
this.label9.TabIndex = 34;
this.label9.Text = "Water Meter 9";
this.label9.Visible = false;
@@ -681,9 +721,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation10.AutoSize = true;
this.exclamation10.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation10.ForeColor = System.Drawing.Color.Red;
- this.exclamation10.Location = new System.Drawing.Point(532, 300);
+ this.exclamation10.Location = new System.Drawing.Point(798, 462);
+ this.exclamation10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation10.Name = "exclamation10";
- this.exclamation10.Size = new System.Drawing.Size(26, 32);
+ this.exclamation10.Size = new System.Drawing.Size(39, 49);
this.exclamation10.TabIndex = 41;
this.exclamation10.Text = "!";
this.exclamation10.Visible = false;
@@ -692,9 +733,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox10.Enabled = false;
this.startTextBox10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox10.Location = new System.Drawing.Point(185, 304);
+ this.startTextBox10.Location = new System.Drawing.Point(278, 468);
+ this.startTextBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox10.Name = "startTextBox10";
- this.startTextBox10.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox10.Size = new System.Drawing.Size(242, 37);
this.startTextBox10.TabIndex = 39;
this.startTextBox10.Visible = false;
this.startTextBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox10_KeyPress);
@@ -703,9 +745,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox10.Enabled = false;
this.endTextBox10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox10.Location = new System.Drawing.Point(367, 304);
+ this.endTextBox10.Location = new System.Drawing.Point(550, 468);
+ this.endTextBox10.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox10.Name = "endTextBox10";
- this.endTextBox10.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox10.Size = new System.Drawing.Size(242, 37);
this.endTextBox10.TabIndex = 40;
this.endTextBox10.Visible = false;
this.endTextBox10.TextChanged += new System.EventHandler(this.endTextBox10_TextChanged);
@@ -715,9 +758,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label10.Location = new System.Drawing.Point(23, 307);
+ this.label10.Location = new System.Drawing.Point(34, 472);
+ this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(136, 18);
+ this.label10.Size = new System.Drawing.Size(196, 29);
this.label10.TabIndex = 38;
this.label10.Text = "Water Meter 10";
this.label10.Visible = false;
@@ -727,9 +771,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation11.AutoSize = true;
this.exclamation11.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation11.ForeColor = System.Drawing.Color.Red;
- this.exclamation11.Location = new System.Drawing.Point(532, 330);
+ this.exclamation11.Location = new System.Drawing.Point(798, 508);
+ this.exclamation11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation11.Name = "exclamation11";
- this.exclamation11.Size = new System.Drawing.Size(26, 32);
+ this.exclamation11.Size = new System.Drawing.Size(39, 49);
this.exclamation11.TabIndex = 45;
this.exclamation11.Text = "!";
this.exclamation11.Visible = false;
@@ -738,9 +783,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox11.Enabled = false;
this.startTextBox11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox11.Location = new System.Drawing.Point(185, 334);
+ this.startTextBox11.Location = new System.Drawing.Point(278, 514);
+ this.startTextBox11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox11.Name = "startTextBox11";
- this.startTextBox11.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox11.Size = new System.Drawing.Size(242, 37);
this.startTextBox11.TabIndex = 43;
this.startTextBox11.Visible = false;
this.startTextBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox11_KeyPress);
@@ -749,9 +795,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox11.Enabled = false;
this.endTextBox11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox11.Location = new System.Drawing.Point(367, 334);
+ this.endTextBox11.Location = new System.Drawing.Point(550, 514);
+ this.endTextBox11.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox11.Name = "endTextBox11";
- this.endTextBox11.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox11.Size = new System.Drawing.Size(242, 37);
this.endTextBox11.TabIndex = 44;
this.endTextBox11.Visible = false;
this.endTextBox11.TextChanged += new System.EventHandler(this.endTextBox11_TextChanged);
@@ -761,9 +808,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label11.Location = new System.Drawing.Point(23, 337);
+ this.label11.Location = new System.Drawing.Point(34, 518);
+ this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(136, 18);
+ this.label11.Size = new System.Drawing.Size(196, 29);
this.label11.TabIndex = 42;
this.label11.Text = "Water Meter 11";
this.label11.Visible = false;
@@ -773,9 +821,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation12.AutoSize = true;
this.exclamation12.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation12.ForeColor = System.Drawing.Color.Red;
- this.exclamation12.Location = new System.Drawing.Point(532, 360);
+ this.exclamation12.Location = new System.Drawing.Point(798, 554);
+ this.exclamation12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation12.Name = "exclamation12";
- this.exclamation12.Size = new System.Drawing.Size(26, 32);
+ this.exclamation12.Size = new System.Drawing.Size(39, 49);
this.exclamation12.TabIndex = 49;
this.exclamation12.Text = "!";
this.exclamation12.Visible = false;
@@ -784,9 +833,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox12.Enabled = false;
this.startTextBox12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox12.Location = new System.Drawing.Point(185, 364);
+ this.startTextBox12.Location = new System.Drawing.Point(278, 560);
+ this.startTextBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox12.Name = "startTextBox12";
- this.startTextBox12.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox12.Size = new System.Drawing.Size(242, 37);
this.startTextBox12.TabIndex = 47;
this.startTextBox12.Visible = false;
this.startTextBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox12_KeyPress);
@@ -795,9 +845,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox12.Enabled = false;
this.endTextBox12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox12.Location = new System.Drawing.Point(367, 364);
+ this.endTextBox12.Location = new System.Drawing.Point(550, 560);
+ this.endTextBox12.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox12.Name = "endTextBox12";
- this.endTextBox12.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox12.Size = new System.Drawing.Size(242, 37);
this.endTextBox12.TabIndex = 48;
this.endTextBox12.Visible = false;
this.endTextBox12.TextChanged += new System.EventHandler(this.endTextBox12_TextChanged);
@@ -807,9 +858,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label12.Location = new System.Drawing.Point(23, 367);
+ this.label12.Location = new System.Drawing.Point(34, 565);
+ this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(136, 18);
+ this.label12.Size = new System.Drawing.Size(196, 29);
this.label12.TabIndex = 46;
this.label12.Text = "Water Meter 12";
this.label12.Visible = false;
@@ -819,9 +871,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation24.AutoSize = true;
this.exclamation24.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation24.ForeColor = System.Drawing.Color.Red;
- this.exclamation24.Location = new System.Drawing.Point(532, 720);
+ this.exclamation24.Location = new System.Drawing.Point(798, 1108);
+ this.exclamation24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation24.Name = "exclamation24";
- this.exclamation24.Size = new System.Drawing.Size(26, 32);
+ this.exclamation24.Size = new System.Drawing.Size(39, 49);
this.exclamation24.TabIndex = 99;
this.exclamation24.Text = "!";
this.exclamation24.Visible = false;
@@ -830,9 +883,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox24.Enabled = false;
this.startTextBox24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox24.Location = new System.Drawing.Point(185, 724);
+ this.startTextBox24.Location = new System.Drawing.Point(278, 1114);
+ this.startTextBox24.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox24.Name = "startTextBox24";
- this.startTextBox24.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox24.Size = new System.Drawing.Size(242, 37);
this.startTextBox24.TabIndex = 97;
this.startTextBox24.Visible = false;
this.startTextBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox24_KeyPress);
@@ -841,9 +895,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox24.Enabled = false;
this.endTextBox24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox24.Location = new System.Drawing.Point(367, 724);
+ this.endTextBox24.Location = new System.Drawing.Point(550, 1114);
+ this.endTextBox24.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox24.Name = "endTextBox24";
- this.endTextBox24.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox24.Size = new System.Drawing.Size(242, 37);
this.endTextBox24.TabIndex = 98;
this.endTextBox24.Visible = false;
this.endTextBox24.TextChanged += new System.EventHandler(this.endTextBox24_TextChanged);
@@ -853,9 +908,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label24.AutoSize = true;
this.label24.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label24.Location = new System.Drawing.Point(23, 727);
+ this.label24.Location = new System.Drawing.Point(34, 1118);
+ this.label24.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(136, 18);
+ this.label24.Size = new System.Drawing.Size(196, 29);
this.label24.TabIndex = 96;
this.label24.Text = "Water Meter 24";
this.label24.Visible = false;
@@ -865,9 +921,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation23.AutoSize = true;
this.exclamation23.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation23.ForeColor = System.Drawing.Color.Red;
- this.exclamation23.Location = new System.Drawing.Point(532, 690);
+ this.exclamation23.Location = new System.Drawing.Point(798, 1062);
+ this.exclamation23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation23.Name = "exclamation23";
- this.exclamation23.Size = new System.Drawing.Size(26, 32);
+ this.exclamation23.Size = new System.Drawing.Size(39, 49);
this.exclamation23.TabIndex = 95;
this.exclamation23.Text = "!";
this.exclamation23.Visible = false;
@@ -876,9 +933,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox23.Enabled = false;
this.startTextBox23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox23.Location = new System.Drawing.Point(185, 694);
+ this.startTextBox23.Location = new System.Drawing.Point(278, 1068);
+ this.startTextBox23.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox23.Name = "startTextBox23";
- this.startTextBox23.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox23.Size = new System.Drawing.Size(242, 37);
this.startTextBox23.TabIndex = 93;
this.startTextBox23.Visible = false;
this.startTextBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox23_KeyPress);
@@ -887,9 +945,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox23.Enabled = false;
this.endTextBox23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox23.Location = new System.Drawing.Point(367, 694);
+ this.endTextBox23.Location = new System.Drawing.Point(550, 1068);
+ this.endTextBox23.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox23.Name = "endTextBox23";
- this.endTextBox23.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox23.Size = new System.Drawing.Size(242, 37);
this.endTextBox23.TabIndex = 94;
this.endTextBox23.Visible = false;
this.endTextBox23.TextChanged += new System.EventHandler(this.endTextBox23_TextChanged);
@@ -899,9 +958,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label23.AutoSize = true;
this.label23.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label23.Location = new System.Drawing.Point(23, 697);
+ this.label23.Location = new System.Drawing.Point(34, 1072);
+ this.label23.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(136, 18);
+ this.label23.Size = new System.Drawing.Size(196, 29);
this.label23.TabIndex = 92;
this.label23.Text = "Water Meter 23";
this.label23.Visible = false;
@@ -911,9 +971,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation22.AutoSize = true;
this.exclamation22.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation22.ForeColor = System.Drawing.Color.Red;
- this.exclamation22.Location = new System.Drawing.Point(532, 660);
+ this.exclamation22.Location = new System.Drawing.Point(798, 1015);
+ this.exclamation22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation22.Name = "exclamation22";
- this.exclamation22.Size = new System.Drawing.Size(26, 32);
+ this.exclamation22.Size = new System.Drawing.Size(39, 49);
this.exclamation22.TabIndex = 91;
this.exclamation22.Text = "!";
this.exclamation22.Visible = false;
@@ -922,9 +983,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox22.Enabled = false;
this.startTextBox22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox22.Location = new System.Drawing.Point(185, 664);
+ this.startTextBox22.Location = new System.Drawing.Point(278, 1022);
+ this.startTextBox22.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox22.Name = "startTextBox22";
- this.startTextBox22.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox22.Size = new System.Drawing.Size(242, 37);
this.startTextBox22.TabIndex = 89;
this.startTextBox22.Visible = false;
this.startTextBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox22_KeyPress);
@@ -933,9 +995,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox22.Enabled = false;
this.endTextBox22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox22.Location = new System.Drawing.Point(367, 664);
+ this.endTextBox22.Location = new System.Drawing.Point(550, 1022);
+ this.endTextBox22.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox22.Name = "endTextBox22";
- this.endTextBox22.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox22.Size = new System.Drawing.Size(242, 37);
this.endTextBox22.TabIndex = 90;
this.endTextBox22.Visible = false;
this.endTextBox22.TextChanged += new System.EventHandler(this.endTextBox22_TextChanged);
@@ -945,9 +1008,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label22.AutoSize = true;
this.label22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label22.Location = new System.Drawing.Point(23, 667);
+ this.label22.Location = new System.Drawing.Point(34, 1026);
+ this.label22.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(136, 18);
+ this.label22.Size = new System.Drawing.Size(196, 29);
this.label22.TabIndex = 88;
this.label22.Text = "Water Meter 22";
this.label22.Visible = false;
@@ -957,9 +1021,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation21.AutoSize = true;
this.exclamation21.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation21.ForeColor = System.Drawing.Color.Red;
- this.exclamation21.Location = new System.Drawing.Point(532, 630);
+ this.exclamation21.Location = new System.Drawing.Point(798, 969);
+ this.exclamation21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation21.Name = "exclamation21";
- this.exclamation21.Size = new System.Drawing.Size(26, 32);
+ this.exclamation21.Size = new System.Drawing.Size(39, 49);
this.exclamation21.TabIndex = 87;
this.exclamation21.Text = "!";
this.exclamation21.Visible = false;
@@ -968,9 +1033,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox21.Enabled = false;
this.startTextBox21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox21.Location = new System.Drawing.Point(185, 634);
+ this.startTextBox21.Location = new System.Drawing.Point(278, 975);
+ this.startTextBox21.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox21.Name = "startTextBox21";
- this.startTextBox21.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox21.Size = new System.Drawing.Size(242, 37);
this.startTextBox21.TabIndex = 85;
this.startTextBox21.Visible = false;
this.startTextBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox21_KeyPress);
@@ -979,9 +1045,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox21.Enabled = false;
this.endTextBox21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox21.Location = new System.Drawing.Point(367, 634);
+ this.endTextBox21.Location = new System.Drawing.Point(550, 975);
+ this.endTextBox21.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox21.Name = "endTextBox21";
- this.endTextBox21.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox21.Size = new System.Drawing.Size(242, 37);
this.endTextBox21.TabIndex = 86;
this.endTextBox21.Visible = false;
this.endTextBox21.TextChanged += new System.EventHandler(this.endTextBox21_TextChanged);
@@ -991,9 +1058,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label21.AutoSize = true;
this.label21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label21.Location = new System.Drawing.Point(23, 637);
+ this.label21.Location = new System.Drawing.Point(34, 980);
+ this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(136, 18);
+ this.label21.Size = new System.Drawing.Size(196, 29);
this.label21.TabIndex = 84;
this.label21.Text = "Water Meter 21";
this.label21.Visible = false;
@@ -1003,9 +1071,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation20.AutoSize = true;
this.exclamation20.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation20.ForeColor = System.Drawing.Color.Red;
- this.exclamation20.Location = new System.Drawing.Point(532, 600);
+ this.exclamation20.Location = new System.Drawing.Point(798, 923);
+ this.exclamation20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation20.Name = "exclamation20";
- this.exclamation20.Size = new System.Drawing.Size(26, 32);
+ this.exclamation20.Size = new System.Drawing.Size(39, 49);
this.exclamation20.TabIndex = 83;
this.exclamation20.Text = "!";
this.exclamation20.Visible = false;
@@ -1014,9 +1083,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox20.Enabled = false;
this.startTextBox20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox20.Location = new System.Drawing.Point(185, 604);
+ this.startTextBox20.Location = new System.Drawing.Point(278, 929);
+ this.startTextBox20.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox20.Name = "startTextBox20";
- this.startTextBox20.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox20.Size = new System.Drawing.Size(242, 37);
this.startTextBox20.TabIndex = 81;
this.startTextBox20.Visible = false;
this.startTextBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox20_KeyPress);
@@ -1025,9 +1095,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox20.Enabled = false;
this.endTextBox20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox20.Location = new System.Drawing.Point(367, 604);
+ this.endTextBox20.Location = new System.Drawing.Point(550, 929);
+ this.endTextBox20.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox20.Name = "endTextBox20";
- this.endTextBox20.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox20.Size = new System.Drawing.Size(242, 37);
this.endTextBox20.TabIndex = 82;
this.endTextBox20.Visible = false;
this.endTextBox20.TextChanged += new System.EventHandler(this.endTextBox20_TextChanged);
@@ -1037,9 +1108,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label20.AutoSize = true;
this.label20.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label20.Location = new System.Drawing.Point(23, 607);
+ this.label20.Location = new System.Drawing.Point(34, 934);
+ this.label20.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(136, 18);
+ this.label20.Size = new System.Drawing.Size(196, 29);
this.label20.TabIndex = 80;
this.label20.Text = "Water Meter 20";
this.label20.Visible = false;
@@ -1049,9 +1121,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation19.AutoSize = true;
this.exclamation19.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation19.ForeColor = System.Drawing.Color.Red;
- this.exclamation19.Location = new System.Drawing.Point(532, 570);
+ this.exclamation19.Location = new System.Drawing.Point(798, 877);
+ this.exclamation19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation19.Name = "exclamation19";
- this.exclamation19.Size = new System.Drawing.Size(26, 32);
+ this.exclamation19.Size = new System.Drawing.Size(39, 49);
this.exclamation19.TabIndex = 79;
this.exclamation19.Text = "!";
this.exclamation19.Visible = false;
@@ -1060,9 +1133,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox19.Enabled = false;
this.startTextBox19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox19.Location = new System.Drawing.Point(185, 574);
+ this.startTextBox19.Location = new System.Drawing.Point(278, 883);
+ this.startTextBox19.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox19.Name = "startTextBox19";
- this.startTextBox19.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox19.Size = new System.Drawing.Size(242, 37);
this.startTextBox19.TabIndex = 77;
this.startTextBox19.Visible = false;
this.startTextBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox19_KeyPress);
@@ -1071,9 +1145,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox19.Enabled = false;
this.endTextBox19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox19.Location = new System.Drawing.Point(367, 574);
+ this.endTextBox19.Location = new System.Drawing.Point(550, 883);
+ this.endTextBox19.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox19.Name = "endTextBox19";
- this.endTextBox19.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox19.Size = new System.Drawing.Size(242, 37);
this.endTextBox19.TabIndex = 78;
this.endTextBox19.Visible = false;
this.endTextBox19.TextChanged += new System.EventHandler(this.endTextBox19_TextChanged);
@@ -1083,9 +1158,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label19.AutoSize = true;
this.label19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label19.Location = new System.Drawing.Point(23, 577);
+ this.label19.Location = new System.Drawing.Point(34, 888);
+ this.label19.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(136, 18);
+ this.label19.Size = new System.Drawing.Size(196, 29);
this.label19.TabIndex = 76;
this.label19.Text = "Water Meter 19";
this.label19.Visible = false;
@@ -1095,9 +1171,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation18.AutoSize = true;
this.exclamation18.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation18.ForeColor = System.Drawing.Color.Red;
- this.exclamation18.Location = new System.Drawing.Point(532, 540);
+ this.exclamation18.Location = new System.Drawing.Point(798, 831);
+ this.exclamation18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation18.Name = "exclamation18";
- this.exclamation18.Size = new System.Drawing.Size(26, 32);
+ this.exclamation18.Size = new System.Drawing.Size(39, 49);
this.exclamation18.TabIndex = 75;
this.exclamation18.Text = "!";
this.exclamation18.Visible = false;
@@ -1107,9 +1184,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation17.AutoSize = true;
this.exclamation17.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation17.ForeColor = System.Drawing.Color.Red;
- this.exclamation17.Location = new System.Drawing.Point(532, 510);
+ this.exclamation17.Location = new System.Drawing.Point(798, 785);
+ this.exclamation17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation17.Name = "exclamation17";
- this.exclamation17.Size = new System.Drawing.Size(26, 32);
+ this.exclamation17.Size = new System.Drawing.Size(39, 49);
this.exclamation17.TabIndex = 71;
this.exclamation17.Text = "!";
this.exclamation17.Visible = false;
@@ -1118,9 +1196,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox18.Enabled = false;
this.startTextBox18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox18.Location = new System.Drawing.Point(185, 544);
+ this.startTextBox18.Location = new System.Drawing.Point(278, 837);
+ this.startTextBox18.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox18.Name = "startTextBox18";
- this.startTextBox18.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox18.Size = new System.Drawing.Size(242, 37);
this.startTextBox18.TabIndex = 73;
this.startTextBox18.Visible = false;
this.startTextBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox18_KeyPress);
@@ -1130,9 +1209,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation16.AutoSize = true;
this.exclamation16.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation16.ForeColor = System.Drawing.Color.Red;
- this.exclamation16.Location = new System.Drawing.Point(532, 480);
+ this.exclamation16.Location = new System.Drawing.Point(798, 738);
+ this.exclamation16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation16.Name = "exclamation16";
- this.exclamation16.Size = new System.Drawing.Size(26, 32);
+ this.exclamation16.Size = new System.Drawing.Size(39, 49);
this.exclamation16.TabIndex = 67;
this.exclamation16.Text = "!";
this.exclamation16.Visible = false;
@@ -1141,9 +1221,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox18.Enabled = false;
this.endTextBox18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox18.Location = new System.Drawing.Point(367, 544);
+ this.endTextBox18.Location = new System.Drawing.Point(550, 837);
+ this.endTextBox18.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox18.Name = "endTextBox18";
- this.endTextBox18.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox18.Size = new System.Drawing.Size(242, 37);
this.endTextBox18.TabIndex = 74;
this.endTextBox18.Visible = false;
this.endTextBox18.TextChanged += new System.EventHandler(this.endTextBox18_TextChanged);
@@ -1153,9 +1234,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label18.AutoSize = true;
this.label18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label18.Location = new System.Drawing.Point(23, 547);
+ this.label18.Location = new System.Drawing.Point(34, 842);
+ this.label18.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(136, 18);
+ this.label18.Size = new System.Drawing.Size(196, 29);
this.label18.TabIndex = 72;
this.label18.Text = "Water Meter 18";
this.label18.Visible = false;
@@ -1164,9 +1246,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox17.Enabled = false;
this.startTextBox17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox17.Location = new System.Drawing.Point(185, 514);
+ this.startTextBox17.Location = new System.Drawing.Point(278, 791);
+ this.startTextBox17.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox17.Name = "startTextBox17";
- this.startTextBox17.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox17.Size = new System.Drawing.Size(242, 37);
this.startTextBox17.TabIndex = 69;
this.startTextBox17.Visible = false;
this.startTextBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox17_KeyPress);
@@ -1176,9 +1259,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation15.AutoSize = true;
this.exclamation15.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation15.ForeColor = System.Drawing.Color.Red;
- this.exclamation15.Location = new System.Drawing.Point(532, 450);
+ this.exclamation15.Location = new System.Drawing.Point(798, 692);
+ this.exclamation15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation15.Name = "exclamation15";
- this.exclamation15.Size = new System.Drawing.Size(26, 32);
+ this.exclamation15.Size = new System.Drawing.Size(39, 49);
this.exclamation15.TabIndex = 63;
this.exclamation15.Text = "!";
this.exclamation15.Visible = false;
@@ -1187,9 +1271,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox17.Enabled = false;
this.endTextBox17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox17.Location = new System.Drawing.Point(367, 514);
+ this.endTextBox17.Location = new System.Drawing.Point(550, 791);
+ this.endTextBox17.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox17.Name = "endTextBox17";
- this.endTextBox17.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox17.Size = new System.Drawing.Size(242, 37);
this.endTextBox17.TabIndex = 70;
this.endTextBox17.Visible = false;
this.endTextBox17.TextChanged += new System.EventHandler(this.endTextBox17_TextChanged);
@@ -1199,9 +1284,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label17.AutoSize = true;
this.label17.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label17.Location = new System.Drawing.Point(23, 517);
+ this.label17.Location = new System.Drawing.Point(34, 795);
+ this.label17.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(136, 18);
+ this.label17.Size = new System.Drawing.Size(196, 29);
this.label17.TabIndex = 68;
this.label17.Text = "Water Meter 17";
this.label17.Visible = false;
@@ -1210,9 +1296,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox16.Enabled = false;
this.startTextBox16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox16.Location = new System.Drawing.Point(185, 484);
+ this.startTextBox16.Location = new System.Drawing.Point(278, 745);
+ this.startTextBox16.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox16.Name = "startTextBox16";
- this.startTextBox16.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox16.Size = new System.Drawing.Size(242, 37);
this.startTextBox16.TabIndex = 65;
this.startTextBox16.Visible = false;
this.startTextBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox16_KeyPress);
@@ -1222,9 +1309,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation14.AutoSize = true;
this.exclamation14.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation14.ForeColor = System.Drawing.Color.Red;
- this.exclamation14.Location = new System.Drawing.Point(532, 420);
+ this.exclamation14.Location = new System.Drawing.Point(798, 646);
+ this.exclamation14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation14.Name = "exclamation14";
- this.exclamation14.Size = new System.Drawing.Size(26, 32);
+ this.exclamation14.Size = new System.Drawing.Size(39, 49);
this.exclamation14.TabIndex = 59;
this.exclamation14.Text = "!";
this.exclamation14.Visible = false;
@@ -1233,9 +1321,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox16.Enabled = false;
this.endTextBox16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox16.Location = new System.Drawing.Point(367, 484);
+ this.endTextBox16.Location = new System.Drawing.Point(550, 745);
+ this.endTextBox16.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox16.Name = "endTextBox16";
- this.endTextBox16.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox16.Size = new System.Drawing.Size(242, 37);
this.endTextBox16.TabIndex = 66;
this.endTextBox16.Visible = false;
this.endTextBox16.TextChanged += new System.EventHandler(this.endTextBox16_TextChanged);
@@ -1245,9 +1334,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label16.Location = new System.Drawing.Point(23, 487);
+ this.label16.Location = new System.Drawing.Point(34, 749);
+ this.label16.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(136, 18);
+ this.label16.Size = new System.Drawing.Size(196, 29);
this.label16.TabIndex = 64;
this.label16.Text = "Water Meter 16";
this.label16.Visible = false;
@@ -1256,9 +1346,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox15.Enabled = false;
this.startTextBox15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox15.Location = new System.Drawing.Point(185, 454);
+ this.startTextBox15.Location = new System.Drawing.Point(278, 698);
+ this.startTextBox15.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox15.Name = "startTextBox15";
- this.startTextBox15.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox15.Size = new System.Drawing.Size(242, 37);
this.startTextBox15.TabIndex = 61;
this.startTextBox15.Visible = false;
this.startTextBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox15_KeyPress);
@@ -1268,9 +1359,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation13.AutoSize = true;
this.exclamation13.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation13.ForeColor = System.Drawing.Color.Red;
- this.exclamation13.Location = new System.Drawing.Point(532, 390);
+ this.exclamation13.Location = new System.Drawing.Point(798, 600);
+ this.exclamation13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation13.Name = "exclamation13";
- this.exclamation13.Size = new System.Drawing.Size(26, 32);
+ this.exclamation13.Size = new System.Drawing.Size(39, 49);
this.exclamation13.TabIndex = 55;
this.exclamation13.Text = "!";
this.exclamation13.Visible = false;
@@ -1279,9 +1371,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox15.Enabled = false;
this.endTextBox15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox15.Location = new System.Drawing.Point(367, 454);
+ this.endTextBox15.Location = new System.Drawing.Point(550, 698);
+ this.endTextBox15.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox15.Name = "endTextBox15";
- this.endTextBox15.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox15.Size = new System.Drawing.Size(242, 37);
this.endTextBox15.TabIndex = 62;
this.endTextBox15.Visible = false;
this.endTextBox15.TextChanged += new System.EventHandler(this.endTextBox15_TextChanged);
@@ -1291,9 +1384,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label15.Location = new System.Drawing.Point(23, 457);
+ this.label15.Location = new System.Drawing.Point(34, 703);
+ this.label15.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(136, 18);
+ this.label15.Size = new System.Drawing.Size(196, 29);
this.label15.TabIndex = 60;
this.label15.Text = "Water Meter 15";
this.label15.Visible = false;
@@ -1302,9 +1396,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox14.Enabled = false;
this.startTextBox14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox14.Location = new System.Drawing.Point(185, 424);
+ this.startTextBox14.Location = new System.Drawing.Point(278, 652);
+ this.startTextBox14.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox14.Name = "startTextBox14";
- this.startTextBox14.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox14.Size = new System.Drawing.Size(242, 37);
this.startTextBox14.TabIndex = 57;
this.startTextBox14.Visible = false;
this.startTextBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox14_KeyPress);
@@ -1313,9 +1408,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.end2Label.AutoSize = true;
this.end2Label.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.end2Label.Location = new System.Drawing.Point(992, 6);
+ this.end2Label.Location = new System.Drawing.Point(1488, 9);
+ this.end2Label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.end2Label.Name = "end2Label";
- this.end2Label.Size = new System.Drawing.Size(46, 23);
+ this.end2Label.Size = new System.Drawing.Size(69, 35);
this.end2Label.TabIndex = 51;
this.end2Label.Text = "End";
//
@@ -1323,9 +1419,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox14.Enabled = false;
this.endTextBox14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox14.Location = new System.Drawing.Point(367, 424);
+ this.endTextBox14.Location = new System.Drawing.Point(550, 652);
+ this.endTextBox14.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox14.Name = "endTextBox14";
- this.endTextBox14.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox14.Size = new System.Drawing.Size(242, 37);
this.endTextBox14.TabIndex = 58;
this.endTextBox14.Visible = false;
this.endTextBox14.TextChanged += new System.EventHandler(this.endTextBox14_TextChanged);
@@ -1335,9 +1432,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label14.AutoSize = true;
this.label14.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label14.Location = new System.Drawing.Point(23, 427);
+ this.label14.Location = new System.Drawing.Point(34, 657);
+ this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(136, 18);
+ this.label14.Size = new System.Drawing.Size(196, 29);
this.label14.TabIndex = 56;
this.label14.Text = "Water Meter 14";
this.label14.Visible = false;
@@ -1346,9 +1444,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox13.Enabled = false;
this.startTextBox13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox13.Location = new System.Drawing.Point(185, 394);
+ this.startTextBox13.Location = new System.Drawing.Point(278, 606);
+ this.startTextBox13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox13.Name = "startTextBox13";
- this.startTextBox13.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox13.Size = new System.Drawing.Size(242, 37);
this.startTextBox13.TabIndex = 53;
this.startTextBox13.Visible = false;
this.startTextBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox13_KeyPress);
@@ -1357,9 +1456,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.start2Label.AutoSize = true;
this.start2Label.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.start2Label.Location = new System.Drawing.Point(802, 6);
+ this.start2Label.Location = new System.Drawing.Point(1203, 9);
+ this.start2Label.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.start2Label.Name = "start2Label";
- this.start2Label.Size = new System.Drawing.Size(56, 23);
+ this.start2Label.Size = new System.Drawing.Size(86, 35);
this.start2Label.TabIndex = 50;
this.start2Label.Text = "Start";
//
@@ -1367,9 +1467,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox13.Enabled = false;
this.endTextBox13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox13.Location = new System.Drawing.Point(367, 394);
+ this.endTextBox13.Location = new System.Drawing.Point(550, 606);
+ this.endTextBox13.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox13.Name = "endTextBox13";
- this.endTextBox13.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox13.Size = new System.Drawing.Size(242, 37);
this.endTextBox13.TabIndex = 54;
this.endTextBox13.Visible = false;
this.endTextBox13.TextChanged += new System.EventHandler(this.endTextBox13_TextChanged);
@@ -1379,9 +1480,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label13.AutoSize = true;
this.label13.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label13.Location = new System.Drawing.Point(23, 397);
+ this.label13.Location = new System.Drawing.Point(34, 611);
+ this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(136, 18);
+ this.label13.Size = new System.Drawing.Size(196, 29);
this.label13.TabIndex = 52;
this.label13.Text = "Water Meter 13";
this.label13.Visible = false;
@@ -1391,9 +1493,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation25.AutoSize = true;
this.exclamation25.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation25.ForeColor = System.Drawing.Color.Red;
- this.exclamation25.Location = new System.Drawing.Point(1095, 30);
+ this.exclamation25.Location = new System.Drawing.Point(1642, 46);
+ this.exclamation25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation25.Name = "exclamation25";
- this.exclamation25.Size = new System.Drawing.Size(26, 32);
+ this.exclamation25.Size = new System.Drawing.Size(39, 49);
this.exclamation25.TabIndex = 104;
this.exclamation25.Text = "!";
this.exclamation25.Visible = false;
@@ -1402,9 +1505,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox25.Enabled = false;
this.startTextBox25.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox25.Location = new System.Drawing.Point(748, 34);
+ this.startTextBox25.Location = new System.Drawing.Point(1122, 52);
+ this.startTextBox25.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox25.Name = "startTextBox25";
- this.startTextBox25.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox25.Size = new System.Drawing.Size(242, 37);
this.startTextBox25.TabIndex = 102;
this.startTextBox25.Visible = false;
this.startTextBox25.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox25_KeyPress);
@@ -1413,9 +1517,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox25.Enabled = false;
this.endTextBox25.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox25.Location = new System.Drawing.Point(930, 34);
+ this.endTextBox25.Location = new System.Drawing.Point(1395, 52);
+ this.endTextBox25.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox25.Name = "endTextBox25";
- this.endTextBox25.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox25.Size = new System.Drawing.Size(242, 37);
this.endTextBox25.TabIndex = 103;
this.endTextBox25.Visible = false;
this.endTextBox25.TextChanged += new System.EventHandler(this.endTextBox25_TextChanged);
@@ -1425,9 +1530,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label25.AutoSize = true;
this.label25.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label25.Location = new System.Drawing.Point(586, 37);
+ this.label25.Location = new System.Drawing.Point(879, 57);
+ this.label25.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(136, 18);
+ this.label25.Size = new System.Drawing.Size(196, 29);
this.label25.TabIndex = 101;
this.label25.Text = "Water Meter 25";
this.label25.Visible = false;
@@ -1436,9 +1542,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label26.AutoSize = true;
this.label26.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label26.Location = new System.Drawing.Point(586, 67);
+ this.label26.Location = new System.Drawing.Point(879, 103);
+ this.label26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(136, 18);
+ this.label26.Size = new System.Drawing.Size(196, 29);
this.label26.TabIndex = 105;
this.label26.Text = "Water Meter 26";
this.label26.Visible = false;
@@ -1447,9 +1554,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label27.AutoSize = true;
this.label27.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label27.Location = new System.Drawing.Point(586, 97);
+ this.label27.Location = new System.Drawing.Point(879, 149);
+ this.label27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(136, 18);
+ this.label27.Size = new System.Drawing.Size(196, 29);
this.label27.TabIndex = 106;
this.label27.Text = "Water Meter 27";
this.label27.Visible = false;
@@ -1458,9 +1566,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label28.AutoSize = true;
this.label28.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label28.Location = new System.Drawing.Point(586, 127);
+ this.label28.Location = new System.Drawing.Point(879, 195);
+ this.label28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(136, 18);
+ this.label28.Size = new System.Drawing.Size(196, 29);
this.label28.TabIndex = 107;
this.label28.Text = "Water Meter 28";
this.label28.Visible = false;
@@ -1469,9 +1578,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label29.AutoSize = true;
this.label29.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label29.Location = new System.Drawing.Point(586, 157);
+ this.label29.Location = new System.Drawing.Point(879, 242);
+ this.label29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(136, 18);
+ this.label29.Size = new System.Drawing.Size(196, 29);
this.label29.TabIndex = 108;
this.label29.Text = "Water Meter 29";
this.label29.Visible = false;
@@ -1480,9 +1590,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label30.AutoSize = true;
this.label30.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label30.Location = new System.Drawing.Point(586, 187);
+ this.label30.Location = new System.Drawing.Point(879, 288);
+ this.label30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(136, 18);
+ this.label30.Size = new System.Drawing.Size(196, 29);
this.label30.TabIndex = 109;
this.label30.Text = "Water Meter 30";
this.label30.Visible = false;
@@ -1491,9 +1602,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label31.AutoSize = true;
this.label31.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label31.Location = new System.Drawing.Point(586, 217);
+ this.label31.Location = new System.Drawing.Point(879, 334);
+ this.label31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(136, 18);
+ this.label31.Size = new System.Drawing.Size(196, 29);
this.label31.TabIndex = 110;
this.label31.Text = "Water Meter 31";
this.label31.Visible = false;
@@ -1502,9 +1614,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label32.AutoSize = true;
this.label32.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label32.Location = new System.Drawing.Point(586, 247);
+ this.label32.Location = new System.Drawing.Point(879, 380);
+ this.label32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(136, 18);
+ this.label32.Size = new System.Drawing.Size(196, 29);
this.label32.TabIndex = 111;
this.label32.Text = "Water Meter 32";
this.label32.Visible = false;
@@ -1513,9 +1626,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label33.AutoSize = true;
this.label33.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label33.Location = new System.Drawing.Point(586, 277);
+ this.label33.Location = new System.Drawing.Point(879, 426);
+ this.label33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(136, 18);
+ this.label33.Size = new System.Drawing.Size(196, 29);
this.label33.TabIndex = 112;
this.label33.Text = "Water Meter 33";
this.label33.Visible = false;
@@ -1524,9 +1638,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label34.AutoSize = true;
this.label34.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label34.Location = new System.Drawing.Point(586, 307);
+ this.label34.Location = new System.Drawing.Point(879, 472);
+ this.label34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(136, 18);
+ this.label34.Size = new System.Drawing.Size(196, 29);
this.label34.TabIndex = 113;
this.label34.Text = "Water Meter 34";
this.label34.Visible = false;
@@ -1535,9 +1650,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label35.AutoSize = true;
this.label35.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label35.Location = new System.Drawing.Point(586, 337);
+ this.label35.Location = new System.Drawing.Point(879, 518);
+ this.label35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(136, 18);
+ this.label35.Size = new System.Drawing.Size(196, 29);
this.label35.TabIndex = 114;
this.label35.Text = "Water Meter 35";
this.label35.Visible = false;
@@ -1546,9 +1662,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label36.AutoSize = true;
this.label36.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label36.Location = new System.Drawing.Point(586, 367);
+ this.label36.Location = new System.Drawing.Point(879, 565);
+ this.label36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(136, 18);
+ this.label36.Size = new System.Drawing.Size(196, 29);
this.label36.TabIndex = 115;
this.label36.Text = "Water Meter 36";
this.label36.Visible = false;
@@ -1557,9 +1674,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label37.AutoSize = true;
this.label37.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label37.Location = new System.Drawing.Point(586, 397);
+ this.label37.Location = new System.Drawing.Point(879, 611);
+ this.label37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(136, 18);
+ this.label37.Size = new System.Drawing.Size(196, 29);
this.label37.TabIndex = 116;
this.label37.Text = "Water Meter 37";
this.label37.Visible = false;
@@ -1568,9 +1686,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label38.AutoSize = true;
this.label38.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label38.Location = new System.Drawing.Point(586, 427);
+ this.label38.Location = new System.Drawing.Point(879, 657);
+ this.label38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(136, 18);
+ this.label38.Size = new System.Drawing.Size(196, 29);
this.label38.TabIndex = 117;
this.label38.Text = "Water Meter 38";
this.label38.Visible = false;
@@ -1579,9 +1698,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label39.AutoSize = true;
this.label39.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label39.Location = new System.Drawing.Point(586, 457);
+ this.label39.Location = new System.Drawing.Point(879, 703);
+ this.label39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(136, 18);
+ this.label39.Size = new System.Drawing.Size(196, 29);
this.label39.TabIndex = 118;
this.label39.Text = "Water Meter 39";
this.label39.Visible = false;
@@ -1590,9 +1710,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label40.AutoSize = true;
this.label40.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label40.Location = new System.Drawing.Point(586, 487);
+ this.label40.Location = new System.Drawing.Point(879, 749);
+ this.label40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(136, 18);
+ this.label40.Size = new System.Drawing.Size(196, 29);
this.label40.TabIndex = 119;
this.label40.Text = "Water Meter 40";
this.label40.Visible = false;
@@ -1601,9 +1722,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label41.AutoSize = true;
this.label41.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label41.Location = new System.Drawing.Point(586, 517);
+ this.label41.Location = new System.Drawing.Point(879, 795);
+ this.label41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(136, 18);
+ this.label41.Size = new System.Drawing.Size(196, 29);
this.label41.TabIndex = 120;
this.label41.Text = "Water Meter 41";
this.label41.Visible = false;
@@ -1612,9 +1734,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label42.AutoSize = true;
this.label42.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label42.Location = new System.Drawing.Point(586, 547);
+ this.label42.Location = new System.Drawing.Point(879, 842);
+ this.label42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(136, 18);
+ this.label42.Size = new System.Drawing.Size(196, 29);
this.label42.TabIndex = 121;
this.label42.Text = "Water Meter 42";
this.label42.Visible = false;
@@ -1623,9 +1746,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label43.AutoSize = true;
this.label43.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label43.Location = new System.Drawing.Point(586, 577);
+ this.label43.Location = new System.Drawing.Point(879, 888);
+ this.label43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(136, 18);
+ this.label43.Size = new System.Drawing.Size(196, 29);
this.label43.TabIndex = 122;
this.label43.Text = "Water Meter 43";
this.label43.Visible = false;
@@ -1634,9 +1758,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label44.AutoSize = true;
this.label44.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label44.Location = new System.Drawing.Point(586, 607);
+ this.label44.Location = new System.Drawing.Point(879, 934);
+ this.label44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(136, 18);
+ this.label44.Size = new System.Drawing.Size(196, 29);
this.label44.TabIndex = 123;
this.label44.Text = "Water Meter 44";
this.label44.Visible = false;
@@ -1645,9 +1770,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label45.AutoSize = true;
this.label45.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label45.Location = new System.Drawing.Point(586, 637);
+ this.label45.Location = new System.Drawing.Point(879, 980);
+ this.label45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(136, 18);
+ this.label45.Size = new System.Drawing.Size(196, 29);
this.label45.TabIndex = 124;
this.label45.Text = "Water Meter 45";
this.label45.Visible = false;
@@ -1656,9 +1782,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label46.AutoSize = true;
this.label46.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label46.Location = new System.Drawing.Point(586, 667);
+ this.label46.Location = new System.Drawing.Point(879, 1026);
+ this.label46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(136, 18);
+ this.label46.Size = new System.Drawing.Size(196, 29);
this.label46.TabIndex = 125;
this.label46.Text = "Water Meter 46";
this.label46.Visible = false;
@@ -1667,9 +1794,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label47.AutoSize = true;
this.label47.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label47.Location = new System.Drawing.Point(586, 697);
+ this.label47.Location = new System.Drawing.Point(879, 1072);
+ this.label47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(136, 18);
+ this.label47.Size = new System.Drawing.Size(196, 29);
this.label47.TabIndex = 126;
this.label47.Text = "Water Meter 47";
this.label47.Visible = false;
@@ -1678,9 +1806,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.label48.AutoSize = true;
this.label48.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.label48.Location = new System.Drawing.Point(586, 727);
+ this.label48.Location = new System.Drawing.Point(879, 1118);
+ this.label48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(136, 18);
+ this.label48.Size = new System.Drawing.Size(196, 29);
this.label48.TabIndex = 127;
this.label48.Text = "Water Meter 48";
this.label48.Visible = false;
@@ -1689,9 +1818,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox48.Enabled = false;
this.startTextBox48.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox48.Location = new System.Drawing.Point(748, 724);
+ this.startTextBox48.Location = new System.Drawing.Point(1122, 1114);
+ this.startTextBox48.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox48.Name = "startTextBox48";
- this.startTextBox48.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox48.Size = new System.Drawing.Size(242, 37);
this.startTextBox48.TabIndex = 150;
this.startTextBox48.Visible = false;
this.startTextBox48.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox48_KeyPress);
@@ -1700,9 +1830,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox47.Enabled = false;
this.startTextBox47.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox47.Location = new System.Drawing.Point(748, 694);
+ this.startTextBox47.Location = new System.Drawing.Point(1122, 1068);
+ this.startTextBox47.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox47.Name = "startTextBox47";
- this.startTextBox47.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox47.Size = new System.Drawing.Size(242, 37);
this.startTextBox47.TabIndex = 149;
this.startTextBox47.Visible = false;
this.startTextBox47.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox47_KeyPress);
@@ -1711,9 +1842,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox46.Enabled = false;
this.startTextBox46.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox46.Location = new System.Drawing.Point(748, 664);
+ this.startTextBox46.Location = new System.Drawing.Point(1122, 1022);
+ this.startTextBox46.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox46.Name = "startTextBox46";
- this.startTextBox46.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox46.Size = new System.Drawing.Size(242, 37);
this.startTextBox46.TabIndex = 148;
this.startTextBox46.Visible = false;
this.startTextBox46.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox46_KeyPress);
@@ -1722,9 +1854,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox45.Enabled = false;
this.startTextBox45.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox45.Location = new System.Drawing.Point(748, 634);
+ this.startTextBox45.Location = new System.Drawing.Point(1122, 975);
+ this.startTextBox45.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox45.Name = "startTextBox45";
- this.startTextBox45.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox45.Size = new System.Drawing.Size(242, 37);
this.startTextBox45.TabIndex = 147;
this.startTextBox45.Visible = false;
this.startTextBox45.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox45_KeyPress);
@@ -1733,9 +1866,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox44.Enabled = false;
this.startTextBox44.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox44.Location = new System.Drawing.Point(748, 604);
+ this.startTextBox44.Location = new System.Drawing.Point(1122, 929);
+ this.startTextBox44.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox44.Name = "startTextBox44";
- this.startTextBox44.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox44.Size = new System.Drawing.Size(242, 37);
this.startTextBox44.TabIndex = 146;
this.startTextBox44.Visible = false;
this.startTextBox44.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox44_KeyPress);
@@ -1744,9 +1878,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox43.Enabled = false;
this.startTextBox43.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox43.Location = new System.Drawing.Point(748, 574);
+ this.startTextBox43.Location = new System.Drawing.Point(1122, 883);
+ this.startTextBox43.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox43.Name = "startTextBox43";
- this.startTextBox43.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox43.Size = new System.Drawing.Size(242, 37);
this.startTextBox43.TabIndex = 145;
this.startTextBox43.Visible = false;
this.startTextBox43.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox43_KeyPress);
@@ -1755,9 +1890,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox42.Enabled = false;
this.startTextBox42.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox42.Location = new System.Drawing.Point(748, 544);
+ this.startTextBox42.Location = new System.Drawing.Point(1122, 837);
+ this.startTextBox42.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox42.Name = "startTextBox42";
- this.startTextBox42.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox42.Size = new System.Drawing.Size(242, 37);
this.startTextBox42.TabIndex = 144;
this.startTextBox42.Visible = false;
this.startTextBox42.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox42_KeyPress);
@@ -1766,9 +1902,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox41.Enabled = false;
this.startTextBox41.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox41.Location = new System.Drawing.Point(748, 514);
+ this.startTextBox41.Location = new System.Drawing.Point(1122, 791);
+ this.startTextBox41.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox41.Name = "startTextBox41";
- this.startTextBox41.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox41.Size = new System.Drawing.Size(242, 37);
this.startTextBox41.TabIndex = 143;
this.startTextBox41.Visible = false;
this.startTextBox41.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox41_KeyPress);
@@ -1777,9 +1914,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox40.Enabled = false;
this.startTextBox40.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox40.Location = new System.Drawing.Point(748, 484);
+ this.startTextBox40.Location = new System.Drawing.Point(1122, 745);
+ this.startTextBox40.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox40.Name = "startTextBox40";
- this.startTextBox40.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox40.Size = new System.Drawing.Size(242, 37);
this.startTextBox40.TabIndex = 142;
this.startTextBox40.Visible = false;
this.startTextBox40.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox40_KeyPress);
@@ -1788,9 +1926,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox39.Enabled = false;
this.startTextBox39.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox39.Location = new System.Drawing.Point(748, 454);
+ this.startTextBox39.Location = new System.Drawing.Point(1122, 698);
+ this.startTextBox39.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox39.Name = "startTextBox39";
- this.startTextBox39.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox39.Size = new System.Drawing.Size(242, 37);
this.startTextBox39.TabIndex = 141;
this.startTextBox39.Visible = false;
this.startTextBox39.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox39_KeyPress);
@@ -1799,9 +1938,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox38.Enabled = false;
this.startTextBox38.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox38.Location = new System.Drawing.Point(748, 424);
+ this.startTextBox38.Location = new System.Drawing.Point(1122, 652);
+ this.startTextBox38.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox38.Name = "startTextBox38";
- this.startTextBox38.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox38.Size = new System.Drawing.Size(242, 37);
this.startTextBox38.TabIndex = 140;
this.startTextBox38.Visible = false;
this.startTextBox38.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox38_KeyPress);
@@ -1810,9 +1950,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox37.Enabled = false;
this.startTextBox37.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox37.Location = new System.Drawing.Point(748, 394);
+ this.startTextBox37.Location = new System.Drawing.Point(1122, 606);
+ this.startTextBox37.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox37.Name = "startTextBox37";
- this.startTextBox37.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox37.Size = new System.Drawing.Size(242, 37);
this.startTextBox37.TabIndex = 139;
this.startTextBox37.Visible = false;
this.startTextBox37.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox37_KeyPress);
@@ -1821,9 +1962,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox36.Enabled = false;
this.startTextBox36.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox36.Location = new System.Drawing.Point(748, 364);
+ this.startTextBox36.Location = new System.Drawing.Point(1122, 560);
+ this.startTextBox36.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox36.Name = "startTextBox36";
- this.startTextBox36.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox36.Size = new System.Drawing.Size(242, 37);
this.startTextBox36.TabIndex = 138;
this.startTextBox36.Visible = false;
this.startTextBox36.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox36_KeyPress);
@@ -1832,9 +1974,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox35.Enabled = false;
this.startTextBox35.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox35.Location = new System.Drawing.Point(748, 334);
+ this.startTextBox35.Location = new System.Drawing.Point(1122, 514);
+ this.startTextBox35.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox35.Name = "startTextBox35";
- this.startTextBox35.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox35.Size = new System.Drawing.Size(242, 37);
this.startTextBox35.TabIndex = 137;
this.startTextBox35.Visible = false;
this.startTextBox35.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox35_KeyPress);
@@ -1843,9 +1986,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox34.Enabled = false;
this.startTextBox34.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox34.Location = new System.Drawing.Point(748, 304);
+ this.startTextBox34.Location = new System.Drawing.Point(1122, 468);
+ this.startTextBox34.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox34.Name = "startTextBox34";
- this.startTextBox34.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox34.Size = new System.Drawing.Size(242, 37);
this.startTextBox34.TabIndex = 136;
this.startTextBox34.Visible = false;
this.startTextBox34.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox34_KeyPress);
@@ -1854,9 +1998,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox33.Enabled = false;
this.startTextBox33.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox33.Location = new System.Drawing.Point(748, 274);
+ this.startTextBox33.Location = new System.Drawing.Point(1122, 422);
+ this.startTextBox33.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox33.Name = "startTextBox33";
- this.startTextBox33.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox33.Size = new System.Drawing.Size(242, 37);
this.startTextBox33.TabIndex = 135;
this.startTextBox33.Visible = false;
this.startTextBox33.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox33_KeyPress);
@@ -1865,9 +2010,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox32.Enabled = false;
this.startTextBox32.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox32.Location = new System.Drawing.Point(748, 244);
+ this.startTextBox32.Location = new System.Drawing.Point(1122, 375);
+ this.startTextBox32.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox32.Name = "startTextBox32";
- this.startTextBox32.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox32.Size = new System.Drawing.Size(242, 37);
this.startTextBox32.TabIndex = 134;
this.startTextBox32.Visible = false;
this.startTextBox32.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox32_KeyPress);
@@ -1876,9 +2022,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox31.Enabled = false;
this.startTextBox31.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox31.Location = new System.Drawing.Point(748, 214);
+ this.startTextBox31.Location = new System.Drawing.Point(1122, 329);
+ this.startTextBox31.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox31.Name = "startTextBox31";
- this.startTextBox31.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox31.Size = new System.Drawing.Size(242, 37);
this.startTextBox31.TabIndex = 133;
this.startTextBox31.Visible = false;
this.startTextBox31.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox31_KeyPress);
@@ -1887,9 +2034,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox30.Enabled = false;
this.startTextBox30.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox30.Location = new System.Drawing.Point(748, 184);
+ this.startTextBox30.Location = new System.Drawing.Point(1122, 283);
+ this.startTextBox30.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox30.Name = "startTextBox30";
- this.startTextBox30.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox30.Size = new System.Drawing.Size(242, 37);
this.startTextBox30.TabIndex = 132;
this.startTextBox30.Visible = false;
this.startTextBox30.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox30_KeyPress);
@@ -1898,9 +2046,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox29.Enabled = false;
this.startTextBox29.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox29.Location = new System.Drawing.Point(748, 154);
+ this.startTextBox29.Location = new System.Drawing.Point(1122, 237);
+ this.startTextBox29.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox29.Name = "startTextBox29";
- this.startTextBox29.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox29.Size = new System.Drawing.Size(242, 37);
this.startTextBox29.TabIndex = 131;
this.startTextBox29.Visible = false;
this.startTextBox29.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox29_KeyPress);
@@ -1909,9 +2058,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox28.Enabled = false;
this.startTextBox28.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox28.Location = new System.Drawing.Point(748, 124);
+ this.startTextBox28.Location = new System.Drawing.Point(1122, 191);
+ this.startTextBox28.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox28.Name = "startTextBox28";
- this.startTextBox28.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox28.Size = new System.Drawing.Size(242, 37);
this.startTextBox28.TabIndex = 130;
this.startTextBox28.Visible = false;
this.startTextBox28.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox28_KeyPress);
@@ -1920,9 +2070,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox27.Enabled = false;
this.startTextBox27.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox27.Location = new System.Drawing.Point(748, 94);
+ this.startTextBox27.Location = new System.Drawing.Point(1122, 145);
+ this.startTextBox27.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox27.Name = "startTextBox27";
- this.startTextBox27.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox27.Size = new System.Drawing.Size(242, 37);
this.startTextBox27.TabIndex = 129;
this.startTextBox27.Visible = false;
this.startTextBox27.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox27_KeyPress);
@@ -1931,9 +2082,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.startTextBox26.Enabled = false;
this.startTextBox26.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.startTextBox26.Location = new System.Drawing.Point(748, 64);
+ this.startTextBox26.Location = new System.Drawing.Point(1122, 98);
+ this.startTextBox26.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.startTextBox26.Name = "startTextBox26";
- this.startTextBox26.Size = new System.Drawing.Size(163, 27);
+ this.startTextBox26.Size = new System.Drawing.Size(242, 37);
this.startTextBox26.TabIndex = 128;
this.startTextBox26.Visible = false;
this.startTextBox26.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.startTextBox26_KeyPress);
@@ -1943,9 +2095,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation48.AutoSize = true;
this.exclamation48.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation48.ForeColor = System.Drawing.Color.Red;
- this.exclamation48.Location = new System.Drawing.Point(1095, 720);
+ this.exclamation48.Location = new System.Drawing.Point(1642, 1108);
+ this.exclamation48.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation48.Name = "exclamation48";
- this.exclamation48.Size = new System.Drawing.Size(26, 32);
+ this.exclamation48.Size = new System.Drawing.Size(39, 49);
this.exclamation48.TabIndex = 196;
this.exclamation48.Text = "!";
this.exclamation48.Visible = false;
@@ -1954,9 +2107,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox48.Enabled = false;
this.endTextBox48.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox48.Location = new System.Drawing.Point(930, 724);
+ this.endTextBox48.Location = new System.Drawing.Point(1395, 1114);
+ this.endTextBox48.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox48.Name = "endTextBox48";
- this.endTextBox48.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox48.Size = new System.Drawing.Size(242, 37);
this.endTextBox48.TabIndex = 195;
this.endTextBox48.Visible = false;
this.endTextBox48.TextChanged += new System.EventHandler(this.endTextBox48_TextChanged);
@@ -1967,9 +2121,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation47.AutoSize = true;
this.exclamation47.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation47.ForeColor = System.Drawing.Color.Red;
- this.exclamation47.Location = new System.Drawing.Point(1095, 690);
+ this.exclamation47.Location = new System.Drawing.Point(1642, 1062);
+ this.exclamation47.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation47.Name = "exclamation47";
- this.exclamation47.Size = new System.Drawing.Size(26, 32);
+ this.exclamation47.Size = new System.Drawing.Size(39, 49);
this.exclamation47.TabIndex = 194;
this.exclamation47.Text = "!";
this.exclamation47.Visible = false;
@@ -1978,9 +2133,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox47.Enabled = false;
this.endTextBox47.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox47.Location = new System.Drawing.Point(930, 694);
+ this.endTextBox47.Location = new System.Drawing.Point(1395, 1068);
+ this.endTextBox47.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox47.Name = "endTextBox47";
- this.endTextBox47.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox47.Size = new System.Drawing.Size(242, 37);
this.endTextBox47.TabIndex = 193;
this.endTextBox47.Visible = false;
this.endTextBox47.TextChanged += new System.EventHandler(this.endTextBox47_TextChanged);
@@ -1991,9 +2147,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation46.AutoSize = true;
this.exclamation46.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation46.ForeColor = System.Drawing.Color.Red;
- this.exclamation46.Location = new System.Drawing.Point(1095, 660);
+ this.exclamation46.Location = new System.Drawing.Point(1642, 1015);
+ this.exclamation46.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation46.Name = "exclamation46";
- this.exclamation46.Size = new System.Drawing.Size(26, 32);
+ this.exclamation46.Size = new System.Drawing.Size(39, 49);
this.exclamation46.TabIndex = 192;
this.exclamation46.Text = "!";
this.exclamation46.Visible = false;
@@ -2002,9 +2159,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox46.Enabled = false;
this.endTextBox46.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox46.Location = new System.Drawing.Point(930, 664);
+ this.endTextBox46.Location = new System.Drawing.Point(1395, 1022);
+ this.endTextBox46.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox46.Name = "endTextBox46";
- this.endTextBox46.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox46.Size = new System.Drawing.Size(242, 37);
this.endTextBox46.TabIndex = 191;
this.endTextBox46.Visible = false;
this.endTextBox46.TextChanged += new System.EventHandler(this.endTextBox46_TextChanged);
@@ -2015,9 +2173,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation45.AutoSize = true;
this.exclamation45.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation45.ForeColor = System.Drawing.Color.Red;
- this.exclamation45.Location = new System.Drawing.Point(1095, 630);
+ this.exclamation45.Location = new System.Drawing.Point(1642, 969);
+ this.exclamation45.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation45.Name = "exclamation45";
- this.exclamation45.Size = new System.Drawing.Size(26, 32);
+ this.exclamation45.Size = new System.Drawing.Size(39, 49);
this.exclamation45.TabIndex = 190;
this.exclamation45.Text = "!";
this.exclamation45.Visible = false;
@@ -2026,9 +2185,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox45.Enabled = false;
this.endTextBox45.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox45.Location = new System.Drawing.Point(930, 634);
+ this.endTextBox45.Location = new System.Drawing.Point(1395, 975);
+ this.endTextBox45.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox45.Name = "endTextBox45";
- this.endTextBox45.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox45.Size = new System.Drawing.Size(242, 37);
this.endTextBox45.TabIndex = 189;
this.endTextBox45.Visible = false;
this.endTextBox45.TextChanged += new System.EventHandler(this.endTextBox45_TextChanged);
@@ -2039,9 +2199,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation44.AutoSize = true;
this.exclamation44.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation44.ForeColor = System.Drawing.Color.Red;
- this.exclamation44.Location = new System.Drawing.Point(1095, 600);
+ this.exclamation44.Location = new System.Drawing.Point(1642, 923);
+ this.exclamation44.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation44.Name = "exclamation44";
- this.exclamation44.Size = new System.Drawing.Size(26, 32);
+ this.exclamation44.Size = new System.Drawing.Size(39, 49);
this.exclamation44.TabIndex = 188;
this.exclamation44.Text = "!";
this.exclamation44.Visible = false;
@@ -2050,9 +2211,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox44.Enabled = false;
this.endTextBox44.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox44.Location = new System.Drawing.Point(930, 604);
+ this.endTextBox44.Location = new System.Drawing.Point(1395, 929);
+ this.endTextBox44.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox44.Name = "endTextBox44";
- this.endTextBox44.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox44.Size = new System.Drawing.Size(242, 37);
this.endTextBox44.TabIndex = 187;
this.endTextBox44.Visible = false;
this.endTextBox44.TextChanged += new System.EventHandler(this.endTextBox44_TextChanged);
@@ -2063,9 +2225,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation43.AutoSize = true;
this.exclamation43.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation43.ForeColor = System.Drawing.Color.Red;
- this.exclamation43.Location = new System.Drawing.Point(1095, 570);
+ this.exclamation43.Location = new System.Drawing.Point(1642, 877);
+ this.exclamation43.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation43.Name = "exclamation43";
- this.exclamation43.Size = new System.Drawing.Size(26, 32);
+ this.exclamation43.Size = new System.Drawing.Size(39, 49);
this.exclamation43.TabIndex = 186;
this.exclamation43.Text = "!";
this.exclamation43.Visible = false;
@@ -2074,9 +2237,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox43.Enabled = false;
this.endTextBox43.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox43.Location = new System.Drawing.Point(930, 574);
+ this.endTextBox43.Location = new System.Drawing.Point(1395, 883);
+ this.endTextBox43.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox43.Name = "endTextBox43";
- this.endTextBox43.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox43.Size = new System.Drawing.Size(242, 37);
this.endTextBox43.TabIndex = 185;
this.endTextBox43.Visible = false;
this.endTextBox43.TextChanged += new System.EventHandler(this.endTextBox43_TextChanged);
@@ -2087,9 +2251,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation42.AutoSize = true;
this.exclamation42.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation42.ForeColor = System.Drawing.Color.Red;
- this.exclamation42.Location = new System.Drawing.Point(1095, 540);
+ this.exclamation42.Location = new System.Drawing.Point(1642, 831);
+ this.exclamation42.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation42.Name = "exclamation42";
- this.exclamation42.Size = new System.Drawing.Size(26, 32);
+ this.exclamation42.Size = new System.Drawing.Size(39, 49);
this.exclamation42.TabIndex = 184;
this.exclamation42.Text = "!";
this.exclamation42.Visible = false;
@@ -2099,9 +2264,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation41.AutoSize = true;
this.exclamation41.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation41.ForeColor = System.Drawing.Color.Red;
- this.exclamation41.Location = new System.Drawing.Point(1095, 510);
+ this.exclamation41.Location = new System.Drawing.Point(1642, 785);
+ this.exclamation41.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation41.Name = "exclamation41";
- this.exclamation41.Size = new System.Drawing.Size(26, 32);
+ this.exclamation41.Size = new System.Drawing.Size(39, 49);
this.exclamation41.TabIndex = 182;
this.exclamation41.Text = "!";
this.exclamation41.Visible = false;
@@ -2111,9 +2277,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation40.AutoSize = true;
this.exclamation40.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation40.ForeColor = System.Drawing.Color.Red;
- this.exclamation40.Location = new System.Drawing.Point(1095, 480);
+ this.exclamation40.Location = new System.Drawing.Point(1642, 738);
+ this.exclamation40.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation40.Name = "exclamation40";
- this.exclamation40.Size = new System.Drawing.Size(26, 32);
+ this.exclamation40.Size = new System.Drawing.Size(39, 49);
this.exclamation40.TabIndex = 180;
this.exclamation40.Text = "!";
this.exclamation40.Visible = false;
@@ -2122,9 +2289,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox42.Enabled = false;
this.endTextBox42.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox42.Location = new System.Drawing.Point(930, 544);
+ this.endTextBox42.Location = new System.Drawing.Point(1395, 837);
+ this.endTextBox42.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox42.Name = "endTextBox42";
- this.endTextBox42.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox42.Size = new System.Drawing.Size(242, 37);
this.endTextBox42.TabIndex = 183;
this.endTextBox42.Visible = false;
this.endTextBox42.TextChanged += new System.EventHandler(this.endTextBox42_TextChanged);
@@ -2135,9 +2303,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation39.AutoSize = true;
this.exclamation39.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation39.ForeColor = System.Drawing.Color.Red;
- this.exclamation39.Location = new System.Drawing.Point(1095, 450);
+ this.exclamation39.Location = new System.Drawing.Point(1642, 692);
+ this.exclamation39.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation39.Name = "exclamation39";
- this.exclamation39.Size = new System.Drawing.Size(26, 32);
+ this.exclamation39.Size = new System.Drawing.Size(39, 49);
this.exclamation39.TabIndex = 178;
this.exclamation39.Text = "!";
this.exclamation39.Visible = false;
@@ -2146,9 +2315,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox41.Enabled = false;
this.endTextBox41.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox41.Location = new System.Drawing.Point(930, 514);
+ this.endTextBox41.Location = new System.Drawing.Point(1395, 791);
+ this.endTextBox41.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox41.Name = "endTextBox41";
- this.endTextBox41.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox41.Size = new System.Drawing.Size(242, 37);
this.endTextBox41.TabIndex = 181;
this.endTextBox41.Visible = false;
this.endTextBox41.TextChanged += new System.EventHandler(this.endTextBox41_TextChanged);
@@ -2159,9 +2329,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation38.AutoSize = true;
this.exclamation38.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation38.ForeColor = System.Drawing.Color.Red;
- this.exclamation38.Location = new System.Drawing.Point(1095, 420);
+ this.exclamation38.Location = new System.Drawing.Point(1642, 646);
+ this.exclamation38.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation38.Name = "exclamation38";
- this.exclamation38.Size = new System.Drawing.Size(26, 32);
+ this.exclamation38.Size = new System.Drawing.Size(39, 49);
this.exclamation38.TabIndex = 176;
this.exclamation38.Text = "!";
this.exclamation38.Visible = false;
@@ -2170,9 +2341,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox40.Enabled = false;
this.endTextBox40.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox40.Location = new System.Drawing.Point(930, 484);
+ this.endTextBox40.Location = new System.Drawing.Point(1395, 745);
+ this.endTextBox40.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox40.Name = "endTextBox40";
- this.endTextBox40.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox40.Size = new System.Drawing.Size(242, 37);
this.endTextBox40.TabIndex = 179;
this.endTextBox40.Visible = false;
this.endTextBox40.TextChanged += new System.EventHandler(this.endTextBox40_TextChanged);
@@ -2183,9 +2355,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation37.AutoSize = true;
this.exclamation37.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation37.ForeColor = System.Drawing.Color.Red;
- this.exclamation37.Location = new System.Drawing.Point(1095, 390);
+ this.exclamation37.Location = new System.Drawing.Point(1642, 600);
+ this.exclamation37.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation37.Name = "exclamation37";
- this.exclamation37.Size = new System.Drawing.Size(26, 32);
+ this.exclamation37.Size = new System.Drawing.Size(39, 49);
this.exclamation37.TabIndex = 174;
this.exclamation37.Text = "!";
this.exclamation37.Visible = false;
@@ -2194,9 +2367,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox39.Enabled = false;
this.endTextBox39.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox39.Location = new System.Drawing.Point(930, 454);
+ this.endTextBox39.Location = new System.Drawing.Point(1395, 698);
+ this.endTextBox39.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox39.Name = "endTextBox39";
- this.endTextBox39.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox39.Size = new System.Drawing.Size(242, 37);
this.endTextBox39.TabIndex = 177;
this.endTextBox39.Visible = false;
this.endTextBox39.TextChanged += new System.EventHandler(this.endTextBox39_TextChanged);
@@ -2206,9 +2380,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox38.Enabled = false;
this.endTextBox38.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox38.Location = new System.Drawing.Point(930, 424);
+ this.endTextBox38.Location = new System.Drawing.Point(1395, 652);
+ this.endTextBox38.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox38.Name = "endTextBox38";
- this.endTextBox38.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox38.Size = new System.Drawing.Size(242, 37);
this.endTextBox38.TabIndex = 175;
this.endTextBox38.Visible = false;
this.endTextBox38.TextChanged += new System.EventHandler(this.endTextBox38_TextChanged);
@@ -2218,9 +2393,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox37.Enabled = false;
this.endTextBox37.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox37.Location = new System.Drawing.Point(930, 394);
+ this.endTextBox37.Location = new System.Drawing.Point(1395, 606);
+ this.endTextBox37.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox37.Name = "endTextBox37";
- this.endTextBox37.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox37.Size = new System.Drawing.Size(242, 37);
this.endTextBox37.TabIndex = 173;
this.endTextBox37.Visible = false;
this.endTextBox37.TextChanged += new System.EventHandler(this.endTextBox37_TextChanged);
@@ -2231,9 +2407,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation36.AutoSize = true;
this.exclamation36.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation36.ForeColor = System.Drawing.Color.Red;
- this.exclamation36.Location = new System.Drawing.Point(1095, 360);
+ this.exclamation36.Location = new System.Drawing.Point(1642, 554);
+ this.exclamation36.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation36.Name = "exclamation36";
- this.exclamation36.Size = new System.Drawing.Size(26, 32);
+ this.exclamation36.Size = new System.Drawing.Size(39, 49);
this.exclamation36.TabIndex = 172;
this.exclamation36.Text = "!";
this.exclamation36.Visible = false;
@@ -2242,9 +2419,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox36.Enabled = false;
this.endTextBox36.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox36.Location = new System.Drawing.Point(930, 364);
+ this.endTextBox36.Location = new System.Drawing.Point(1395, 560);
+ this.endTextBox36.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox36.Name = "endTextBox36";
- this.endTextBox36.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox36.Size = new System.Drawing.Size(242, 37);
this.endTextBox36.TabIndex = 171;
this.endTextBox36.Visible = false;
this.endTextBox36.TextChanged += new System.EventHandler(this.endTextBox36_TextChanged);
@@ -2255,9 +2433,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation35.AutoSize = true;
this.exclamation35.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation35.ForeColor = System.Drawing.Color.Red;
- this.exclamation35.Location = new System.Drawing.Point(1095, 330);
+ this.exclamation35.Location = new System.Drawing.Point(1642, 508);
+ this.exclamation35.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation35.Name = "exclamation35";
- this.exclamation35.Size = new System.Drawing.Size(26, 32);
+ this.exclamation35.Size = new System.Drawing.Size(39, 49);
this.exclamation35.TabIndex = 170;
this.exclamation35.Text = "!";
this.exclamation35.Visible = false;
@@ -2266,9 +2445,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox35.Enabled = false;
this.endTextBox35.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox35.Location = new System.Drawing.Point(930, 334);
+ this.endTextBox35.Location = new System.Drawing.Point(1395, 514);
+ this.endTextBox35.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox35.Name = "endTextBox35";
- this.endTextBox35.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox35.Size = new System.Drawing.Size(242, 37);
this.endTextBox35.TabIndex = 169;
this.endTextBox35.Visible = false;
this.endTextBox35.TextChanged += new System.EventHandler(this.endTextBox35_TextChanged);
@@ -2279,9 +2459,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation34.AutoSize = true;
this.exclamation34.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation34.ForeColor = System.Drawing.Color.Red;
- this.exclamation34.Location = new System.Drawing.Point(1095, 300);
+ this.exclamation34.Location = new System.Drawing.Point(1642, 462);
+ this.exclamation34.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation34.Name = "exclamation34";
- this.exclamation34.Size = new System.Drawing.Size(26, 32);
+ this.exclamation34.Size = new System.Drawing.Size(39, 49);
this.exclamation34.TabIndex = 168;
this.exclamation34.Text = "!";
this.exclamation34.Visible = false;
@@ -2290,9 +2471,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox34.Enabled = false;
this.endTextBox34.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox34.Location = new System.Drawing.Point(930, 304);
+ this.endTextBox34.Location = new System.Drawing.Point(1395, 468);
+ this.endTextBox34.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox34.Name = "endTextBox34";
- this.endTextBox34.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox34.Size = new System.Drawing.Size(242, 37);
this.endTextBox34.TabIndex = 167;
this.endTextBox34.Visible = false;
this.endTextBox34.TextChanged += new System.EventHandler(this.endTextBox34_TextChanged);
@@ -2303,9 +2485,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation33.AutoSize = true;
this.exclamation33.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation33.ForeColor = System.Drawing.Color.Red;
- this.exclamation33.Location = new System.Drawing.Point(1095, 270);
+ this.exclamation33.Location = new System.Drawing.Point(1642, 415);
+ this.exclamation33.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation33.Name = "exclamation33";
- this.exclamation33.Size = new System.Drawing.Size(26, 32);
+ this.exclamation33.Size = new System.Drawing.Size(39, 49);
this.exclamation33.TabIndex = 166;
this.exclamation33.Text = "!";
this.exclamation33.Visible = false;
@@ -2314,9 +2497,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox33.Enabled = false;
this.endTextBox33.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox33.Location = new System.Drawing.Point(930, 274);
+ this.endTextBox33.Location = new System.Drawing.Point(1395, 422);
+ this.endTextBox33.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox33.Name = "endTextBox33";
- this.endTextBox33.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox33.Size = new System.Drawing.Size(242, 37);
this.endTextBox33.TabIndex = 165;
this.endTextBox33.Visible = false;
this.endTextBox33.TextChanged += new System.EventHandler(this.endTextBox33_TextChanged);
@@ -2327,9 +2511,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation32.AutoSize = true;
this.exclamation32.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation32.ForeColor = System.Drawing.Color.Red;
- this.exclamation32.Location = new System.Drawing.Point(1095, 240);
+ this.exclamation32.Location = new System.Drawing.Point(1642, 369);
+ this.exclamation32.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation32.Name = "exclamation32";
- this.exclamation32.Size = new System.Drawing.Size(26, 32);
+ this.exclamation32.Size = new System.Drawing.Size(39, 49);
this.exclamation32.TabIndex = 164;
this.exclamation32.Text = "!";
this.exclamation32.Visible = false;
@@ -2338,9 +2523,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox32.Enabled = false;
this.endTextBox32.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox32.Location = new System.Drawing.Point(930, 244);
+ this.endTextBox32.Location = new System.Drawing.Point(1395, 375);
+ this.endTextBox32.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox32.Name = "endTextBox32";
- this.endTextBox32.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox32.Size = new System.Drawing.Size(242, 37);
this.endTextBox32.TabIndex = 163;
this.endTextBox32.Visible = false;
this.endTextBox32.TextChanged += new System.EventHandler(this.endTextBox32_TextChanged);
@@ -2351,9 +2537,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation31.AutoSize = true;
this.exclamation31.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation31.ForeColor = System.Drawing.Color.Red;
- this.exclamation31.Location = new System.Drawing.Point(1095, 210);
+ this.exclamation31.Location = new System.Drawing.Point(1642, 323);
+ this.exclamation31.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation31.Name = "exclamation31";
- this.exclamation31.Size = new System.Drawing.Size(26, 32);
+ this.exclamation31.Size = new System.Drawing.Size(39, 49);
this.exclamation31.TabIndex = 162;
this.exclamation31.Text = "!";
this.exclamation31.Visible = false;
@@ -2362,9 +2549,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox31.Enabled = false;
this.endTextBox31.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox31.Location = new System.Drawing.Point(930, 214);
+ this.endTextBox31.Location = new System.Drawing.Point(1395, 329);
+ this.endTextBox31.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox31.Name = "endTextBox31";
- this.endTextBox31.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox31.Size = new System.Drawing.Size(242, 37);
this.endTextBox31.TabIndex = 161;
this.endTextBox31.Visible = false;
this.endTextBox31.TextChanged += new System.EventHandler(this.endTextBox31_TextChanged);
@@ -2375,9 +2563,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation30.AutoSize = true;
this.exclamation30.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation30.ForeColor = System.Drawing.Color.Red;
- this.exclamation30.Location = new System.Drawing.Point(1095, 180);
+ this.exclamation30.Location = new System.Drawing.Point(1642, 277);
+ this.exclamation30.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation30.Name = "exclamation30";
- this.exclamation30.Size = new System.Drawing.Size(26, 32);
+ this.exclamation30.Size = new System.Drawing.Size(39, 49);
this.exclamation30.TabIndex = 160;
this.exclamation30.Text = "!";
this.exclamation30.Visible = false;
@@ -2387,9 +2576,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation29.AutoSize = true;
this.exclamation29.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation29.ForeColor = System.Drawing.Color.Red;
- this.exclamation29.Location = new System.Drawing.Point(1095, 150);
+ this.exclamation29.Location = new System.Drawing.Point(1642, 231);
+ this.exclamation29.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation29.Name = "exclamation29";
- this.exclamation29.Size = new System.Drawing.Size(26, 32);
+ this.exclamation29.Size = new System.Drawing.Size(39, 49);
this.exclamation29.TabIndex = 158;
this.exclamation29.Text = "!";
this.exclamation29.Visible = false;
@@ -2399,9 +2589,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation28.AutoSize = true;
this.exclamation28.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation28.ForeColor = System.Drawing.Color.Red;
- this.exclamation28.Location = new System.Drawing.Point(1095, 120);
+ this.exclamation28.Location = new System.Drawing.Point(1642, 185);
+ this.exclamation28.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation28.Name = "exclamation28";
- this.exclamation28.Size = new System.Drawing.Size(26, 32);
+ this.exclamation28.Size = new System.Drawing.Size(39, 49);
this.exclamation28.TabIndex = 156;
this.exclamation28.Text = "!";
this.exclamation28.Visible = false;
@@ -2410,9 +2601,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox30.Enabled = false;
this.endTextBox30.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox30.Location = new System.Drawing.Point(930, 184);
+ this.endTextBox30.Location = new System.Drawing.Point(1395, 283);
+ this.endTextBox30.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox30.Name = "endTextBox30";
- this.endTextBox30.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox30.Size = new System.Drawing.Size(242, 37);
this.endTextBox30.TabIndex = 159;
this.endTextBox30.Visible = false;
this.endTextBox30.TextChanged += new System.EventHandler(this.endTextBox30_TextChanged);
@@ -2423,9 +2615,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation27.AutoSize = true;
this.exclamation27.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation27.ForeColor = System.Drawing.Color.Red;
- this.exclamation27.Location = new System.Drawing.Point(1095, 90);
+ this.exclamation27.Location = new System.Drawing.Point(1642, 138);
+ this.exclamation27.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation27.Name = "exclamation27";
- this.exclamation27.Size = new System.Drawing.Size(26, 32);
+ this.exclamation27.Size = new System.Drawing.Size(39, 49);
this.exclamation27.TabIndex = 154;
this.exclamation27.Text = "!";
this.exclamation27.Visible = false;
@@ -2434,9 +2627,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox29.Enabled = false;
this.endTextBox29.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox29.Location = new System.Drawing.Point(930, 154);
+ this.endTextBox29.Location = new System.Drawing.Point(1395, 237);
+ this.endTextBox29.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox29.Name = "endTextBox29";
- this.endTextBox29.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox29.Size = new System.Drawing.Size(242, 37);
this.endTextBox29.TabIndex = 157;
this.endTextBox29.Visible = false;
this.endTextBox29.TextChanged += new System.EventHandler(this.endTextBox29_TextChanged);
@@ -2447,9 +2641,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.exclamation26.AutoSize = true;
this.exclamation26.Font = new System.Drawing.Font("Verdana", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.exclamation26.ForeColor = System.Drawing.Color.Red;
- this.exclamation26.Location = new System.Drawing.Point(1095, 60);
+ this.exclamation26.Location = new System.Drawing.Point(1642, 92);
+ this.exclamation26.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.exclamation26.Name = "exclamation26";
- this.exclamation26.Size = new System.Drawing.Size(26, 32);
+ this.exclamation26.Size = new System.Drawing.Size(39, 49);
this.exclamation26.TabIndex = 152;
this.exclamation26.Text = "!";
this.exclamation26.Visible = false;
@@ -2458,9 +2653,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox28.Enabled = false;
this.endTextBox28.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox28.Location = new System.Drawing.Point(930, 124);
+ this.endTextBox28.Location = new System.Drawing.Point(1395, 191);
+ this.endTextBox28.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox28.Name = "endTextBox28";
- this.endTextBox28.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox28.Size = new System.Drawing.Size(242, 37);
this.endTextBox28.TabIndex = 155;
this.endTextBox28.Visible = false;
this.endTextBox28.TextChanged += new System.EventHandler(this.endTextBox28_TextChanged);
@@ -2470,9 +2666,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox27.Enabled = false;
this.endTextBox27.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox27.Location = new System.Drawing.Point(930, 94);
+ this.endTextBox27.Location = new System.Drawing.Point(1395, 145);
+ this.endTextBox27.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox27.Name = "endTextBox27";
- this.endTextBox27.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox27.Size = new System.Drawing.Size(242, 37);
this.endTextBox27.TabIndex = 153;
this.endTextBox27.Visible = false;
this.endTextBox27.TextChanged += new System.EventHandler(this.endTextBox27_TextChanged);
@@ -2482,20 +2679,34 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
//
this.endTextBox26.Enabled = false;
this.endTextBox26.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
- this.endTextBox26.Location = new System.Drawing.Point(930, 64);
+ this.endTextBox26.Location = new System.Drawing.Point(1395, 98);
+ this.endTextBox26.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.endTextBox26.Name = "endTextBox26";
- this.endTextBox26.Size = new System.Drawing.Size(163, 27);
+ this.endTextBox26.Size = new System.Drawing.Size(242, 37);
this.endTextBox26.TabIndex = 151;
this.endTextBox26.Visible = false;
this.endTextBox26.TextChanged += new System.EventHandler(this.endTextBox26_TextChanged);
this.endTextBox26.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.endTextBox26_KeyPress);
//
+ // loadingLabel
+ //
+ this.loadingLabel.Enabled = false;
+ this.loadingLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+ this.loadingLabel.ForeColor = System.Drawing.Color.DarkGreen;
+ this.loadingLabel.Location = new System.Drawing.Point(34, 9);
+ this.loadingLabel.Name = "loadingLabel";
+ this.loadingLabel.Size = new System.Drawing.Size(243, 48);
+ this.loadingLabel.TabIndex = 197;
+ this.loadingLabel.Text = "Loading ...";
+ this.loadingLabel.Visible = false;
+ //
// TestStartEndForm
//
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DarkGray;
- this.ClientSize = new System.Drawing.Size(1267, 758);
+ this.ClientSize = new System.Drawing.Size(1900, 1166);
+ this.Controls.Add(this.loadingLabel);
this.Controls.Add(this.exclamation48);
this.Controls.Add(this.endTextBox48);
this.Controls.Add(this.exclamation47);
@@ -2694,6 +2905,7 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.Controls.Add(this.label1);
this.Controls.Add(this.okButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "TestStartEndForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.Text = "End States";
@@ -2701,9 +2913,10 @@ namespace TBF.Rig.DataEntry.PoseidonCmd
this.Load += new System.EventHandler(this.CycleEndForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
-
}
+ private System.Windows.Forms.Label loadingLabel;
+
#endregion
private System.Windows.Forms.TextBox endTextBox1;
diff --git a/TBF/Rig/RegisterReaders/PoseidonCmdStartStop/PoseidonReader.cs b/TBF/Rig/RegisterReaders/PoseidonCmdStartStop/PoseidonReader.cs
index 05563574c..0c6fe9e67 100644
--- a/TBF/Rig/RegisterReaders/PoseidonCmdStartStop/PoseidonReader.cs
+++ b/TBF/Rig/RegisterReaders/PoseidonCmdStartStop/PoseidonReader.cs
@@ -326,8 +326,12 @@ namespace TBF.Rig.RegisterReaders.PoseidonCmdStartStop
///
/// for debug purposes what time will consume answer
///
- private long startTimeInMilis, fullTimeInMilis;
- private static long SafetyTimeOut = 30 * 1000; /// 30 seconds
+ private long startTimeInMilis = -1, fullTimeInMilis = -1;
+ private static long SafetyTimeOut = 30 * 1000;
+
+ /// 30 seconds
+
+ public long DeltaTime { get{return fullTimeInMilis;}}
/// Run this operation
/// eventDone
diff --git a/TBF/Rig/TbfComponents.cs b/TBF/Rig/TbfComponents.cs
index 54f12e797..f62a0d422 100644
--- a/TBF/Rig/TbfComponents.cs
+++ b/TBF/Rig/TbfComponents.cs
@@ -210,6 +210,7 @@ namespace TBF.Rig
new TestMethods.StandingStartMassCollection.Single.Factory(),
new TestMethods.StandingStartMassCollection.Compound.Factory(),
new TestMethods.StandingStartMassCollection.HeatMeters.Factory(),
+ new TestMethods.StandingStartMassCollectionPoseidon.Single.Factory(),
new TestMethods.StandingStartMassCollectionAdvance.Single.Factory(),
new TestMethods.StandingStartMassCollectionAdvance.Compound.Factory(),
new TestMethods.StandingStartMassCollectionAdvance.HeatMeters.Factory(),