diff --git a/TBF/BenchControl/TestMethods/S640Communication/I640Cfg.cs b/TBF/BenchControl/TestMethods/S640Communication/I640Cfg.cs index 3eb5b19eb..99f5cd721 100644 --- a/TBF/BenchControl/TestMethods/S640Communication/I640Cfg.cs +++ b/TBF/BenchControl/TestMethods/S640Communication/I640Cfg.cs @@ -11,5 +11,6 @@ namespace TBF.BenchControl.TestMethods.S640Communication string FileExchangePath { get; } int FileExchangeTimeout { get; } bool EnterSerialNumbers { get; } + bool SkipBadMeters { get; } } } diff --git a/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.cs b/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.cs index 696a8b694..b3dfbd674 100644 --- a/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.cs +++ b/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.cs @@ -95,6 +95,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication string fileExchangePath; int fileExchangeTimeout; bool enterSerialNumbers; + bool skipBadMeters; ProcParams pPars; /// IList activities; @@ -179,8 +180,8 @@ namespace TBF.BenchControl.TestMethods.S640Communication /// Constructor for one S640Communication test /// /// Number of text boxes for serial numbers - public S640CommForm(S640Activity activity, I640Cfg config, Generic.IProcedureParams procParams, Test test) - : this(new List { activity }, config, procParams, new List { test }) + public S640CommForm(S640Activity activity, I640Cfg cfg, Generic.IProcedureParams procParams, Test test) + : this(new List { activity }, cfg, procParams, new List { test }) { } @@ -188,15 +189,16 @@ namespace TBF.BenchControl.TestMethods.S640Communication /// Constructor for multiple S640Communication tests /// /// Number of text boxes for serial numbers - public S640CommForm(IList activities, I640Cfg config, Generic.IProcedureParams procParams, IList tests) + public S640CommForm(IList activities, I640Cfg cfg, Generic.IProcedureParams procParams, IList tests) : this() { this.activities = activities; - debugLevel = config.DebugLevel; - optoDataTimeout = config.OptoDataTimeout; - fileExchangePath = string.IsNullOrEmpty(config.FileExchangePath) ? string.Empty : config.FileExchangePath; - fileExchangeTimeout = config.FileExchangeTimeout; - enterSerialNumbers = config.EnterSerialNumbers; + debugLevel = cfg.DebugLevel; + optoDataTimeout = cfg.OptoDataTimeout; + fileExchangePath = string.IsNullOrEmpty(cfg.FileExchangePath) ? string.Empty : cfg.FileExchangePath; + fileExchangeTimeout = cfg.FileExchangeTimeout; + enterSerialNumbers = cfg.EnterSerialNumbers; + skipBadMeters = cfg.SkipBadMeters; this.tests = tests; this.pPars = procParams as ProcParams; @@ -447,7 +449,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication else { /// Communication is OK right now - messages[i].Text = string.Format("pcb={0} radio={1}", optoHeads[i].PcbNumber, optoHeads[i].RadioAddress); + messages[i].Text = string.Format("pcb = {0} radio = {1}", optoHeads[i].PcbNumber, optoHeads[i].RadioAddress); pictures[i].BackColor = OptoOKColor; /// increment commOkLoopsCount[i] and check its value, considered OK just after 5 repeats @@ -529,10 +531,22 @@ namespace TBF.BenchControl.TestMethods.S640Communication for (int i = 0; i < textBoxesCount; i++) { messages[i].Enabled = false; } + bool focused = false; if (enterSerialNumbers) { - for (int i = 0; i < textBoxesCount; i++) { serialNumbers[i].Enabled = true; } - serialNumbers[0].Focus(); + for (int i = 0; i < textBoxesCount; i++) + { + if (serialNumbers[i].Visible) + { + serialNumbers[i].Enabled = true; + if (!focused) + { + serialNumbers[i].Focus(); + focused = true; + } + } + } + closeButton.Visible = true; closeButton.Enabled = true; closeButton.Text = Strings.Continue; @@ -731,7 +745,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication wm.Suffix = ord.Suffix; wm.CompleteSerialNr = string.Format("{0}{1}{2}", wm.Prefix, assingedSNStr, wm.Suffix); - messages[i].Text = string.Format("pcb={0} radio={1}->{2} s/n={3}", wm.SerialNrAux, wm.OriRadioAddress, wm.RadioAddress, assingedSNStr); + messages[i].Text = string.Format("s/n = {0} radio = {1}", assingedSNStr, wm.RadioAddress); #endif ord.CurrentSerialNr = currentSerialNr; ord.CurrentRadioAddress = currentRadioAddress; @@ -1095,45 +1109,55 @@ namespace TBF.BenchControl.TestMethods.S640Communication } } - private void checkBoxImage1_Click(object sender, EventArgs e) { fromOptoTextBox1.Text = (textBox1.Visible = checkBoxImage1.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage2_Click(object sender, EventArgs e) { fromOptoTextBox2.Text = (textBox2.Visible = checkBoxImage2.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage3_Click(object sender, EventArgs e) { fromOptoTextBox3.Text = (textBox3.Visible = checkBoxImage3.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage4_Click(object sender, EventArgs e) { fromOptoTextBox4.Text = (textBox4.Visible = checkBoxImage4.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage5_Click(object sender, EventArgs e) { fromOptoTextBox5.Text = (textBox5.Visible = checkBoxImage5.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage6_Click(object sender, EventArgs e) { fromOptoTextBox6.Text = (textBox6.Visible = checkBoxImage6.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage7_Click(object sender, EventArgs e) { fromOptoTextBox7.Text = (textBox7.Visible = checkBoxImage7.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage8_Click(object sender, EventArgs e) { fromOptoTextBox8.Text = (textBox8.Visible = checkBoxImage8.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage9_Click(object sender, EventArgs e) { fromOptoTextBox9.Text = (textBox9.Visible = checkBoxImage9.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage10_Click(object sender, EventArgs e) { fromOptoTextBox10.Text = (textBox10.Visible = checkBoxImage10.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage11_Click(object sender, EventArgs e) { fromOptoTextBox11.Text = (textBox11.Visible = checkBoxImage11.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage12_Click(object sender, EventArgs e) { fromOptoTextBox12.Text = (textBox12.Visible = checkBoxImage12.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage13_Click(object sender, EventArgs e) { fromOptoTextBox13.Text = (textBox13.Visible = checkBoxImage13.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage14_Click(object sender, EventArgs e) { fromOptoTextBox14.Text = (textBox14.Visible = checkBoxImage14.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage15_Click(object sender, EventArgs e) { fromOptoTextBox15.Text = (textBox15.Visible = checkBoxImage15.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage16_Click(object sender, EventArgs e) { fromOptoTextBox16.Text = (textBox16.Visible = checkBoxImage16.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage17_Click(object sender, EventArgs e) { fromOptoTextBox17.Text = (textBox17.Visible = checkBoxImage17.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage18_Click(object sender, EventArgs e) { fromOptoTextBox18.Text = (textBox18.Visible = checkBoxImage18.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage19_Click(object sender, EventArgs e) { fromOptoTextBox19.Text = (textBox19.Visible = checkBoxImage19.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage20_Click(object sender, EventArgs e) { fromOptoTextBox20.Text = (textBox20.Visible = checkBoxImage20.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage21_Click(object sender, EventArgs e) { fromOptoTextBox21.Text = (textBox21.Visible = checkBoxImage21.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage22_Click(object sender, EventArgs e) { fromOptoTextBox22.Text = (textBox22.Visible = checkBoxImage22.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage23_Click(object sender, EventArgs e) { fromOptoTextBox23.Text = (textBox23.Visible = checkBoxImage23.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage24_Click(object sender, EventArgs e) { fromOptoTextBox24.Text = (textBox24.Visible = checkBoxImage24.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage25_Click(object sender, EventArgs e) { fromOptoTextBox25.Text = (textBox25.Visible = checkBoxImage25.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage26_Click(object sender, EventArgs e) { fromOptoTextBox26.Text = (textBox26.Visible = checkBoxImage26.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage27_Click(object sender, EventArgs e) { fromOptoTextBox27.Text = (textBox27.Visible = checkBoxImage27.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage28_Click(object sender, EventArgs e) { fromOptoTextBox28.Text = (textBox28.Visible = checkBoxImage28.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage29_Click(object sender, EventArgs e) { fromOptoTextBox29.Text = (textBox29.Visible = checkBoxImage29.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage30_Click(object sender, EventArgs e) { fromOptoTextBox30.Text = (textBox30.Visible = checkBoxImage30.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage31_Click(object sender, EventArgs e) { fromOptoTextBox31.Text = (textBox31.Visible = checkBoxImage31.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage32_Click(object sender, EventArgs e) { fromOptoTextBox32.Text = (textBox32.Visible = checkBoxImage32.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage33_Click(object sender, EventArgs e) { fromOptoTextBox33.Text = (textBox33.Visible = checkBoxImage33.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage34_Click(object sender, EventArgs e) { fromOptoTextBox34.Text = (textBox34.Visible = checkBoxImage34.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage35_Click(object sender, EventArgs e) { fromOptoTextBox35.Text = (textBox35.Visible = checkBoxImage35.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage36_Click(object sender, EventArgs e) { fromOptoTextBox36.Text = (textBox36.Visible = checkBoxImage36.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage37_Click(object sender, EventArgs e) { fromOptoTextBox37.Text = (textBox37.Visible = checkBoxImage37.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage38_Click(object sender, EventArgs e) { fromOptoTextBox38.Text = (textBox38.Visible = checkBoxImage38.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage39_Click(object sender, EventArgs e) { fromOptoTextBox39.Text = (textBox39.Visible = checkBoxImage39.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } - private void checkBoxImage40_Click(object sender, EventArgs e) { fromOptoTextBox40.Text = (textBox40.Visible = checkBoxImage40.Checked) ? string.Empty : Strings.Head_was_disabled_by_the_user; } + private void checkBoxImage1_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage1, fromOptoTextBox1, textBox1); } + private void checkBoxImage2_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage2, fromOptoTextBox2, textBox2); } + private void checkBoxImage3_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage3, fromOptoTextBox3, textBox3); } + private void checkBoxImage4_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage4, fromOptoTextBox4, textBox4); } + private void checkBoxImage5_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage5, fromOptoTextBox5, textBox5); } + private void checkBoxImage6_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage6, fromOptoTextBox6, textBox6); } + private void checkBoxImage7_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage7, fromOptoTextBox7, textBox7); } + private void checkBoxImage8_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage8, fromOptoTextBox8, textBox8); } + private void checkBoxImage9_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage9, fromOptoTextBox9, textBox9); } + private void checkBoxImage10_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage10, fromOptoTextBox10, textBox10); } + private void checkBoxImage11_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage11, fromOptoTextBox11, textBox11); } + private void checkBoxImage12_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage12, fromOptoTextBox12, textBox12); } + private void checkBoxImage13_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage13, fromOptoTextBox13, textBox13); } + private void checkBoxImage14_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage14, fromOptoTextBox14, textBox14); } + private void checkBoxImage15_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage15, fromOptoTextBox15, textBox15); } + private void checkBoxImage16_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage16, fromOptoTextBox16, textBox16); } + private void checkBoxImage17_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage17, fromOptoTextBox17, textBox17); } + private void checkBoxImage18_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage18, fromOptoTextBox18, textBox18); } + private void checkBoxImage19_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage19, fromOptoTextBox19, textBox19); } + private void checkBoxImage20_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage20, fromOptoTextBox20, textBox20); } + private void checkBoxImage21_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage21, fromOptoTextBox21, textBox21); } + private void checkBoxImage22_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage22, fromOptoTextBox22, textBox22); } + private void checkBoxImage23_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage23, fromOptoTextBox23, textBox23); } + private void checkBoxImage24_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage24, fromOptoTextBox24, textBox24); } + private void checkBoxImage25_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage25, fromOptoTextBox25, textBox25); } + private void checkBoxImage26_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage26, fromOptoTextBox26, textBox26); } + private void checkBoxImage27_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage27, fromOptoTextBox27, textBox27); } + private void checkBoxImage28_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage28, fromOptoTextBox28, textBox28); } + private void checkBoxImage29_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage29, fromOptoTextBox29, textBox29); } + private void checkBoxImage30_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage30, fromOptoTextBox30, textBox30); } + private void checkBoxImage31_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage31, fromOptoTextBox31, textBox31); } + private void checkBoxImage32_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage32, fromOptoTextBox32, textBox32); } + private void checkBoxImage33_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage33, fromOptoTextBox33, textBox33); } + private void checkBoxImage34_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage34, fromOptoTextBox34, textBox34); } + private void checkBoxImage35_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage35, fromOptoTextBox35, textBox35); } + private void checkBoxImage36_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage36, fromOptoTextBox36, textBox36); } + private void checkBoxImage37_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage37, fromOptoTextBox37, textBox37); } + private void checkBoxImage38_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage38, fromOptoTextBox38, textBox38); } + private void checkBoxImage39_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage39, fromOptoTextBox39, textBox39); } + private void checkBoxImage40_Click(object sender, EventArgs e) { ProcessClick(checkBoxImage40, fromOptoTextBox40, textBox40); } + + void ProcessClick(CheckBoxImage checkBox, TextBox messageBox, TextBox snTextBox) + { + messageBox.Text = checkBox.Checked ? string.Empty : Strings.Head_was_disabled_by_the_user; + + if (skipBadMeters) + { + snTextBox.Visible = checkBox.Checked; + } + } } } diff --git a/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.designer.cs b/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.designer.cs index 426f14d3b..7555fffb4 100644 --- a/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.designer.cs +++ b/TBF/BenchControl/TestMethods/S640Communication/S640CommForm.designer.cs @@ -935,18 +935,18 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // responseTextBox // - this.responseTextBox.Location = new System.Drawing.Point(130, 703); + this.responseTextBox.Location = new System.Drawing.Point(20, 710); this.responseTextBox.Multiline = true; this.responseTextBox.Name = "responseTextBox"; this.responseTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.responseTextBox.Size = new System.Drawing.Size(1290, 145); + this.responseTextBox.Size = new System.Drawing.Size(713, 145); this.responseTextBox.TabIndex = 198; // // closeButton // this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.closeButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.closeButton.Location = new System.Drawing.Point(1302, 25); + this.closeButton.Location = new System.Drawing.Point(1341, 25); this.closeButton.Name = "closeButton"; this.closeButton.Size = new System.Drawing.Size(118, 37); this.closeButton.TabIndex = 199; @@ -958,7 +958,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // progressBar1 // this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar1.Location = new System.Drawing.Point(901, 25); + this.progressBar1.Location = new System.Drawing.Point(940, 25); this.progressBar1.Name = "progressBar1"; this.progressBar1.Size = new System.Drawing.Size(238, 37); this.progressBar1.TabIndex = 200; @@ -968,7 +968,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.retryButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.retryButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.retryButton.Location = new System.Drawing.Point(1162, 25); + this.retryButton.Location = new System.Drawing.Point(1201, 25); this.retryButton.Name = "retryButton"; this.retryButton.Size = new System.Drawing.Size(118, 37); this.retryButton.TabIndex = 201; @@ -979,7 +979,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox21 // - this.pictureBox21.Location = new System.Drawing.Point(806, 107); + this.pictureBox21.Location = new System.Drawing.Point(816, 107); this.pictureBox21.Name = "pictureBox21"; this.pictureBox21.Size = new System.Drawing.Size(23, 23); this.pictureBox21.TabIndex = 204; @@ -988,7 +988,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox21 // this.fromOptoTextBox21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox21.Location = new System.Drawing.Point(846, 107); + this.fromOptoTextBox21.Location = new System.Drawing.Point(856, 107); this.fromOptoTextBox21.Name = "fromOptoTextBox21"; this.fromOptoTextBox21.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox21.TabIndex = 203; @@ -998,7 +998,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel21.AutoSize = true; this.wmLabel21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel21.Location = new System.Drawing.Point(733, 112); + this.wmLabel21.Location = new System.Drawing.Point(743, 112); this.wmLabel21.Name = "wmLabel21"; this.wmLabel21.Size = new System.Drawing.Size(24, 16); this.wmLabel21.TabIndex = 202; @@ -1007,7 +1007,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox22 // - this.pictureBox22.Location = new System.Drawing.Point(806, 137); + this.pictureBox22.Location = new System.Drawing.Point(816, 137); this.pictureBox22.Name = "pictureBox22"; this.pictureBox22.Size = new System.Drawing.Size(23, 23); this.pictureBox22.TabIndex = 208; @@ -1016,7 +1016,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox22 // this.fromOptoTextBox22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox22.Location = new System.Drawing.Point(846, 136); + this.fromOptoTextBox22.Location = new System.Drawing.Point(856, 136); this.fromOptoTextBox22.Name = "fromOptoTextBox22"; this.fromOptoTextBox22.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox22.TabIndex = 207; @@ -1026,7 +1026,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel22.AutoSize = true; this.wmLabel22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel22.Location = new System.Drawing.Point(733, 142); + this.wmLabel22.Location = new System.Drawing.Point(743, 142); this.wmLabel22.Name = "wmLabel22"; this.wmLabel22.Size = new System.Drawing.Size(24, 16); this.wmLabel22.TabIndex = 206; @@ -1035,7 +1035,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox23 // - this.pictureBox23.Location = new System.Drawing.Point(806, 166); + this.pictureBox23.Location = new System.Drawing.Point(816, 166); this.pictureBox23.Name = "pictureBox23"; this.pictureBox23.Size = new System.Drawing.Size(23, 23); this.pictureBox23.TabIndex = 212; @@ -1044,7 +1044,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox23 // this.fromOptoTextBox23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox23.Location = new System.Drawing.Point(846, 165); + this.fromOptoTextBox23.Location = new System.Drawing.Point(856, 165); this.fromOptoTextBox23.Name = "fromOptoTextBox23"; this.fromOptoTextBox23.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox23.TabIndex = 211; @@ -1054,7 +1054,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel23.AutoSize = true; this.wmLabel23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel23.Location = new System.Drawing.Point(733, 171); + this.wmLabel23.Location = new System.Drawing.Point(743, 171); this.wmLabel23.Name = "wmLabel23"; this.wmLabel23.Size = new System.Drawing.Size(24, 16); this.wmLabel23.TabIndex = 210; @@ -1063,7 +1063,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox40 // - this.pictureBox40.Location = new System.Drawing.Point(806, 658); + this.pictureBox40.Location = new System.Drawing.Point(816, 658); this.pictureBox40.Name = "pictureBox40"; this.pictureBox40.Size = new System.Drawing.Size(23, 23); this.pictureBox40.TabIndex = 264; @@ -1071,7 +1071,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox39 // - this.pictureBox39.Location = new System.Drawing.Point(806, 629); + this.pictureBox39.Location = new System.Drawing.Point(816, 629); this.pictureBox39.Name = "pictureBox39"; this.pictureBox39.Size = new System.Drawing.Size(23, 23); this.pictureBox39.TabIndex = 263; @@ -1079,7 +1079,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox38 // - this.pictureBox38.Location = new System.Drawing.Point(806, 600); + this.pictureBox38.Location = new System.Drawing.Point(816, 600); this.pictureBox38.Name = "pictureBox38"; this.pictureBox38.Size = new System.Drawing.Size(23, 23); this.pictureBox38.TabIndex = 262; @@ -1087,7 +1087,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox37 // - this.pictureBox37.Location = new System.Drawing.Point(806, 571); + this.pictureBox37.Location = new System.Drawing.Point(816, 571); this.pictureBox37.Name = "pictureBox37"; this.pictureBox37.Size = new System.Drawing.Size(23, 23); this.pictureBox37.TabIndex = 261; @@ -1095,7 +1095,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox36 // - this.pictureBox36.Location = new System.Drawing.Point(806, 542); + this.pictureBox36.Location = new System.Drawing.Point(816, 542); this.pictureBox36.Name = "pictureBox36"; this.pictureBox36.Size = new System.Drawing.Size(23, 23); this.pictureBox36.TabIndex = 260; @@ -1103,7 +1103,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox35 // - this.pictureBox35.Location = new System.Drawing.Point(806, 513); + this.pictureBox35.Location = new System.Drawing.Point(816, 513); this.pictureBox35.Name = "pictureBox35"; this.pictureBox35.Size = new System.Drawing.Size(23, 23); this.pictureBox35.TabIndex = 259; @@ -1111,7 +1111,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox34 // - this.pictureBox34.Location = new System.Drawing.Point(806, 484); + this.pictureBox34.Location = new System.Drawing.Point(816, 484); this.pictureBox34.Name = "pictureBox34"; this.pictureBox34.Size = new System.Drawing.Size(23, 23); this.pictureBox34.TabIndex = 258; @@ -1119,7 +1119,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox33 // - this.pictureBox33.Location = new System.Drawing.Point(806, 455); + this.pictureBox33.Location = new System.Drawing.Point(816, 455); this.pictureBox33.Name = "pictureBox33"; this.pictureBox33.Size = new System.Drawing.Size(23, 23); this.pictureBox33.TabIndex = 257; @@ -1127,7 +1127,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox32 // - this.pictureBox32.Location = new System.Drawing.Point(806, 426); + this.pictureBox32.Location = new System.Drawing.Point(816, 426); this.pictureBox32.Name = "pictureBox32"; this.pictureBox32.Size = new System.Drawing.Size(23, 23); this.pictureBox32.TabIndex = 256; @@ -1135,7 +1135,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox31 // - this.pictureBox31.Location = new System.Drawing.Point(806, 397); + this.pictureBox31.Location = new System.Drawing.Point(816, 397); this.pictureBox31.Name = "pictureBox31"; this.pictureBox31.Size = new System.Drawing.Size(23, 23); this.pictureBox31.TabIndex = 255; @@ -1143,7 +1143,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox30 // - this.pictureBox30.Location = new System.Drawing.Point(806, 368); + this.pictureBox30.Location = new System.Drawing.Point(816, 368); this.pictureBox30.Name = "pictureBox30"; this.pictureBox30.Size = new System.Drawing.Size(23, 23); this.pictureBox30.TabIndex = 254; @@ -1151,7 +1151,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox29 // - this.pictureBox29.Location = new System.Drawing.Point(806, 339); + this.pictureBox29.Location = new System.Drawing.Point(816, 339); this.pictureBox29.Name = "pictureBox29"; this.pictureBox29.Size = new System.Drawing.Size(23, 23); this.pictureBox29.TabIndex = 253; @@ -1159,7 +1159,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox28 // - this.pictureBox28.Location = new System.Drawing.Point(806, 310); + this.pictureBox28.Location = new System.Drawing.Point(816, 310); this.pictureBox28.Name = "pictureBox28"; this.pictureBox28.Size = new System.Drawing.Size(23, 23); this.pictureBox28.TabIndex = 252; @@ -1167,7 +1167,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox27 // - this.pictureBox27.Location = new System.Drawing.Point(806, 281); + this.pictureBox27.Location = new System.Drawing.Point(816, 281); this.pictureBox27.Name = "pictureBox27"; this.pictureBox27.Size = new System.Drawing.Size(23, 23); this.pictureBox27.TabIndex = 251; @@ -1175,7 +1175,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox26 // - this.pictureBox26.Location = new System.Drawing.Point(806, 252); + this.pictureBox26.Location = new System.Drawing.Point(816, 252); this.pictureBox26.Name = "pictureBox26"; this.pictureBox26.Size = new System.Drawing.Size(23, 23); this.pictureBox26.TabIndex = 250; @@ -1183,7 +1183,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox25 // - this.pictureBox25.Location = new System.Drawing.Point(806, 223); + this.pictureBox25.Location = new System.Drawing.Point(816, 223); this.pictureBox25.Name = "pictureBox25"; this.pictureBox25.Size = new System.Drawing.Size(23, 23); this.pictureBox25.TabIndex = 249; @@ -1191,7 +1191,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // // pictureBox24 // - this.pictureBox24.Location = new System.Drawing.Point(806, 194); + this.pictureBox24.Location = new System.Drawing.Point(816, 194); this.pictureBox24.Name = "pictureBox24"; this.pictureBox24.Size = new System.Drawing.Size(23, 23); this.pictureBox24.TabIndex = 248; @@ -1200,7 +1200,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox40 // this.fromOptoTextBox40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox40.Location = new System.Drawing.Point(846, 657); + this.fromOptoTextBox40.Location = new System.Drawing.Point(856, 657); this.fromOptoTextBox40.Name = "fromOptoTextBox40"; this.fromOptoTextBox40.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox40.TabIndex = 247; @@ -1210,7 +1210,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel40.AutoSize = true; this.wmLabel40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel40.Location = new System.Drawing.Point(733, 664); + this.wmLabel40.Location = new System.Drawing.Point(743, 664); this.wmLabel40.Name = "wmLabel40"; this.wmLabel40.Size = new System.Drawing.Size(24, 16); this.wmLabel40.TabIndex = 246; @@ -1220,7 +1220,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox39 // this.fromOptoTextBox39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox39.Location = new System.Drawing.Point(846, 628); + this.fromOptoTextBox39.Location = new System.Drawing.Point(856, 628); this.fromOptoTextBox39.Name = "fromOptoTextBox39"; this.fromOptoTextBox39.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox39.TabIndex = 245; @@ -1230,7 +1230,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel39.AutoSize = true; this.wmLabel39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel39.Location = new System.Drawing.Point(733, 635); + this.wmLabel39.Location = new System.Drawing.Point(743, 635); this.wmLabel39.Name = "wmLabel39"; this.wmLabel39.Size = new System.Drawing.Size(24, 16); this.wmLabel39.TabIndex = 244; @@ -1240,7 +1240,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox38 // this.fromOptoTextBox38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox38.Location = new System.Drawing.Point(846, 599); + this.fromOptoTextBox38.Location = new System.Drawing.Point(856, 599); this.fromOptoTextBox38.Name = "fromOptoTextBox38"; this.fromOptoTextBox38.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox38.TabIndex = 239; @@ -1250,7 +1250,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel38.AutoSize = true; this.wmLabel38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel38.Location = new System.Drawing.Point(733, 606); + this.wmLabel38.Location = new System.Drawing.Point(743, 606); this.wmLabel38.Name = "wmLabel38"; this.wmLabel38.Size = new System.Drawing.Size(24, 16); this.wmLabel38.TabIndex = 235; @@ -1260,7 +1260,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox37 // this.fromOptoTextBox37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox37.Location = new System.Drawing.Point(846, 570); + this.fromOptoTextBox37.Location = new System.Drawing.Point(856, 570); this.fromOptoTextBox37.Name = "fromOptoTextBox37"; this.fromOptoTextBox37.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox37.TabIndex = 238; @@ -1270,7 +1270,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel37.AutoSize = true; this.wmLabel37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel37.Location = new System.Drawing.Point(733, 576); + this.wmLabel37.Location = new System.Drawing.Point(743, 576); this.wmLabel37.Name = "wmLabel37"; this.wmLabel37.Size = new System.Drawing.Size(24, 16); this.wmLabel37.TabIndex = 234; @@ -1280,7 +1280,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox36 // this.fromOptoTextBox36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox36.Location = new System.Drawing.Point(846, 541); + this.fromOptoTextBox36.Location = new System.Drawing.Point(856, 541); this.fromOptoTextBox36.Name = "fromOptoTextBox36"; this.fromOptoTextBox36.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox36.TabIndex = 242; @@ -1290,7 +1290,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel36.AutoSize = true; this.wmLabel36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel36.Location = new System.Drawing.Point(733, 547); + this.wmLabel36.Location = new System.Drawing.Point(743, 547); this.wmLabel36.Name = "wmLabel36"; this.wmLabel36.Size = new System.Drawing.Size(24, 16); this.wmLabel36.TabIndex = 233; @@ -1300,7 +1300,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox35 // this.fromOptoTextBox35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox35.Location = new System.Drawing.Point(846, 512); + this.fromOptoTextBox35.Location = new System.Drawing.Point(856, 512); this.fromOptoTextBox35.Name = "fromOptoTextBox35"; this.fromOptoTextBox35.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox35.TabIndex = 243; @@ -1310,7 +1310,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel35.AutoSize = true; this.wmLabel35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel35.Location = new System.Drawing.Point(733, 518); + this.wmLabel35.Location = new System.Drawing.Point(743, 518); this.wmLabel35.Name = "wmLabel35"; this.wmLabel35.Size = new System.Drawing.Size(24, 16); this.wmLabel35.TabIndex = 232; @@ -1320,7 +1320,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox34 // this.fromOptoTextBox34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox34.Location = new System.Drawing.Point(846, 483); + this.fromOptoTextBox34.Location = new System.Drawing.Point(856, 483); this.fromOptoTextBox34.Name = "fromOptoTextBox34"; this.fromOptoTextBox34.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox34.TabIndex = 240; @@ -1330,7 +1330,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel34.AutoSize = true; this.wmLabel34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel34.Location = new System.Drawing.Point(733, 489); + this.wmLabel34.Location = new System.Drawing.Point(743, 489); this.wmLabel34.Name = "wmLabel34"; this.wmLabel34.Size = new System.Drawing.Size(24, 16); this.wmLabel34.TabIndex = 237; @@ -1340,7 +1340,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox33 // this.fromOptoTextBox33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox33.Location = new System.Drawing.Point(846, 454); + this.fromOptoTextBox33.Location = new System.Drawing.Point(856, 454); this.fromOptoTextBox33.Name = "fromOptoTextBox33"; this.fromOptoTextBox33.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox33.TabIndex = 241; @@ -1350,7 +1350,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel33.AutoSize = true; this.wmLabel33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel33.Location = new System.Drawing.Point(733, 460); + this.wmLabel33.Location = new System.Drawing.Point(743, 460); this.wmLabel33.Name = "wmLabel33"; this.wmLabel33.Size = new System.Drawing.Size(24, 16); this.wmLabel33.TabIndex = 236; @@ -1360,7 +1360,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox32 // this.fromOptoTextBox32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox32.Location = new System.Drawing.Point(846, 425); + this.fromOptoTextBox32.Location = new System.Drawing.Point(856, 425); this.fromOptoTextBox32.Name = "fromOptoTextBox32"; this.fromOptoTextBox32.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox32.TabIndex = 231; @@ -1370,7 +1370,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel32.AutoSize = true; this.wmLabel32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel32.Location = new System.Drawing.Point(733, 431); + this.wmLabel32.Location = new System.Drawing.Point(743, 431); this.wmLabel32.Name = "wmLabel32"; this.wmLabel32.Size = new System.Drawing.Size(24, 16); this.wmLabel32.TabIndex = 230; @@ -1380,7 +1380,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox31 // this.fromOptoTextBox31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox31.Location = new System.Drawing.Point(846, 396); + this.fromOptoTextBox31.Location = new System.Drawing.Point(856, 396); this.fromOptoTextBox31.Name = "fromOptoTextBox31"; this.fromOptoTextBox31.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox31.TabIndex = 229; @@ -1390,7 +1390,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel31.AutoSize = true; this.wmLabel31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel31.Location = new System.Drawing.Point(733, 402); + this.wmLabel31.Location = new System.Drawing.Point(743, 402); this.wmLabel31.Name = "wmLabel31"; this.wmLabel31.Size = new System.Drawing.Size(24, 16); this.wmLabel31.TabIndex = 228; @@ -1400,7 +1400,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox30 // this.fromOptoTextBox30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox30.Location = new System.Drawing.Point(846, 367); + this.fromOptoTextBox30.Location = new System.Drawing.Point(856, 367); this.fromOptoTextBox30.Name = "fromOptoTextBox30"; this.fromOptoTextBox30.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox30.TabIndex = 227; @@ -1410,7 +1410,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel30.AutoSize = true; this.wmLabel30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel30.Location = new System.Drawing.Point(733, 373); + this.wmLabel30.Location = new System.Drawing.Point(743, 373); this.wmLabel30.Name = "wmLabel30"; this.wmLabel30.Size = new System.Drawing.Size(24, 16); this.wmLabel30.TabIndex = 226; @@ -1420,7 +1420,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox29 // this.fromOptoTextBox29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox29.Location = new System.Drawing.Point(846, 338); + this.fromOptoTextBox29.Location = new System.Drawing.Point(856, 338); this.fromOptoTextBox29.Name = "fromOptoTextBox29"; this.fromOptoTextBox29.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox29.TabIndex = 225; @@ -1430,7 +1430,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel29.AutoSize = true; this.wmLabel29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel29.Location = new System.Drawing.Point(733, 344); + this.wmLabel29.Location = new System.Drawing.Point(743, 344); this.wmLabel29.Name = "wmLabel29"; this.wmLabel29.Size = new System.Drawing.Size(24, 16); this.wmLabel29.TabIndex = 224; @@ -1440,7 +1440,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox28 // this.fromOptoTextBox28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox28.Location = new System.Drawing.Point(846, 309); + this.fromOptoTextBox28.Location = new System.Drawing.Point(856, 309); this.fromOptoTextBox28.Name = "fromOptoTextBox28"; this.fromOptoTextBox28.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox28.TabIndex = 223; @@ -1450,7 +1450,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel28.AutoSize = true; this.wmLabel28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel28.Location = new System.Drawing.Point(733, 316); + this.wmLabel28.Location = new System.Drawing.Point(743, 316); this.wmLabel28.Name = "wmLabel28"; this.wmLabel28.Size = new System.Drawing.Size(24, 16); this.wmLabel28.TabIndex = 222; @@ -1460,7 +1460,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox27 // this.fromOptoTextBox27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox27.Location = new System.Drawing.Point(846, 280); + this.fromOptoTextBox27.Location = new System.Drawing.Point(856, 280); this.fromOptoTextBox27.Name = "fromOptoTextBox27"; this.fromOptoTextBox27.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox27.TabIndex = 221; @@ -1470,7 +1470,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel27.AutoSize = true; this.wmLabel27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel27.Location = new System.Drawing.Point(733, 287); + this.wmLabel27.Location = new System.Drawing.Point(743, 287); this.wmLabel27.Name = "wmLabel27"; this.wmLabel27.Size = new System.Drawing.Size(24, 16); this.wmLabel27.TabIndex = 220; @@ -1480,7 +1480,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox26 // this.fromOptoTextBox26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox26.Location = new System.Drawing.Point(846, 251); + this.fromOptoTextBox26.Location = new System.Drawing.Point(856, 251); this.fromOptoTextBox26.Name = "fromOptoTextBox26"; this.fromOptoTextBox26.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox26.TabIndex = 217; @@ -1490,7 +1490,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel26.AutoSize = true; this.wmLabel26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel26.Location = new System.Drawing.Point(733, 258); + this.wmLabel26.Location = new System.Drawing.Point(743, 258); this.wmLabel26.Name = "wmLabel26"; this.wmLabel26.Size = new System.Drawing.Size(24, 16); this.wmLabel26.TabIndex = 216; @@ -1500,7 +1500,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox25 // this.fromOptoTextBox25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox25.Location = new System.Drawing.Point(846, 222); + this.fromOptoTextBox25.Location = new System.Drawing.Point(856, 222); this.fromOptoTextBox25.Name = "fromOptoTextBox25"; this.fromOptoTextBox25.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox25.TabIndex = 219; @@ -1510,7 +1510,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel25.AutoSize = true; this.wmLabel25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel25.Location = new System.Drawing.Point(733, 228); + this.wmLabel25.Location = new System.Drawing.Point(743, 228); this.wmLabel25.Name = "wmLabel25"; this.wmLabel25.Size = new System.Drawing.Size(24, 16); this.wmLabel25.TabIndex = 215; @@ -1520,7 +1520,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // fromOptoTextBox24 // this.fromOptoTextBox24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.fromOptoTextBox24.Location = new System.Drawing.Point(846, 193); + this.fromOptoTextBox24.Location = new System.Drawing.Point(856, 193); this.fromOptoTextBox24.Name = "fromOptoTextBox24"; this.fromOptoTextBox24.Size = new System.Drawing.Size(400, 23); this.fromOptoTextBox24.TabIndex = 218; @@ -1530,7 +1530,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.wmLabel24.AutoSize = true; this.wmLabel24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.wmLabel24.Location = new System.Drawing.Point(733, 199); + this.wmLabel24.Location = new System.Drawing.Point(743, 199); this.wmLabel24.Name = "wmLabel24"; this.wmLabel24.Size = new System.Drawing.Size(24, 16); this.wmLabel24.TabIndex = 214; @@ -1543,7 +1543,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox1.Location = new System.Drawing.Point(536, 108); this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(168, 23); + this.textBox1.Size = new System.Drawing.Size(197, 23); this.textBox1.TabIndex = 282; this.textBox1.Visible = false; this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1_KeyPress); @@ -1554,7 +1554,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox2.Location = new System.Drawing.Point(536, 137); this.textBox2.Name = "textBox2"; - this.textBox2.Size = new System.Drawing.Size(168, 23); + this.textBox2.Size = new System.Drawing.Size(197, 23); this.textBox2.TabIndex = 283; this.textBox2.Visible = false; this.textBox2.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox2_KeyPress); @@ -1565,7 +1565,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox3.Location = new System.Drawing.Point(536, 166); this.textBox3.Name = "textBox3"; - this.textBox3.Size = new System.Drawing.Size(168, 23); + this.textBox3.Size = new System.Drawing.Size(197, 23); this.textBox3.TabIndex = 284; this.textBox3.Visible = false; this.textBox3.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox3_KeyPress); @@ -1576,7 +1576,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox4.Location = new System.Drawing.Point(536, 195); this.textBox4.Name = "textBox4"; - this.textBox4.Size = new System.Drawing.Size(168, 23); + this.textBox4.Size = new System.Drawing.Size(197, 23); this.textBox4.TabIndex = 285; this.textBox4.Visible = false; this.textBox4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox4_KeyPress); @@ -1587,7 +1587,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox5.Location = new System.Drawing.Point(536, 224); this.textBox5.Name = "textBox5"; - this.textBox5.Size = new System.Drawing.Size(168, 23); + this.textBox5.Size = new System.Drawing.Size(197, 23); this.textBox5.TabIndex = 286; this.textBox5.Visible = false; this.textBox5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox5_KeyPress); @@ -1598,7 +1598,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox6.Location = new System.Drawing.Point(536, 253); this.textBox6.Name = "textBox6"; - this.textBox6.Size = new System.Drawing.Size(168, 23); + this.textBox6.Size = new System.Drawing.Size(197, 23); this.textBox6.TabIndex = 287; this.textBox6.Visible = false; this.textBox6.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox6_KeyPress); @@ -1609,7 +1609,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox7.Location = new System.Drawing.Point(536, 282); this.textBox7.Name = "textBox7"; - this.textBox7.Size = new System.Drawing.Size(168, 23); + this.textBox7.Size = new System.Drawing.Size(197, 23); this.textBox7.TabIndex = 288; this.textBox7.Visible = false; this.textBox7.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox7_KeyPress); @@ -1620,7 +1620,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox8.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox8.Location = new System.Drawing.Point(536, 311); this.textBox8.Name = "textBox8"; - this.textBox8.Size = new System.Drawing.Size(168, 23); + this.textBox8.Size = new System.Drawing.Size(197, 23); this.textBox8.TabIndex = 289; this.textBox8.Visible = false; this.textBox8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox8_KeyPress); @@ -1631,7 +1631,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox9.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox9.Location = new System.Drawing.Point(536, 340); this.textBox9.Name = "textBox9"; - this.textBox9.Size = new System.Drawing.Size(168, 23); + this.textBox9.Size = new System.Drawing.Size(197, 23); this.textBox9.TabIndex = 290; this.textBox9.Visible = false; this.textBox9.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox9_KeyPress); @@ -1642,7 +1642,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox10.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox10.Location = new System.Drawing.Point(536, 369); this.textBox10.Name = "textBox10"; - this.textBox10.Size = new System.Drawing.Size(168, 23); + this.textBox10.Size = new System.Drawing.Size(197, 23); this.textBox10.TabIndex = 291; this.textBox10.Visible = false; this.textBox10.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox10_KeyPress); @@ -1653,7 +1653,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox11.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox11.Location = new System.Drawing.Point(536, 398); this.textBox11.Name = "textBox11"; - this.textBox11.Size = new System.Drawing.Size(168, 23); + this.textBox11.Size = new System.Drawing.Size(197, 23); this.textBox11.TabIndex = 292; this.textBox11.Visible = false; this.textBox11.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox11_KeyPress); @@ -1664,7 +1664,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox12.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox12.Location = new System.Drawing.Point(536, 427); this.textBox12.Name = "textBox12"; - this.textBox12.Size = new System.Drawing.Size(168, 23); + this.textBox12.Size = new System.Drawing.Size(197, 23); this.textBox12.TabIndex = 293; this.textBox12.Visible = false; this.textBox12.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox12_KeyPress); @@ -1675,7 +1675,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox13.Location = new System.Drawing.Point(536, 456); this.textBox13.Name = "textBox13"; - this.textBox13.Size = new System.Drawing.Size(168, 23); + this.textBox13.Size = new System.Drawing.Size(197, 23); this.textBox13.TabIndex = 294; this.textBox13.Visible = false; this.textBox13.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox13_KeyPress); @@ -1686,7 +1686,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox14.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox14.Location = new System.Drawing.Point(536, 485); this.textBox14.Name = "textBox14"; - this.textBox14.Size = new System.Drawing.Size(168, 23); + this.textBox14.Size = new System.Drawing.Size(197, 23); this.textBox14.TabIndex = 295; this.textBox14.Visible = false; this.textBox14.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox14_KeyPress); @@ -1697,7 +1697,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox15.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox15.Location = new System.Drawing.Point(536, 514); this.textBox15.Name = "textBox15"; - this.textBox15.Size = new System.Drawing.Size(168, 23); + this.textBox15.Size = new System.Drawing.Size(197, 23); this.textBox15.TabIndex = 296; this.textBox15.Visible = false; this.textBox15.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox15_KeyPress); @@ -1708,7 +1708,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox16.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox16.Location = new System.Drawing.Point(536, 543); this.textBox16.Name = "textBox16"; - this.textBox16.Size = new System.Drawing.Size(168, 23); + this.textBox16.Size = new System.Drawing.Size(197, 23); this.textBox16.TabIndex = 297; this.textBox16.Visible = false; this.textBox16.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox16_KeyPress); @@ -1719,7 +1719,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox17.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox17.Location = new System.Drawing.Point(536, 572); this.textBox17.Name = "textBox17"; - this.textBox17.Size = new System.Drawing.Size(168, 23); + this.textBox17.Size = new System.Drawing.Size(197, 23); this.textBox17.TabIndex = 298; this.textBox17.Visible = false; this.textBox17.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox17_KeyPress); @@ -1730,7 +1730,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox18.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox18.Location = new System.Drawing.Point(536, 601); this.textBox18.Name = "textBox18"; - this.textBox18.Size = new System.Drawing.Size(168, 23); + this.textBox18.Size = new System.Drawing.Size(197, 23); this.textBox18.TabIndex = 299; this.textBox18.Visible = false; this.textBox18.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox18_KeyPress); @@ -1741,7 +1741,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox19.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox19.Location = new System.Drawing.Point(536, 630); this.textBox19.Name = "textBox19"; - this.textBox19.Size = new System.Drawing.Size(168, 23); + this.textBox19.Size = new System.Drawing.Size(197, 23); this.textBox19.TabIndex = 300; this.textBox19.Visible = false; this.textBox19.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox19_KeyPress); @@ -1752,7 +1752,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.textBox20.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.textBox20.Location = new System.Drawing.Point(536, 659); this.textBox20.Name = "textBox20"; - this.textBox20.Size = new System.Drawing.Size(168, 23); + this.textBox20.Size = new System.Drawing.Size(197, 23); this.textBox20.TabIndex = 301; this.textBox20.Visible = false; this.textBox20.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox20_KeyPress); @@ -1761,9 +1761,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox21.Enabled = false; this.textBox21.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox21.Location = new System.Drawing.Point(1252, 107); + this.textBox21.Location = new System.Drawing.Point(1262, 107); this.textBox21.Name = "textBox21"; - this.textBox21.Size = new System.Drawing.Size(168, 23); + this.textBox21.Size = new System.Drawing.Size(197, 23); this.textBox21.TabIndex = 302; this.textBox21.Visible = false; this.textBox21.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox21_KeyPress); @@ -1772,9 +1772,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox22.Enabled = false; this.textBox22.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox22.Location = new System.Drawing.Point(1252, 136); + this.textBox22.Location = new System.Drawing.Point(1262, 136); this.textBox22.Name = "textBox22"; - this.textBox22.Size = new System.Drawing.Size(168, 23); + this.textBox22.Size = new System.Drawing.Size(197, 23); this.textBox22.TabIndex = 303; this.textBox22.Visible = false; this.textBox22.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox22_KeyPress); @@ -1783,9 +1783,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox23.Enabled = false; this.textBox23.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox23.Location = new System.Drawing.Point(1252, 166); + this.textBox23.Location = new System.Drawing.Point(1262, 166); this.textBox23.Name = "textBox23"; - this.textBox23.Size = new System.Drawing.Size(168, 23); + this.textBox23.Size = new System.Drawing.Size(197, 23); this.textBox23.TabIndex = 304; this.textBox23.Visible = false; this.textBox23.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox23_KeyPress); @@ -1794,9 +1794,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox24.Enabled = false; this.textBox24.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox24.Location = new System.Drawing.Point(1252, 195); + this.textBox24.Location = new System.Drawing.Point(1262, 195); this.textBox24.Name = "textBox24"; - this.textBox24.Size = new System.Drawing.Size(168, 23); + this.textBox24.Size = new System.Drawing.Size(197, 23); this.textBox24.TabIndex = 305; this.textBox24.Visible = false; this.textBox24.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox24_KeyPress); @@ -1805,9 +1805,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox25.Enabled = false; this.textBox25.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox25.Location = new System.Drawing.Point(1252, 223); + this.textBox25.Location = new System.Drawing.Point(1262, 223); this.textBox25.Name = "textBox25"; - this.textBox25.Size = new System.Drawing.Size(168, 23); + this.textBox25.Size = new System.Drawing.Size(197, 23); this.textBox25.TabIndex = 306; this.textBox25.Visible = false; this.textBox25.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox25_KeyPress); @@ -1816,9 +1816,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox26.Enabled = false; this.textBox26.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox26.Location = new System.Drawing.Point(1252, 251); + this.textBox26.Location = new System.Drawing.Point(1262, 251); this.textBox26.Name = "textBox26"; - this.textBox26.Size = new System.Drawing.Size(168, 23); + this.textBox26.Size = new System.Drawing.Size(197, 23); this.textBox26.TabIndex = 307; this.textBox26.Visible = false; this.textBox26.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox26_KeyPress); @@ -1827,9 +1827,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox27.Enabled = false; this.textBox27.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox27.Location = new System.Drawing.Point(1252, 280); + this.textBox27.Location = new System.Drawing.Point(1262, 280); this.textBox27.Name = "textBox27"; - this.textBox27.Size = new System.Drawing.Size(168, 23); + this.textBox27.Size = new System.Drawing.Size(197, 23); this.textBox27.TabIndex = 308; this.textBox27.Visible = false; this.textBox27.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox27_KeyPress); @@ -1838,9 +1838,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox28.Enabled = false; this.textBox28.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox28.Location = new System.Drawing.Point(1252, 309); + this.textBox28.Location = new System.Drawing.Point(1262, 309); this.textBox28.Name = "textBox28"; - this.textBox28.Size = new System.Drawing.Size(168, 23); + this.textBox28.Size = new System.Drawing.Size(197, 23); this.textBox28.TabIndex = 309; this.textBox28.Visible = false; this.textBox28.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox28_KeyPress); @@ -1849,9 +1849,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox29.Enabled = false; this.textBox29.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox29.Location = new System.Drawing.Point(1252, 338); + this.textBox29.Location = new System.Drawing.Point(1262, 338); this.textBox29.Name = "textBox29"; - this.textBox29.Size = new System.Drawing.Size(168, 23); + this.textBox29.Size = new System.Drawing.Size(197, 23); this.textBox29.TabIndex = 310; this.textBox29.Visible = false; this.textBox29.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox29_KeyPress); @@ -1860,9 +1860,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox30.Enabled = false; this.textBox30.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox30.Location = new System.Drawing.Point(1252, 367); + this.textBox30.Location = new System.Drawing.Point(1262, 367); this.textBox30.Name = "textBox30"; - this.textBox30.Size = new System.Drawing.Size(168, 23); + this.textBox30.Size = new System.Drawing.Size(197, 23); this.textBox30.TabIndex = 311; this.textBox30.Visible = false; this.textBox30.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox30_KeyPress); @@ -1871,9 +1871,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox31.Enabled = false; this.textBox31.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox31.Location = new System.Drawing.Point(1252, 396); + this.textBox31.Location = new System.Drawing.Point(1262, 396); this.textBox31.Name = "textBox31"; - this.textBox31.Size = new System.Drawing.Size(168, 23); + this.textBox31.Size = new System.Drawing.Size(197, 23); this.textBox31.TabIndex = 312; this.textBox31.Visible = false; this.textBox31.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox31_KeyPress); @@ -1882,9 +1882,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox32.Enabled = false; this.textBox32.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox32.Location = new System.Drawing.Point(1252, 425); + this.textBox32.Location = new System.Drawing.Point(1262, 425); this.textBox32.Name = "textBox32"; - this.textBox32.Size = new System.Drawing.Size(168, 23); + this.textBox32.Size = new System.Drawing.Size(197, 23); this.textBox32.TabIndex = 313; this.textBox32.Visible = false; this.textBox32.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox32_KeyPress); @@ -1893,9 +1893,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox33.Enabled = false; this.textBox33.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox33.Location = new System.Drawing.Point(1252, 454); + this.textBox33.Location = new System.Drawing.Point(1262, 454); this.textBox33.Name = "textBox33"; - this.textBox33.Size = new System.Drawing.Size(168, 23); + this.textBox33.Size = new System.Drawing.Size(197, 23); this.textBox33.TabIndex = 314; this.textBox33.Visible = false; this.textBox33.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox33_KeyPress); @@ -1904,9 +1904,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox34.Enabled = false; this.textBox34.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox34.Location = new System.Drawing.Point(1252, 483); + this.textBox34.Location = new System.Drawing.Point(1262, 483); this.textBox34.Name = "textBox34"; - this.textBox34.Size = new System.Drawing.Size(168, 23); + this.textBox34.Size = new System.Drawing.Size(197, 23); this.textBox34.TabIndex = 315; this.textBox34.Visible = false; this.textBox34.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox34_KeyPress); @@ -1915,9 +1915,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox35.Enabled = false; this.textBox35.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox35.Location = new System.Drawing.Point(1252, 512); + this.textBox35.Location = new System.Drawing.Point(1262, 512); this.textBox35.Name = "textBox35"; - this.textBox35.Size = new System.Drawing.Size(168, 23); + this.textBox35.Size = new System.Drawing.Size(197, 23); this.textBox35.TabIndex = 316; this.textBox35.Visible = false; this.textBox35.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox35_KeyPress); @@ -1926,9 +1926,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox36.Enabled = false; this.textBox36.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox36.Location = new System.Drawing.Point(1252, 541); + this.textBox36.Location = new System.Drawing.Point(1262, 541); this.textBox36.Name = "textBox36"; - this.textBox36.Size = new System.Drawing.Size(168, 23); + this.textBox36.Size = new System.Drawing.Size(197, 23); this.textBox36.TabIndex = 317; this.textBox36.Visible = false; this.textBox36.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox36_KeyPress); @@ -1937,9 +1937,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox37.Enabled = false; this.textBox37.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox37.Location = new System.Drawing.Point(1252, 570); + this.textBox37.Location = new System.Drawing.Point(1262, 570); this.textBox37.Name = "textBox37"; - this.textBox37.Size = new System.Drawing.Size(168, 23); + this.textBox37.Size = new System.Drawing.Size(197, 23); this.textBox37.TabIndex = 318; this.textBox37.Visible = false; this.textBox37.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox37_KeyPress); @@ -1948,9 +1948,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox38.Enabled = false; this.textBox38.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox38.Location = new System.Drawing.Point(1252, 599); + this.textBox38.Location = new System.Drawing.Point(1262, 599); this.textBox38.Name = "textBox38"; - this.textBox38.Size = new System.Drawing.Size(168, 23); + this.textBox38.Size = new System.Drawing.Size(197, 23); this.textBox38.TabIndex = 319; this.textBox38.Visible = false; this.textBox38.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox38_KeyPress); @@ -1959,9 +1959,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox39.Enabled = false; this.textBox39.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox39.Location = new System.Drawing.Point(1252, 628); + this.textBox39.Location = new System.Drawing.Point(1262, 628); this.textBox39.Name = "textBox39"; - this.textBox39.Size = new System.Drawing.Size(168, 23); + this.textBox39.Size = new System.Drawing.Size(197, 23); this.textBox39.TabIndex = 320; this.textBox39.Visible = false; this.textBox39.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox39_KeyPress); @@ -1970,9 +1970,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.textBox40.Enabled = false; this.textBox40.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.textBox40.Location = new System.Drawing.Point(1252, 657); + this.textBox40.Location = new System.Drawing.Point(1262, 657); this.textBox40.Name = "textBox40"; - this.textBox40.Size = new System.Drawing.Size(168, 23); + this.textBox40.Size = new System.Drawing.Size(197, 23); this.textBox40.TabIndex = 321; this.textBox40.Visible = false; this.textBox40.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox40_KeyPress); @@ -1991,7 +1991,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label2.Location = new System.Drawing.Point(843, 85); + this.label2.Location = new System.Drawing.Point(853, 85); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(277, 14); this.label2.TabIndex = 323; @@ -2011,7 +2011,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); - this.label4.Location = new System.Drawing.Point(1249, 85); + this.label4.Location = new System.Drawing.Point(1259, 85); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(111, 14); this.label4.TabIndex = 325; @@ -2021,7 +2021,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage40.Checked = false; this.checkBoxImage40.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage40.Image"))); - this.checkBoxImage40.Location = new System.Drawing.Point(768, 659); + this.checkBoxImage40.Location = new System.Drawing.Point(778, 659); this.checkBoxImage40.Name = "checkBoxImage40"; this.checkBoxImage40.Size = new System.Drawing.Size(32, 21); this.checkBoxImage40.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2034,7 +2034,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage39.Checked = false; this.checkBoxImage39.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage39.Image"))); - this.checkBoxImage39.Location = new System.Drawing.Point(768, 630); + this.checkBoxImage39.Location = new System.Drawing.Point(778, 630); this.checkBoxImage39.Name = "checkBoxImage39"; this.checkBoxImage39.Size = new System.Drawing.Size(32, 21); this.checkBoxImage39.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2047,7 +2047,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage38.Checked = false; this.checkBoxImage38.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage38.Image"))); - this.checkBoxImage38.Location = new System.Drawing.Point(768, 601); + this.checkBoxImage38.Location = new System.Drawing.Point(778, 601); this.checkBoxImage38.Name = "checkBoxImage38"; this.checkBoxImage38.Size = new System.Drawing.Size(32, 21); this.checkBoxImage38.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2060,7 +2060,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage37.Checked = false; this.checkBoxImage37.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage37.Image"))); - this.checkBoxImage37.Location = new System.Drawing.Point(768, 572); + this.checkBoxImage37.Location = new System.Drawing.Point(778, 572); this.checkBoxImage37.Name = "checkBoxImage37"; this.checkBoxImage37.Size = new System.Drawing.Size(32, 21); this.checkBoxImage37.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2073,7 +2073,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage36.Checked = false; this.checkBoxImage36.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage36.Image"))); - this.checkBoxImage36.Location = new System.Drawing.Point(768, 543); + this.checkBoxImage36.Location = new System.Drawing.Point(778, 543); this.checkBoxImage36.Name = "checkBoxImage36"; this.checkBoxImage36.Size = new System.Drawing.Size(32, 21); this.checkBoxImage36.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2086,7 +2086,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage35.Checked = false; this.checkBoxImage35.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage35.Image"))); - this.checkBoxImage35.Location = new System.Drawing.Point(768, 514); + this.checkBoxImage35.Location = new System.Drawing.Point(778, 514); this.checkBoxImage35.Name = "checkBoxImage35"; this.checkBoxImage35.Size = new System.Drawing.Size(32, 21); this.checkBoxImage35.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2099,7 +2099,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage34.Checked = false; this.checkBoxImage34.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage34.Image"))); - this.checkBoxImage34.Location = new System.Drawing.Point(768, 485); + this.checkBoxImage34.Location = new System.Drawing.Point(778, 485); this.checkBoxImage34.Name = "checkBoxImage34"; this.checkBoxImage34.Size = new System.Drawing.Size(32, 21); this.checkBoxImage34.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2112,7 +2112,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage33.Checked = false; this.checkBoxImage33.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage33.Image"))); - this.checkBoxImage33.Location = new System.Drawing.Point(768, 456); + this.checkBoxImage33.Location = new System.Drawing.Point(778, 456); this.checkBoxImage33.Name = "checkBoxImage33"; this.checkBoxImage33.Size = new System.Drawing.Size(32, 21); this.checkBoxImage33.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2125,7 +2125,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage32.Checked = false; this.checkBoxImage32.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage32.Image"))); - this.checkBoxImage32.Location = new System.Drawing.Point(768, 427); + this.checkBoxImage32.Location = new System.Drawing.Point(778, 427); this.checkBoxImage32.Name = "checkBoxImage32"; this.checkBoxImage32.Size = new System.Drawing.Size(32, 21); this.checkBoxImage32.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2138,7 +2138,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage31.Checked = false; this.checkBoxImage31.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage31.Image"))); - this.checkBoxImage31.Location = new System.Drawing.Point(768, 398); + this.checkBoxImage31.Location = new System.Drawing.Point(778, 398); this.checkBoxImage31.Name = "checkBoxImage31"; this.checkBoxImage31.Size = new System.Drawing.Size(32, 21); this.checkBoxImage31.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2151,7 +2151,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage30.Checked = false; this.checkBoxImage30.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage30.Image"))); - this.checkBoxImage30.Location = new System.Drawing.Point(768, 369); + this.checkBoxImage30.Location = new System.Drawing.Point(778, 369); this.checkBoxImage30.Name = "checkBoxImage30"; this.checkBoxImage30.Size = new System.Drawing.Size(32, 21); this.checkBoxImage30.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2164,7 +2164,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage29.Checked = false; this.checkBoxImage29.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage29.Image"))); - this.checkBoxImage29.Location = new System.Drawing.Point(768, 340); + this.checkBoxImage29.Location = new System.Drawing.Point(778, 340); this.checkBoxImage29.Name = "checkBoxImage29"; this.checkBoxImage29.Size = new System.Drawing.Size(32, 21); this.checkBoxImage29.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2177,7 +2177,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage28.Checked = false; this.checkBoxImage28.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage28.Image"))); - this.checkBoxImage28.Location = new System.Drawing.Point(768, 311); + this.checkBoxImage28.Location = new System.Drawing.Point(778, 311); this.checkBoxImage28.Name = "checkBoxImage28"; this.checkBoxImage28.Size = new System.Drawing.Size(32, 21); this.checkBoxImage28.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2190,7 +2190,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage27.Checked = false; this.checkBoxImage27.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage27.Image"))); - this.checkBoxImage27.Location = new System.Drawing.Point(768, 282); + this.checkBoxImage27.Location = new System.Drawing.Point(778, 282); this.checkBoxImage27.Name = "checkBoxImage27"; this.checkBoxImage27.Size = new System.Drawing.Size(32, 21); this.checkBoxImage27.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2203,7 +2203,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage26.Checked = false; this.checkBoxImage26.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage26.Image"))); - this.checkBoxImage26.Location = new System.Drawing.Point(768, 253); + this.checkBoxImage26.Location = new System.Drawing.Point(778, 253); this.checkBoxImage26.Name = "checkBoxImage26"; this.checkBoxImage26.Size = new System.Drawing.Size(32, 21); this.checkBoxImage26.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2216,7 +2216,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage25.Checked = false; this.checkBoxImage25.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage25.Image"))); - this.checkBoxImage25.Location = new System.Drawing.Point(768, 224); + this.checkBoxImage25.Location = new System.Drawing.Point(778, 224); this.checkBoxImage25.Name = "checkBoxImage25"; this.checkBoxImage25.Size = new System.Drawing.Size(32, 21); this.checkBoxImage25.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2229,7 +2229,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage24.Checked = false; this.checkBoxImage24.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage24.Image"))); - this.checkBoxImage24.Location = new System.Drawing.Point(768, 195); + this.checkBoxImage24.Location = new System.Drawing.Point(778, 195); this.checkBoxImage24.Name = "checkBoxImage24"; this.checkBoxImage24.Size = new System.Drawing.Size(32, 21); this.checkBoxImage24.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2242,7 +2242,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage23.Checked = false; this.checkBoxImage23.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage23.Image"))); - this.checkBoxImage23.Location = new System.Drawing.Point(768, 167); + this.checkBoxImage23.Location = new System.Drawing.Point(778, 167); this.checkBoxImage23.Name = "checkBoxImage23"; this.checkBoxImage23.Size = new System.Drawing.Size(32, 21); this.checkBoxImage23.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2255,7 +2255,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage22.Checked = false; this.checkBoxImage22.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage22.Image"))); - this.checkBoxImage22.Location = new System.Drawing.Point(768, 138); + this.checkBoxImage22.Location = new System.Drawing.Point(778, 138); this.checkBoxImage22.Name = "checkBoxImage22"; this.checkBoxImage22.Size = new System.Drawing.Size(32, 21); this.checkBoxImage22.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2268,7 +2268,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication // this.checkBoxImage21.Checked = false; this.checkBoxImage21.Image = ((System.Drawing.Image)(resources.GetObject("checkBoxImage21.Image"))); - this.checkBoxImage21.Location = new System.Drawing.Point(768, 108); + this.checkBoxImage21.Location = new System.Drawing.Point(778, 108); this.checkBoxImage21.Name = "checkBoxImage21"; this.checkBoxImage21.Size = new System.Drawing.Size(32, 21); this.checkBoxImage21.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2542,7 +2542,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.DarkGray; - this.ClientSize = new System.Drawing.Size(1445, 867); + this.ClientSize = new System.Drawing.Size(1484, 867); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); diff --git a/TBF/BenchControl/TestMethods/S640Communication/S640EndCfg.cs b/TBF/BenchControl/TestMethods/S640Communication/S640EndCfg.cs index 13cb73825..72dee63ce 100644 --- a/TBF/BenchControl/TestMethods/S640Communication/S640EndCfg.cs +++ b/TBF/BenchControl/TestMethods/S640Communication/S640EndCfg.cs @@ -28,6 +28,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication public string FileExchangePath { get; set; } public int FileExchangeTimeout { get; set; } public bool EnterSerialNumbers { get; set; } + public bool SkipBadMeters { get; set; } public bool SimultWithEvacuation { get; set; } /// Procedure parameters @@ -55,10 +56,11 @@ namespace TBF.BenchControl.TestMethods.S640Communication public void InitializeAll() { - OptoDataTimeout = 180; + OptoDataTimeout = 120; FileExchangePath = "1"; - FileExchangeTimeout = 60; + FileExchangeTimeout = 420; EnterSerialNumbers = false; + SkipBadMeters = false; SimultWithEvacuation = true; } @@ -68,6 +70,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication "File exchange path", "File exchange timeout [s] (0 = off)", "Enter serial numbers", + "Skip bad meters when entering s/n", "Simultaneous with evacuation", }; public string ParamName(int i) { return paramNames[i]; } @@ -79,6 +82,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication { case 3: case 4: + case 5: return new List { Strings.yes, Strings.no }; default: return null; @@ -93,7 +97,8 @@ namespace TBF.BenchControl.TestMethods.S640Communication case 1: return FileExchangePath; case 2: return FileExchangeTimeout.ToString(); case 3: return EnterSerialNumbers ? Strings.yes : Strings.no; - case 4: return SimultWithEvacuation ? Strings.yes : Strings.no; + case 4: return SkipBadMeters ? Strings.yes : Strings.no; + case 5: return SimultWithEvacuation ? Strings.yes : Strings.no; default: return string.Format("{0}: FileExchangePath = '{1}' FileExchangeTimeout = {2}s", Name, FileExchangePath, FileExchangeTimeout); } @@ -107,7 +112,8 @@ namespace TBF.BenchControl.TestMethods.S640Communication case 1: FileExchangePath = strValue; return CfgUpdateFlags.RestartRqrd; case 2: FileExchangeTimeout = int.Parse(strValue); return CfgUpdateFlags.RestartRqrd; case 3: EnterSerialNumbers = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; - case 4: SimultWithEvacuation = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; + case 4: SkipBadMeters = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; + case 5: SimultWithEvacuation = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; default: return CfgUpdateFlags.None; } @@ -122,12 +128,13 @@ namespace TBF.BenchControl.TestMethods.S640Communication { case 0: case 2: - if (int.TryParse(strValue, out idummy) && idummy >= 0 && idummy <= 300) return true; + if (int.TryParse(strValue, out idummy) && idummy >= 0 && idummy <= 2000) return true; break; case 1: return true; case 3: case 4: + case 5: if (ParamValues(i).Contains(strValue)) return true; break; default: @@ -145,6 +152,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication prms.FileExchangePath = this.FileExchangePath; prms.FileExchangeTimeout = this.FileExchangeTimeout; prms.EnterSerialNumbers = this.EnterSerialNumbers; + prms.SkipBadMeters = this.SkipBadMeters; prms.SimultWithEvacuation = this.SimultWithEvacuation; } diff --git a/TBF/BenchControl/TestMethods/S640Communication/S640StartCfg.cs b/TBF/BenchControl/TestMethods/S640Communication/S640StartCfg.cs index ec040ae3f..31d975d1f 100644 --- a/TBF/BenchControl/TestMethods/S640Communication/S640StartCfg.cs +++ b/TBF/BenchControl/TestMethods/S640Communication/S640StartCfg.cs @@ -31,6 +31,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication public string FileExchangePath { get; set; } public int FileExchangeTimeout { get; set; } public bool EnterSerialNumbers { get; set; } + public bool SkipBadMeters { get; set; } public bool SimultWithPurging { get; set; } /// Procedure parameters @@ -60,8 +61,9 @@ namespace TBF.BenchControl.TestMethods.S640Communication { OptoDataTimeout = 180; FileExchangePath = "1"; - FileExchangeTimeout = 60; + FileExchangeTimeout = 420; EnterSerialNumbers = true; + SkipBadMeters = false; SimultWithPurging = true; } @@ -71,6 +73,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication "File exchange path", "File exchange timeout [s] (0 = off)", "Enter serial numbers", + "Skip bad meters when entering s/n", "Simultaneous with purging", }; public string ParamName(int i) { return paramNames[i]; } @@ -82,6 +85,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication { case 3: case 4: + case 5: return new List { Strings.yes, Strings.no }; default: return null; @@ -96,7 +100,8 @@ namespace TBF.BenchControl.TestMethods.S640Communication case 1: return FileExchangePath; case 2: return FileExchangeTimeout.ToString(); case 3: return EnterSerialNumbers ? Strings.yes : Strings.no; - case 4: return SimultWithPurging ? Strings.yes : Strings.no; + case 4: return SkipBadMeters ? Strings.yes : Strings.no; + case 5: return SimultWithPurging ? Strings.yes : Strings.no; default: return string.Format("{0}: FileExchangePath = '{1}' FileExchangeTimeout = {2}s", Name, FileExchangePath, FileExchangeTimeout); } @@ -110,7 +115,8 @@ namespace TBF.BenchControl.TestMethods.S640Communication case 1: FileExchangePath = strValue; return CfgUpdateFlags.RestartRqrd; case 2: FileExchangeTimeout = int.Parse(strValue); return CfgUpdateFlags.RestartRqrd; case 3: EnterSerialNumbers = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; - case 4: SimultWithPurging = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; + case 4: SkipBadMeters = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; + case 5: SimultWithPurging = (strValue == Strings.yes); return CfgUpdateFlags.RestartRqrd; default: return CfgUpdateFlags.None; } @@ -125,12 +131,13 @@ namespace TBF.BenchControl.TestMethods.S640Communication { case 0: case 2: - if (int.TryParse(strValue, out idummy) && idummy >= 0 && idummy <= 300) return true; + if (int.TryParse(strValue, out idummy) && idummy >= 0 && idummy <= 2000) return true; break; case 1: return true; case 3: case 4: + case 5: if (ParamValues(i).Contains(strValue)) return true; break; default: @@ -148,6 +155,7 @@ namespace TBF.BenchControl.TestMethods.S640Communication prms.FileExchangePath = this.FileExchangePath; prms.FileExchangeTimeout = this.FileExchangeTimeout; prms.EnterSerialNumbers = this.EnterSerialNumbers; + prms.SkipBadMeters = this.SkipBadMeters; prms.SimultWithPurging = this.SimultWithPurging; } diff --git a/TBF/Properties/AssemblyInfo.cs b/TBF/Properties/AssemblyInfo.cs index 303958859..902f90ef4 100644 --- a/TBF/Properties/AssemblyInfo.cs +++ b/TBF/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("2.27.1780.0")] -[assembly: AssemblyFileVersion("2.27.1780.0")] +[assembly: AssemblyVersion("2.27.1781.0")] +[assembly: AssemblyFileVersion("2.27.1781.0")] diff --git a/TBF/Resources/Strings.Designer.cs b/TBF/Resources/Strings.Designer.cs index 004a462bc..c5ceaf60e 100644 --- a/TBF/Resources/Strings.Designer.cs +++ b/TBF/Resources/Strings.Designer.cs @@ -2275,7 +2275,7 @@ namespace TBF.Resources { } /// - /// Looks up a localized string similar to Head was disabled by the user. + /// Looks up a localized string similar to Disabled by the user. /// internal static string Head_was_disabled_by_the_user { get { diff --git a/TBF/Resources/Strings.cs.resx b/TBF/Resources/Strings.cs.resx index 7b2c634a3..daa9dac9d 100644 --- a/TBF/Resources/Strings.cs.resx +++ b/TBF/Resources/Strings.cs.resx @@ -1668,4 +1668,10 @@ Databáze + + Hlavice vypnutá uživatelem + + + Hlavice vypnutá v konfiguraci + \ No newline at end of file diff --git a/TBF/Resources/Strings.resx b/TBF/Resources/Strings.resx index 69fcb16ce..f53525c5c 100644 --- a/TBF/Resources/Strings.resx +++ b/TBF/Resources/Strings.resx @@ -1727,7 +1727,7 @@ RFID communication failed - Head was disabled by the user + Disabled by the user '{0}' activity failed ({1}) !!!