main
DESKTOP-S459P9R\LSJ 2025-07-16 20:23:24 +09:00
parent 71564406db
commit 4cb3c65758
37 changed files with 28780 additions and 36069 deletions

Binary file not shown.

View File

@ -86,7 +86,7 @@ namespace INT63DC_6CH.Controls
{
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
this.CollLabelWeight[i].Text = "0.0";
this.CollLabelWeight[i].Text = Helper.DoubleToString(0, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
}
private void InitializeDesign()
@ -200,7 +200,7 @@ namespace INT63DC_6CH.Controls
switch (weightData.Status)
{
case DataStore.WeightStatus.CalNomal:
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
case DataStore.WeightStatus.CalStandby:
@ -246,7 +246,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.FinishColor;
break;
case DataStore.WeightStatus.CalError:
@ -270,7 +270,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
default:

View File

@ -90,7 +90,7 @@ namespace INT63DC_6CH.Controls
{
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
this.CollLabelWeight[i].Text = "0.0";
this.CollLabelWeight[i].Text = Helper.DoubleToString(0, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
}
private void InitializeDesign()
@ -204,7 +204,7 @@ namespace INT63DC_6CH.Controls
switch (weightData.Status)
{
case DataStore.WeightStatus.CalNomal:
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
case DataStore.WeightStatus.CalStandby:
@ -250,7 +250,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.FinishColor;
break;
case DataStore.WeightStatus.CalError:
@ -274,7 +274,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
default:

View File

@ -78,7 +78,7 @@ namespace INT63DC_6CH.Controls
{
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
this.CollLabelWeight[i].Text = "0.000";
this.CollLabelWeight[i].Text = Helper.DoubleToString(0, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
}
private void InitializeDesign()
@ -192,7 +192,7 @@ namespace INT63DC_6CH.Controls
switch (weightData.Status)
{
case DataStore.WeightStatus.CalNomal:
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
case DataStore.WeightStatus.CalStandby:
@ -202,7 +202,7 @@ namespace INT63DC_6CH.Controls
{
#region 내부 분동 모드
// 현재중량 표시
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
// Help
@ -233,7 +233,7 @@ namespace INT63DC_6CH.Controls
{
#region 내부 분동 모드
// 현재중량 표시
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
// Help
@ -246,7 +246,7 @@ namespace INT63DC_6CH.Controls
{
#region 외부 분동 모드
// 분동중량표시
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
// Help
@ -278,7 +278,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.FinishColor;
break;
case DataStore.WeightStatus.CalError:
@ -302,7 +302,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
default:

View File

@ -80,7 +80,7 @@ namespace INT63DC_6CH.Controls
{
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
this.CollLabelWeight[i].Text = "0.0";
this.CollLabelWeight[i].Text = Helper.DoubleToString(0, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
}
private void InitializeDesign()
@ -193,7 +193,7 @@ namespace INT63DC_6CH.Controls
switch (weightData.Status)
{
case DataStore.WeightStatus.CalNomal:
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
case DataStore.WeightStatus.CalStandby:
@ -239,7 +239,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.FinishColor;
break;
case DataStore.WeightStatus.CalError:
@ -263,7 +263,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
default:

View File

@ -82,7 +82,7 @@ namespace INT63DC_6CH.Controls
{
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
this.CollLabelWeight[i].Text = "0.0";
this.CollLabelWeight[i].Text = Helper.DoubleToString(0, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
}
private void InitializeDesign()
@ -196,7 +196,7 @@ namespace INT63DC_6CH.Controls
switch (weightData.Status)
{
case DataStore.WeightStatus.CalNomal:
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
case DataStore.WeightStatus.CalStandby:
@ -242,7 +242,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.FinishColor;
break;
case DataStore.WeightStatus.CalError:
@ -266,7 +266,7 @@ namespace INT63DC_6CH.Controls
}
}
}
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.Text = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
labelWeight.ForeColor = this.NormalColor;
break;
default:

View File

@ -351,7 +351,7 @@
this.labelWeightValue10.BackPictureBox2 = null;
this.labelWeightValue10.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue10.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue10.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue10.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue10.InitVisible = true;
this.labelWeightValue10.LineSpacing = 0F;
this.labelWeightValue10.Location = new System.Drawing.Point(910, 360);
@ -371,7 +371,7 @@
this.labelWeightValue9.BackPictureBox2 = null;
this.labelWeightValue9.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue9.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue9.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue9.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue9.InitVisible = true;
this.labelWeightValue9.LineSpacing = 0F;
this.labelWeightValue9.Location = new System.Drawing.Point(812, 360);
@ -391,7 +391,7 @@
this.labelWeightValue8.BackPictureBox2 = null;
this.labelWeightValue8.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue8.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue8.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue8.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue8.InitVisible = true;
this.labelWeightValue8.LineSpacing = 0F;
this.labelWeightValue8.Location = new System.Drawing.Point(714, 360);
@ -411,7 +411,7 @@
this.labelWeightValue7.BackPictureBox2 = null;
this.labelWeightValue7.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue7.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.InitVisible = true;
this.labelWeightValue7.LineSpacing = 0F;
this.labelWeightValue7.Location = new System.Drawing.Point(616, 360);
@ -431,7 +431,7 @@
this.labelWeightValue6.BackPictureBox2 = null;
this.labelWeightValue6.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue6.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.InitVisible = true;
this.labelWeightValue6.LineSpacing = 0F;
this.labelWeightValue6.Location = new System.Drawing.Point(518, 360);
@ -451,7 +451,7 @@
this.labelWeightValue5.BackPictureBox2 = null;
this.labelWeightValue5.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue5.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.InitVisible = true;
this.labelWeightValue5.LineSpacing = 0F;
this.labelWeightValue5.Location = new System.Drawing.Point(420, 360);
@ -471,7 +471,7 @@
this.labelWeightValue4.BackPictureBox2 = null;
this.labelWeightValue4.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.InitVisible = true;
this.labelWeightValue4.LineSpacing = 0F;
this.labelWeightValue4.Location = new System.Drawing.Point(322, 360);
@ -491,7 +491,7 @@
this.labelWeightValue3.BackPictureBox2 = null;
this.labelWeightValue3.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.InitVisible = true;
this.labelWeightValue3.LineSpacing = 0F;
this.labelWeightValue3.Location = new System.Drawing.Point(224, 360);
@ -511,7 +511,7 @@
this.labelWeightValue2.BackPictureBox2 = null;
this.labelWeightValue2.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.InitVisible = true;
this.labelWeightValue2.LineSpacing = 0F;
this.labelWeightValue2.Location = new System.Drawing.Point(126, 360);
@ -531,7 +531,7 @@
this.labelWeightValue1.BackPictureBox2 = null;
this.labelWeightValue1.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.InitVisible = true;
this.labelWeightValue1.LineSpacing = 0F;
this.labelWeightValue1.Location = new System.Drawing.Point(28, 360);

View File

@ -109,14 +109,7 @@ namespace INT63DC_6CH.Controls
picture.Visible = false;
foreach (SmartLabel label in this.CollectionLabelWeightValue)
{
if (this.ParentForm.ParentForm.SystemConfig.DecimalPlaces == 3)
label.Font = new Font("Arial", 17, FontStyle.Bold);
else
label.Font = new Font("Arial", 20, FontStyle.Bold);
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
foreach (SmartProgressBar bar in this.CollectionProgressBar)
bar.Value = bar.Minimum;
@ -303,7 +296,7 @@ namespace INT63DC_6CH.Controls
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 중량
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[i].WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.CollectionLabelWeightValue[i].Text != value)
this.CollectionLabelWeightValue[i].Text = value;
if (this.CollectionLabelWeightValue[i].ForeColor != Color.Black)
@ -353,7 +346,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue1.Text != value)
this.labelWeightValue1.Text = value;
@ -369,7 +362,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount1.Text != value)
this.labelNGCount1.Text = value;
Helper.SetProgressBarValue(this.progressBar1, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar1, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -390,7 +383,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue2.Text != value)
this.labelWeightValue2.Text = value;
@ -406,7 +399,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount2.Text != value)
this.labelNGCount2.Text = value;
Helper.SetProgressBarValue(this.progressBar2, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar2, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -427,7 +420,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue3.Text != value)
this.labelWeightValue3.Text = value;
@ -443,7 +436,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount3.Text != value)
this.labelNGCount3.Text = value;
Helper.SetProgressBarValue(this.progressBar3, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar3, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -464,7 +457,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue4.Text != value)
this.labelWeightValue4.Text = value;
@ -480,7 +473,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount4.Text != value)
this.labelNGCount4.Text = value;
Helper.SetProgressBarValue(this.progressBar4, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar4, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -501,7 +494,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue5.Text != value)
this.labelWeightValue5.Text = value;
@ -517,7 +510,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount5.Text != value)
this.labelNGCount5.Text = value;
Helper.SetProgressBarValue(this.progressBar5, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar5, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -538,7 +531,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue6.Text != value)
this.labelWeightValue6.Text = value;
@ -554,7 +547,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount6.Text != value)
this.labelNGCount6.Text = value;
Helper.SetProgressBarValue(this.progressBar6, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar6, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -575,7 +568,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue7.Text != value)
this.labelWeightValue7.Text = value;
@ -591,7 +584,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount7.Text != value)
this.labelNGCount7.Text = value;
Helper.SetProgressBarValue(this.progressBar7, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar7, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -612,7 +605,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue8.Text != value)
this.labelWeightValue8.Text = value;
@ -628,7 +621,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount8.Text != value)
this.labelNGCount8.Text = value;
Helper.SetProgressBarValue(this.progressBar8, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar8, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -649,7 +642,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue9.Text != value)
this.labelWeightValue9.Text = value;
@ -665,7 +658,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount9.Text != value)
this.labelNGCount9.Text = value;
Helper.SetProgressBarValue(this.progressBar9, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar9, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -686,7 +679,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue10.Text != value)
this.labelWeightValue10.Text = value;
@ -702,7 +695,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount10.Text != value)
this.labelNGCount10.Text = value;
Helper.SetProgressBarValue(this.progressBar10, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar10, weightData.WeightString, weightData.JudgmentStatus);
}
else
{

File diff suppressed because it is too large Load Diff

View File

@ -413,7 +413,7 @@
this.labelWeightValue12.BackPictureBox2 = null;
this.labelWeightValue12.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue12.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue12.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue12.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue12.InitVisible = true;
this.labelWeightValue12.LineSpacing = 0F;
this.labelWeightValue12.Location = new System.Drawing.Point(921, 360);
@ -433,7 +433,7 @@
this.labelWeightValue11.BackPictureBox2 = null;
this.labelWeightValue11.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue11.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue11.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue11.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue11.InitVisible = true;
this.labelWeightValue11.LineSpacing = 0F;
this.labelWeightValue11.Location = new System.Drawing.Point(840, 360);
@ -453,7 +453,7 @@
this.labelWeightValue10.BackPictureBox2 = null;
this.labelWeightValue10.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue10.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue10.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue10.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue10.InitVisible = true;
this.labelWeightValue10.LineSpacing = 0F;
this.labelWeightValue10.Location = new System.Drawing.Point(759, 360);
@ -473,7 +473,7 @@
this.labelWeightValue9.BackPictureBox2 = null;
this.labelWeightValue9.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue9.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue9.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue9.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue9.InitVisible = true;
this.labelWeightValue9.LineSpacing = 0F;
this.labelWeightValue9.Location = new System.Drawing.Point(678, 360);
@ -493,7 +493,7 @@
this.labelWeightValue8.BackPictureBox2 = null;
this.labelWeightValue8.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue8.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue8.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue8.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue8.InitVisible = true;
this.labelWeightValue8.LineSpacing = 0F;
this.labelWeightValue8.Location = new System.Drawing.Point(597, 360);
@ -513,7 +513,7 @@
this.labelWeightValue7.BackPictureBox2 = null;
this.labelWeightValue7.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue7.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.InitVisible = true;
this.labelWeightValue7.LineSpacing = 0F;
this.labelWeightValue7.Location = new System.Drawing.Point(516, 360);
@ -533,7 +533,7 @@
this.labelWeightValue6.BackPictureBox2 = null;
this.labelWeightValue6.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue6.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.InitVisible = true;
this.labelWeightValue6.LineSpacing = 0F;
this.labelWeightValue6.Location = new System.Drawing.Point(435, 360);
@ -553,7 +553,7 @@
this.labelWeightValue5.BackPictureBox2 = null;
this.labelWeightValue5.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue5.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.InitVisible = true;
this.labelWeightValue5.LineSpacing = 0F;
this.labelWeightValue5.Location = new System.Drawing.Point(354, 360);
@ -573,7 +573,7 @@
this.labelWeightValue4.BackPictureBox2 = null;
this.labelWeightValue4.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.InitVisible = true;
this.labelWeightValue4.LineSpacing = 0F;
this.labelWeightValue4.Location = new System.Drawing.Point(273, 360);
@ -593,7 +593,7 @@
this.labelWeightValue3.BackPictureBox2 = null;
this.labelWeightValue3.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.InitVisible = true;
this.labelWeightValue3.LineSpacing = 0F;
this.labelWeightValue3.Location = new System.Drawing.Point(192, 360);
@ -613,7 +613,7 @@
this.labelWeightValue2.BackPictureBox2 = null;
this.labelWeightValue2.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.InitVisible = true;
this.labelWeightValue2.LineSpacing = 0F;
this.labelWeightValue2.Location = new System.Drawing.Point(111, 360);
@ -633,7 +633,7 @@
this.labelWeightValue1.BackPictureBox2 = null;
this.labelWeightValue1.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 16F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.InitVisible = true;
this.labelWeightValue1.LineSpacing = 0F;
this.labelWeightValue1.Location = new System.Drawing.Point(30, 360);

View File

@ -117,14 +117,7 @@ namespace INT63DC_6CH.Controls
picture.Visible = false;
foreach (SmartLabel label in this.CollectionLabelWeightValue)
{
if (this.ParentForm.ParentForm.SystemConfig.DecimalPlaces == 3)
label.Font = new Font("Arial", 15, FontStyle.Bold);
else
label.Font = new Font("Arial", 18, FontStyle.Bold);
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
foreach (SmartProgressBar bar in this.CollectionProgressBar)
bar.Value = bar.Minimum;
@ -331,7 +324,7 @@ namespace INT63DC_6CH.Controls
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 중량
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[i].WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.CollectionLabelWeightValue[i].Text != value)
this.CollectionLabelWeightValue[i].Text = value;
if (this.CollectionLabelWeightValue[i].ForeColor != Color.Black)
@ -375,6 +368,7 @@ namespace INT63DC_6CH.Controls
{
string value = "";
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -382,7 +376,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue1.Text != value)
this.labelWeightValue1.Text = value;
@ -398,7 +392,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount1.Text != value)
this.labelNGCount1.Text = value;
Helper.SetProgressBarValue(this.progressBar1, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar1, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -418,7 +412,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue2.Text != value)
this.labelWeightValue2.Text = value;
@ -434,7 +428,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount2.Text != value)
this.labelNGCount2.Text = value;
Helper.SetProgressBarValue(this.progressBar2, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar2, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -455,7 +449,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue3.Text != value)
this.labelWeightValue3.Text = value;
@ -471,7 +465,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount3.Text != value)
this.labelNGCount3.Text = value;
Helper.SetProgressBarValue(this.progressBar3, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar3, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -492,7 +486,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue4.Text != value)
this.labelWeightValue4.Text = value;
@ -508,7 +502,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount4.Text != value)
this.labelNGCount4.Text = value;
Helper.SetProgressBarValue(this.progressBar4, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar4, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -529,7 +523,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue5.Text != value)
this.labelWeightValue5.Text = value;
@ -545,7 +539,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount5.Text != value)
this.labelNGCount5.Text = value;
Helper.SetProgressBarValue(this.progressBar5, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar5, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -566,7 +560,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue6.Text != value)
this.labelWeightValue6.Text = value;
@ -582,7 +576,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount6.Text != value)
this.labelNGCount6.Text = value;
Helper.SetProgressBarValue(this.progressBar6, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar6, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -603,7 +597,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue7.Text != value)
this.labelWeightValue7.Text = value;
@ -619,7 +613,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount7.Text != value)
this.labelNGCount7.Text = value;
Helper.SetProgressBarValue(this.progressBar7, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar7, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -640,7 +634,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue8.Text != value)
this.labelWeightValue8.Text = value;
@ -656,7 +650,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount8.Text != value)
this.labelNGCount8.Text = value;
Helper.SetProgressBarValue(this.progressBar8, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar8, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -677,7 +671,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue9.Text != value)
this.labelWeightValue9.Text = value;
@ -693,7 +687,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount9.Text != value)
this.labelNGCount9.Text = value;
Helper.SetProgressBarValue(this.progressBar9, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar9, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -714,7 +708,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue10.Text != value)
this.labelWeightValue10.Text = value;
@ -730,7 +724,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount10.Text != value)
this.labelNGCount10.Text = value;
Helper.SetProgressBarValue(this.progressBar10, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar10, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -751,7 +745,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue11.Text != value)
this.labelWeightValue11.Text = value;
@ -767,7 +761,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount11.Text != value)
this.labelNGCount11.Text = value;
Helper.SetProgressBarValue(this.progressBar11, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar11, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -788,7 +782,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue12.Text != value)
this.labelWeightValue12.Text = value;
@ -804,7 +798,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount12.Text != value)
this.labelNGCount12.Text = value;
Helper.SetProgressBarValue(this.progressBar12, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar12, weightData.WeightString, weightData.JudgmentStatus);
}
else
{

File diff suppressed because it is too large Load Diff

View File

@ -92,14 +92,7 @@ namespace INT63DC_6CH.Controls
picture.Visible = false;
foreach (SmartLabel label in this.CollectionLabelWeightValue)
{
if (this.ParentForm.ParentForm.SystemConfig.DecimalPlaces == 3)
label.Font = new Font("Arial", 17, FontStyle.Bold);
else
label.Font = new Font("Arial", 20, FontStyle.Bold);
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
foreach (SmartProgressBar bar in this.CollectionProgressBar)
bar.Value = bar.Minimum;
@ -246,7 +239,7 @@ namespace INT63DC_6CH.Controls
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 중량
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[i].WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.CollectionLabelWeightValue[i].Text != value)
this.CollectionLabelWeightValue[i].Text = value;
if (this.CollectionLabelWeightValue[i].ForeColor != Color.Black)
@ -292,7 +285,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue1.Text != value)
this.labelWeightValue1.Text = value;
@ -308,7 +301,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount1.Text != value)
this.labelNGCount1.Text = value;
Helper.SetProgressBarValue(this.progressBar1, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar1, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -329,7 +322,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue2.Text != value)
this.labelWeightValue2.Text = value;
@ -345,7 +338,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount2.Text != value)
this.labelNGCount2.Text = value;
Helper.SetProgressBarValue(this.progressBar2, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar2, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -366,7 +359,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue3.Text != value)
this.labelWeightValue3.Text = value;
@ -382,7 +375,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount3.Text != value)
this.labelNGCount3.Text = value;
Helper.SetProgressBarValue(this.progressBar3, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar3, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -403,7 +396,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue4.Text != value)
this.labelWeightValue4.Text = value;
@ -419,7 +412,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount4.Text != value)
this.labelNGCount4.Text = value;
Helper.SetProgressBarValue(this.progressBar4, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar4, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -440,7 +433,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue5.Text != value)
this.labelWeightValue5.Text = value;
@ -456,7 +449,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount5.Text != value)
this.labelNGCount5.Text = value;
Helper.SetProgressBarValue(this.progressBar5, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar5, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -477,7 +470,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue6.Text != value)
this.labelWeightValue6.Text = value;
@ -493,7 +486,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount6.Text != value)
this.labelNGCount6.Text = value;
Helper.SetProgressBarValue(this.progressBar6, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar6, weightData.WeightString, weightData.JudgmentStatus);
}
else
{

View File

@ -258,7 +258,7 @@
this.labelWeightValue7.BackPictureBox2 = null;
this.labelWeightValue7.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue7.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.InitVisible = true;
this.labelWeightValue7.LineSpacing = 0F;
this.labelWeightValue7.Location = new System.Drawing.Point(759, 360);
@ -278,7 +278,7 @@
this.labelWeightValue6.BackPictureBox2 = null;
this.labelWeightValue6.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue6.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.InitVisible = true;
this.labelWeightValue6.LineSpacing = 0F;
this.labelWeightValue6.Location = new System.Drawing.Point(661, 360);
@ -298,7 +298,7 @@
this.labelWeightValue5.BackPictureBox2 = null;
this.labelWeightValue5.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue5.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.InitVisible = true;
this.labelWeightValue5.LineSpacing = 0F;
this.labelWeightValue5.Location = new System.Drawing.Point(563, 360);
@ -318,7 +318,7 @@
this.labelWeightValue4.BackPictureBox2 = null;
this.labelWeightValue4.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.InitVisible = true;
this.labelWeightValue4.LineSpacing = 0F;
this.labelWeightValue4.Location = new System.Drawing.Point(465, 360);
@ -338,7 +338,7 @@
this.labelWeightValue3.BackPictureBox2 = null;
this.labelWeightValue3.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.InitVisible = true;
this.labelWeightValue3.LineSpacing = 0F;
this.labelWeightValue3.Location = new System.Drawing.Point(367, 360);
@ -358,7 +358,7 @@
this.labelWeightValue2.BackPictureBox2 = null;
this.labelWeightValue2.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.InitVisible = true;
this.labelWeightValue2.LineSpacing = 0F;
this.labelWeightValue2.Location = new System.Drawing.Point(269, 360);
@ -378,7 +378,7 @@
this.labelWeightValue1.BackPictureBox2 = null;
this.labelWeightValue1.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.InitVisible = true;
this.labelWeightValue1.LineSpacing = 0F;
this.labelWeightValue1.Location = new System.Drawing.Point(171, 360);

View File

@ -96,14 +96,7 @@ namespace INT63DC_6CH.Controls
picture.Visible = false;
foreach (SmartLabel label in this.CollectionLabelWeightValue)
{
if (this.ParentForm.ParentForm.SystemConfig.DecimalPlaces == 3)
label.Font = new Font("Arial", 17, FontStyle.Bold);
else
label.Font = new Font("Arial", 20, FontStyle.Bold);
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
foreach (SmartProgressBar bar in this.CollectionProgressBar)
bar.Value = bar.Minimum;
@ -260,7 +253,7 @@ namespace INT63DC_6CH.Controls
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 중량
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[i].WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.CollectionLabelWeightValue[i].Text != value)
this.CollectionLabelWeightValue[i].Text = value;
if (this.CollectionLabelWeightValue[i].ForeColor != Color.Black)
@ -307,7 +300,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue1.Text != value)
this.labelWeightValue1.Text = value;
@ -323,7 +316,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount1.Text != value)
this.labelNGCount1.Text = value;
Helper.SetProgressBarValue(this.progressBar1, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar1, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -344,7 +337,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue2.Text != value)
this.labelWeightValue2.Text = value;
@ -360,7 +353,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount2.Text != value)
this.labelNGCount2.Text = value;
Helper.SetProgressBarValue(this.progressBar2, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar2, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -381,7 +374,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue3.Text != value)
this.labelWeightValue3.Text = value;
@ -397,7 +390,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount3.Text != value)
this.labelNGCount3.Text = value;
Helper.SetProgressBarValue(this.progressBar3, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar3, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -418,7 +411,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue4.Text != value)
this.labelWeightValue4.Text = value;
@ -434,7 +427,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount4.Text != value)
this.labelNGCount4.Text = value;
Helper.SetProgressBarValue(this.progressBar4, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar4, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -455,7 +448,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue5.Text != value)
this.labelWeightValue5.Text = value;
@ -471,7 +464,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount5.Text != value)
this.labelNGCount5.Text = value;
Helper.SetProgressBarValue(this.progressBar5, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar5, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -492,7 +485,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue6.Text != value)
this.labelWeightValue6.Text = value;
@ -508,7 +501,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount6.Text != value)
this.labelNGCount6.Text = value;
Helper.SetProgressBarValue(this.progressBar6, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar6, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -529,7 +522,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue7.Text != value)
this.labelWeightValue7.Text = value;
@ -545,7 +538,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount7.Text != value)
this.labelNGCount7.Text = value;
Helper.SetProgressBarValue(this.progressBar7, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar7, weightData.WeightString, weightData.JudgmentStatus);
}
else
{

File diff suppressed because it is too large Load Diff

View File

@ -289,7 +289,7 @@
this.labelWeightValue8.BackPictureBox2 = null;
this.labelWeightValue8.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue8.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue8.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue8.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue8.InitVisible = true;
this.labelWeightValue8.LineSpacing = 0F;
this.labelWeightValue8.Location = new System.Drawing.Point(812, 360);
@ -309,7 +309,7 @@
this.labelWeightValue7.BackPictureBox2 = null;
this.labelWeightValue7.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue7.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue7.InitVisible = true;
this.labelWeightValue7.LineSpacing = 0F;
this.labelWeightValue7.Location = new System.Drawing.Point(714, 360);
@ -329,7 +329,7 @@
this.labelWeightValue6.BackPictureBox2 = null;
this.labelWeightValue6.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue6.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue6.InitVisible = true;
this.labelWeightValue6.LineSpacing = 0F;
this.labelWeightValue6.Location = new System.Drawing.Point(616, 360);
@ -349,7 +349,7 @@
this.labelWeightValue5.BackPictureBox2 = null;
this.labelWeightValue5.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue5.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue5.InitVisible = true;
this.labelWeightValue5.LineSpacing = 0F;
this.labelWeightValue5.Location = new System.Drawing.Point(518, 360);
@ -369,7 +369,7 @@
this.labelWeightValue4.BackPictureBox2 = null;
this.labelWeightValue4.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue4.InitVisible = true;
this.labelWeightValue4.LineSpacing = 0F;
this.labelWeightValue4.Location = new System.Drawing.Point(420, 360);
@ -389,7 +389,7 @@
this.labelWeightValue3.BackPictureBox2 = null;
this.labelWeightValue3.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue3.InitVisible = true;
this.labelWeightValue3.LineSpacing = 0F;
this.labelWeightValue3.Location = new System.Drawing.Point(322, 360);
@ -409,7 +409,7 @@
this.labelWeightValue2.BackPictureBox2 = null;
this.labelWeightValue2.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue2.InitVisible = true;
this.labelWeightValue2.LineSpacing = 0F;
this.labelWeightValue2.Location = new System.Drawing.Point(224, 360);
@ -429,7 +429,7 @@
this.labelWeightValue1.BackPictureBox2 = null;
this.labelWeightValue1.BorderColor = System.Drawing.Color.Black;
this.labelWeightValue1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.Font = new System.Drawing.Font("Arial", 18F, System.Drawing.FontStyle.Bold);
this.labelWeightValue1.InitVisible = true;
this.labelWeightValue1.LineSpacing = 0F;
this.labelWeightValue1.Location = new System.Drawing.Point(126, 360);

View File

@ -100,14 +100,7 @@ namespace INT63DC_6CH.Controls
picture.Visible = false;
foreach (SmartLabel label in this.CollectionLabelWeightValue)
{
if (this.ParentForm.ParentForm.SystemConfig.DecimalPlaces == 3)
label.Font = new Font("Arial", 17, FontStyle.Bold);
else
label.Font = new Font("Arial", 20, FontStyle.Bold);
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
}
foreach (SmartProgressBar bar in this.CollectionProgressBar)
bar.Value = bar.Minimum;
@ -274,7 +267,7 @@ namespace INT63DC_6CH.Controls
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 중량
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[i].WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.CollectionLabelWeightValue[i].Text != value)
this.CollectionLabelWeightValue[i].Text = value;
if (this.CollectionLabelWeightValue[i].ForeColor != Color.Black)
@ -322,7 +315,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue1.Text != value)
this.labelWeightValue1.Text = value;
@ -338,7 +331,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount1.Text != value)
this.labelNGCount1.Text = value;
Helper.SetProgressBarValue(this.progressBar1, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar1, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -359,7 +352,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue2.Text != value)
this.labelWeightValue2.Text = value;
@ -375,7 +368,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount2.Text != value)
this.labelNGCount2.Text = value;
Helper.SetProgressBarValue(this.progressBar2, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar2, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -396,7 +389,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue3.Text != value)
this.labelWeightValue3.Text = value;
@ -412,7 +405,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount3.Text != value)
this.labelNGCount3.Text = value;
Helper.SetProgressBarValue(this.progressBar3, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar3, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -433,7 +426,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue4.Text != value)
this.labelWeightValue4.Text = value;
@ -449,7 +442,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount4.Text != value)
this.labelNGCount4.Text = value;
Helper.SetProgressBarValue(this.progressBar4, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar4, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -470,7 +463,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue5.Text != value)
this.labelWeightValue5.Text = value;
@ -486,7 +479,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount5.Text != value)
this.labelNGCount5.Text = value;
Helper.SetProgressBarValue(this.progressBar5, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar5, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -507,7 +500,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue6.Text != value)
this.labelWeightValue6.Text = value;
@ -523,7 +516,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount6.Text != value)
this.labelNGCount6.Text = value;
Helper.SetProgressBarValue(this.progressBar6, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar6, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -544,7 +537,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue7.Text != value)
this.labelWeightValue7.Text = value;
@ -560,7 +553,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount7.Text != value)
this.labelNGCount7.Text = value;
Helper.SetProgressBarValue(this.progressBar7, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar7, weightData.WeightString, weightData.JudgmentStatus);
}
else
{
@ -581,7 +574,7 @@ namespace INT63DC_6CH.Controls
empty = true;
// Weight
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue8.Text != value)
this.labelWeightValue8.Text = value;
@ -597,7 +590,7 @@ namespace INT63DC_6CH.Controls
if (this.labelNGCount8.Text != value)
this.labelNGCount8.Text = value;
Helper.SetProgressBarValue(this.progressBar8, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
Helper.SetProgressBarValue(this.progressBar8, weightData.WeightString, weightData.JudgmentStatus);
}
else
{

File diff suppressed because it is too large Load Diff

View File

@ -557,6 +557,7 @@ namespace INT63DC_6CH.Controls
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -564,13 +565,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[0].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[0].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane1();
}
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -578,13 +581,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[1].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[1].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane2();
}
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -592,13 +597,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[2].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[2].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane3();
}
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -606,13 +613,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[3].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[3].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane4();
}
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -620,13 +629,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[4].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[4].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane5();
}
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -634,13 +645,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[5].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[5].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane6();
}
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -648,13 +661,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[6].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[6].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane7();
}
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -662,13 +677,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[7].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[7].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane8();
}
public void UpdateStartWeightDisplay9(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -676,13 +693,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[8].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[8].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane9();
}
public void UpdateStartWeightDisplay10(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -690,7 +709,8 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[9].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[9].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane10();
}

View File

@ -640,6 +640,7 @@ namespace INT63DC_6CH.Controls
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -647,13 +648,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[0].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[0].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane1();
}
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -661,13 +664,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[1].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[1].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane2();
}
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -675,13 +680,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[2].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[2].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane3();
}
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -689,13 +696,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[3].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[3].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane4();
}
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -703,13 +712,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[4].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[4].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane5();
}
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -717,13 +728,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[5].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[5].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane6();
}
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -731,13 +744,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[6].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[6].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane7();
}
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -745,13 +760,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[7].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[7].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane8();
}
public void UpdateStartWeightDisplay9(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -759,13 +776,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[8].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[8].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane9();
}
public void UpdateStartWeightDisplay10(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -773,13 +792,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[9].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[9].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane10();
}
public void UpdateStartWeightDisplay11(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -787,13 +808,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[10].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[10].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane11();
}
public void UpdateStartWeightDisplay12(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -801,7 +824,8 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[11].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[11].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane12();
}

View File

@ -393,6 +393,7 @@ namespace INT63DC_6CH.Controls
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -400,13 +401,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[0].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[0].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane1();
}
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -414,13 +417,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[1].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[1].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane2();
}
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -428,13 +433,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[2].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[2].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane3();
}
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -442,13 +449,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[3].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[3].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane4();
}
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -456,13 +465,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[4].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[4].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane5();
}
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -470,7 +481,8 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[5].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[5].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane6();
}

View File

@ -434,6 +434,7 @@ namespace INT63DC_6CH.Controls
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -441,13 +442,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[0].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[0].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane1();
}
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -455,13 +458,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[1].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[1].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane2();
}
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -469,13 +474,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[2].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[2].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane3();
}
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -483,13 +490,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[3].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[3].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane4();
}
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -497,13 +506,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[4].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[4].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane5();
}
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -511,13 +522,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[5].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[5].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane6();
}
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -525,7 +538,8 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[6].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[6].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane7();
}

View File

@ -475,6 +475,7 @@ namespace INT63DC_6CH.Controls
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -482,13 +483,15 @@ namespace INT63DC_6CH.Controls
if(weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[0].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[0].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane1();
}
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -496,13 +499,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[1].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[1].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane2();
}
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -510,13 +515,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[2].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[2].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane3();
}
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -524,13 +531,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[3].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[3].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane4();
}
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -538,13 +547,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[4].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[4].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane5();
}
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -552,13 +563,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[5].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[5].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane6();
}
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -566,13 +579,15 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[6].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[6].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane7();
}
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
{
bool empty = false;
double dValue = 0.0;
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.None)
return;
@ -580,7 +595,8 @@ namespace INT63DC_6CH.Controls
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.CollectionWeightStorageItem[7].SetValue(weightData.Weight, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
dValue = Helper.StringToWeight(weightData.WeightString, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
this.CollectionWeightStorageItem[7].SetValue(dValue, weightData.IsSamplingData, empty, weightData.JudgmentStatus);
this.UpdateLabelDisplayLane8();
}

View File

@ -195,7 +195,6 @@ namespace INT63DC_6CH
ChangeLOT,
BP_Individual,
BP_All,
BP_Direction,
BP_Mode,
@ -1236,7 +1235,7 @@ namespace INT63DC_6CH
this.IsCutView = false;
this.IsWeightLimitEnable = true;
this.DecimalPlaces = 3;
this.DecimalPlaces = 2;
this.CurrentForm = DataStore.FormStore.FormMainDisplay;
this.CurrentUser = new UserItem();
@ -1579,13 +1578,13 @@ namespace INT63DC_6CH
/// <summary>
/// 소수점 포함된 중량값
/// </summary>
public double Weight
private double Weight
{
get
{
double ret = 0.0;
ret = Helper.StringToWeight(this.WeightString, 3);
ret = Helper.StringToWeight(this.WeightString, 2);
if (this.Sign == "-")
ret *= -1;
@ -2305,24 +2304,6 @@ namespace INT63DC_6CH
this.TotalSum = this.TotalSum + value;
}
}
public void SetValue(WeightData data)
{
bool empty = false;
if (data.JudgmentStatus == DataStore.JudgmentStatus.Empty)
empty = true;
this.Q_Weights.Enqueue(new StorageItem(data.Weight, data.IsSamplingData, empty, data.JudgmentStatus));
if (this.Q_Weights.Count > 10)
this.Q_Weights.Dequeue();
if (empty == false)
{
this.TotalCount++;
this.TotalSum = this.TotalSum + data.Weight;
}
}
public void AllClear()
{

View File

@ -40,12 +40,9 @@
this.labelStaticBuzzerOnTime = new SmartX.SmartLabel();
this.labelStaticRelayOnTime = new SmartX.SmartLabel();
this.labelStaticChattering = new SmartX.SmartLabel();
this.buttonBypassMode = new SmartX.SmartButton();
this.labelStaticBypass = new SmartX.SmartLabel();
this.labelTitle = new SmartX.SmartLabel();
this.groupBoxBypass = new SmartX.SmartGroupBox();
this.smartSeparatorLine1 = new SmartX.SmartSeparatorLine();
this.buttonSaveBypass = new System.Windows.Forms.Button();
this.buttonSetBypass = new SmartX.SmartButton();
this.buttonBypassLane12 = new SmartX.SmartButton();
this.buttonBypassLane10 = new SmartX.SmartButton();
this.buttonBypassLane8 = new SmartX.SmartButton();
@ -133,7 +130,7 @@
this.groupBoxOption.Controls.Add(this.labelStaticBuzzerOnTime);
this.groupBoxOption.Controls.Add(this.labelStaticRelayOnTime);
this.groupBoxOption.Controls.Add(this.labelStaticChattering);
this.groupBoxOption.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.groupBoxOption.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.groupBoxOption.FrameLineColor1 = System.Drawing.Color.Black;
this.groupBoxOption.FrameLineColor2 = System.Drawing.Color.Black;
this.groupBoxOption.FrameLineThickness = 1;
@ -176,7 +173,7 @@
this.labelStaticEmptyWeight.BackPictureBox2 = null;
this.labelStaticEmptyWeight.BorderColor = System.Drawing.Color.Black;
this.labelStaticEmptyWeight.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticEmptyWeight.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticEmptyWeight.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticEmptyWeight.ForeColor = System.Drawing.Color.Black;
this.labelStaticEmptyWeight.InitVisible = true;
this.labelStaticEmptyWeight.LineSpacing = 0F;
@ -259,7 +256,7 @@
this.labelStaticBuzzerOnTime.BackPictureBox2 = null;
this.labelStaticBuzzerOnTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticBuzzerOnTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticBuzzerOnTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticBuzzerOnTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticBuzzerOnTime.InitVisible = true;
this.labelStaticBuzzerOnTime.LineSpacing = 0F;
this.labelStaticBuzzerOnTime.Location = new System.Drawing.Point(68, 102);
@ -278,7 +275,7 @@
this.labelStaticRelayOnTime.BackPictureBox2 = null;
this.labelStaticRelayOnTime.BorderColor = System.Drawing.Color.Black;
this.labelStaticRelayOnTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticRelayOnTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticRelayOnTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticRelayOnTime.InitVisible = true;
this.labelStaticRelayOnTime.LineSpacing = 0F;
this.labelStaticRelayOnTime.Location = new System.Drawing.Point(68, 138);
@ -297,7 +294,7 @@
this.labelStaticChattering.BackPictureBox2 = null;
this.labelStaticChattering.BorderColor = System.Drawing.Color.Black;
this.labelStaticChattering.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticChattering.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticChattering.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticChattering.InitVisible = true;
this.labelStaticChattering.LineSpacing = 0F;
this.labelStaticChattering.Location = new System.Drawing.Point(68, 66);
@ -309,56 +306,6 @@
this.labelStaticChattering.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelStaticChattering.Wordwrap = false;
//
// buttonBypassMode
//
this.buttonBypassMode.BackPictureBox = null;
this.buttonBypassMode.BackPictureBox1 = null;
this.buttonBypassMode.BackPictureBox2 = null;
this.buttonBypassMode.ButtonColor = System.Drawing.Color.Gray;
this.buttonBypassMode.ButtonImageAutoSize = true;
this.buttonBypassMode.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonBypassMode.DisableImage = null;
this.buttonBypassMode.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassMode.DownImage")));
this.buttonBypassMode.GroupID = 0;
this.buttonBypassMode.InitVisible = true;
this.buttonBypassMode.Location = new System.Drawing.Point(297, 318);
this.buttonBypassMode.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
this.buttonBypassMode.Name = "buttonBypassMode";
this.buttonBypassMode.NestedClickEventPrevent = false;
this.buttonBypassMode.OutlinePixel = 1;
this.buttonBypassMode.RepeatInterval = 200;
this.buttonBypassMode.RepeatIntervalAccelerate = null;
this.buttonBypassMode.SafeInterval = 200;
this.buttonBypassMode.Size = new System.Drawing.Size(100, 30);
this.buttonBypassMode.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
this.buttonBypassMode.TabIndex = 2;
this.buttonBypassMode.TextColor = System.Drawing.Color.Black;
this.buttonBypassMode.TextDownColor = System.Drawing.Color.White;
this.buttonBypassMode.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
this.buttonBypassMode.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassMode.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassMode.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassMode.UpImage")));
this.buttonBypassMode.Click += new System.EventHandler(this.buttonBypassMode_Click);
//
// labelStaticBypass
//
this.labelStaticBypass.BackPictureBox = this.smartForm1;
this.labelStaticBypass.BackPictureBox1 = null;
this.labelStaticBypass.BackPictureBox2 = null;
this.labelStaticBypass.BorderColor = System.Drawing.Color.Black;
this.labelStaticBypass.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelStaticBypass.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelStaticBypass.InitVisible = true;
this.labelStaticBypass.LineSpacing = 0F;
this.labelStaticBypass.Location = new System.Drawing.Point(111, 318);
this.labelStaticBypass.Name = "labelStaticBypass";
this.labelStaticBypass.Size = new System.Drawing.Size(180, 30);
this.labelStaticBypass.TabIndex = 0;
this.labelStaticBypass.Text = "BypassAll";
this.labelStaticBypass.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
this.labelStaticBypass.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
this.labelStaticBypass.Wordwrap = false;
//
// labelTitle
//
this.labelTitle.BackPictureBox = this.smartForm1;
@ -366,7 +313,7 @@
this.labelTitle.BackPictureBox2 = null;
this.labelTitle.BorderColor = System.Drawing.Color.Black;
this.labelTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitle.Font = new System.Drawing.Font("새굴림", 35F, System.Drawing.FontStyle.Bold);
this.labelTitle.Font = new System.Drawing.Font("New Gulim", 35F, System.Drawing.FontStyle.Bold);
this.labelTitle.InitVisible = true;
this.labelTitle.LineSpacing = 0F;
this.labelTitle.Location = new System.Drawing.Point(199, 7);
@ -382,8 +329,7 @@
//
this.groupBoxBypass.BackPictureBox = this.smartForm1;
this.groupBoxBypass.BackPictureBox1 = null;
this.groupBoxBypass.Controls.Add(this.smartSeparatorLine1);
this.groupBoxBypass.Controls.Add(this.buttonSaveBypass);
this.groupBoxBypass.Controls.Add(this.buttonSetBypass);
this.groupBoxBypass.Controls.Add(this.buttonBypassLane12);
this.groupBoxBypass.Controls.Add(this.buttonBypassLane10);
this.groupBoxBypass.Controls.Add(this.buttonBypassLane8);
@ -396,7 +342,6 @@
this.groupBoxBypass.Controls.Add(this.buttonBypassLane5);
this.groupBoxBypass.Controls.Add(this.buttonBypassLane3);
this.groupBoxBypass.Controls.Add(this.buttonBypassLane1);
this.groupBoxBypass.Controls.Add(this.buttonBypassMode);
this.groupBoxBypass.Controls.Add(this.labelTitleLine12);
this.groupBoxBypass.Controls.Add(this.labelTitleLine11);
this.groupBoxBypass.Controls.Add(this.labelTitleLine10);
@ -409,8 +354,7 @@
this.groupBoxBypass.Controls.Add(this.labelTitleLine3);
this.groupBoxBypass.Controls.Add(this.labelTitleLine2);
this.groupBoxBypass.Controls.Add(this.labelTitleLine1);
this.groupBoxBypass.Controls.Add(this.labelStaticBypass);
this.groupBoxBypass.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.groupBoxBypass.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.groupBoxBypass.FrameLineColor1 = System.Drawing.Color.Black;
this.groupBoxBypass.FrameLineColor2 = System.Drawing.Color.Black;
this.groupBoxBypass.FrameLineThickness = 1;
@ -425,31 +369,37 @@
this.groupBoxBypass.Text = "Bypass";
this.groupBoxBypass.TextColor = System.Drawing.Color.Black;
//
// smartSeparatorLine1
// buttonSetBypass
//
this.smartSeparatorLine1.InitVisible = true;
this.smartSeparatorLine1.Line1Color = System.Drawing.Color.DimGray;
this.smartSeparatorLine1.Line1Width = 1F;
this.smartSeparatorLine1.Line2Color = System.Drawing.Color.LightGray;
this.smartSeparatorLine1.Line2Visible = true;
this.smartSeparatorLine1.Line2Width = 1F;
this.smartSeparatorLine1.LineDirection = SmartX.SmartSeparatorLine.DIR.Horizontal;
this.smartSeparatorLine1.Location = new System.Drawing.Point(54, 302);
this.smartSeparatorLine1.Name = "smartSeparatorLine1";
this.smartSeparatorLine1.Size = new System.Drawing.Size(437, 2);
this.smartSeparatorLine1.TabIndex = 11;
this.smartSeparatorLine1.Text = "smartSeparatorLine1";
//
// buttonSaveBypass
//
this.buttonSaveBypass.Enabled = false;
this.buttonSaveBypass.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
this.buttonSaveBypass.Location = new System.Drawing.Point(241, 259);
this.buttonSaveBypass.Name = "buttonSaveBypass";
this.buttonSaveBypass.Size = new System.Drawing.Size(100, 30);
this.buttonSaveBypass.TabIndex = 2;
this.buttonSaveBypass.Text = "SAVE";
this.buttonSaveBypass.Click += new System.EventHandler(this.buttonSaveBypass_Click);
this.buttonSetBypass.BackPictureBox = null;
this.buttonSetBypass.BackPictureBox1 = null;
this.buttonSetBypass.BackPictureBox2 = null;
this.buttonSetBypass.ButtonColor = System.Drawing.Color.LightGray;
this.buttonSetBypass.ButtonImageAutoSize = true;
this.buttonSetBypass.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
this.buttonSetBypass.DisableImage = null;
this.buttonSetBypass.DownImage = null;
this.buttonSetBypass.GroupID = 0;
this.buttonSetBypass.InitVisible = true;
this.buttonSetBypass.Location = new System.Drawing.Point(204, 293);
this.buttonSetBypass.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
this.buttonSetBypass.Name = "buttonSetBypass";
this.buttonSetBypass.NestedClickEventPrevent = false;
this.buttonSetBypass.OutlinePixel = 1;
this.buttonSetBypass.RepeatInterval = 200;
this.buttonSetBypass.RepeatIntervalAccelerate = null;
this.buttonSetBypass.SafeInterval = 200;
this.buttonSetBypass.Size = new System.Drawing.Size(120, 40);
this.buttonSetBypass.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
this.buttonSetBypass.TabIndex = 3;
this.buttonSetBypass.Text = "SET";
this.buttonSetBypass.TextColor = System.Drawing.Color.Black;
this.buttonSetBypass.TextDownColor = System.Drawing.Color.White;
this.buttonSetBypass.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
this.buttonSetBypass.TextLocation = new System.Drawing.Point(0, 0);
this.buttonSetBypass.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonSetBypass.UpImage = null;
this.buttonSetBypass.Click += new System.EventHandler(this.buttonSetBypass_Click);
//
// buttonBypassLane12
//
@ -480,7 +430,6 @@
this.buttonBypassLane12.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane12.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane12.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane12.UpImage")));
this.buttonBypassLane12.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane10
//
@ -511,7 +460,6 @@
this.buttonBypassLane10.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane10.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane10.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane10.UpImage")));
this.buttonBypassLane10.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane8
//
@ -542,7 +490,6 @@
this.buttonBypassLane8.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane8.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane8.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane8.UpImage")));
this.buttonBypassLane8.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane6
//
@ -573,7 +520,6 @@
this.buttonBypassLane6.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane6.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane6.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane6.UpImage")));
this.buttonBypassLane6.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane4
//
@ -604,7 +550,6 @@
this.buttonBypassLane4.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane4.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane4.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane4.UpImage")));
this.buttonBypassLane4.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane2
//
@ -635,7 +580,6 @@
this.buttonBypassLane2.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane2.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane2.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane2.UpImage")));
this.buttonBypassLane2.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane11
//
@ -666,7 +610,6 @@
this.buttonBypassLane11.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane11.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane11.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane11.UpImage")));
this.buttonBypassLane11.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane9
//
@ -697,7 +640,6 @@
this.buttonBypassLane9.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane9.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane9.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane9.UpImage")));
this.buttonBypassLane9.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane7
//
@ -728,7 +670,6 @@
this.buttonBypassLane7.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane7.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane7.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane7.UpImage")));
this.buttonBypassLane7.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane5
//
@ -759,7 +700,6 @@
this.buttonBypassLane5.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane5.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane5.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane5.UpImage")));
this.buttonBypassLane5.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane3
//
@ -790,7 +730,6 @@
this.buttonBypassLane3.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane3.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane3.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane3.UpImage")));
this.buttonBypassLane3.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// buttonBypassLane1
//
@ -821,7 +760,6 @@
this.buttonBypassLane1.TextLocation = new System.Drawing.Point(0, 0);
this.buttonBypassLane1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
this.buttonBypassLane1.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBypassLane1.UpImage")));
this.buttonBypassLane1.Click += new System.EventHandler(this.buttonBypassLane_Click);
//
// labelTitleLine12
//
@ -830,7 +768,7 @@
this.labelTitleLine12.BackPictureBox2 = null;
this.labelTitleLine12.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine12.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine12.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine12.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine12.InitVisible = true;
this.labelTitleLine12.LineSpacing = 0F;
this.labelTitleLine12.Location = new System.Drawing.Point(265, 218);
@ -849,7 +787,7 @@
this.labelTitleLine11.BackPictureBox2 = null;
this.labelTitleLine11.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine11.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine11.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine11.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine11.InitVisible = true;
this.labelTitleLine11.LineSpacing = 0F;
this.labelTitleLine11.Location = new System.Drawing.Point(24, 218);
@ -868,7 +806,7 @@
this.labelTitleLine10.BackPictureBox2 = null;
this.labelTitleLine10.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine10.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine10.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine10.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine10.InitVisible = true;
this.labelTitleLine10.LineSpacing = 0F;
this.labelTitleLine10.Location = new System.Drawing.Point(265, 182);
@ -887,7 +825,7 @@
this.labelTitleLine9.BackPictureBox2 = null;
this.labelTitleLine9.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine9.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine9.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine9.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine9.InitVisible = true;
this.labelTitleLine9.LineSpacing = 0F;
this.labelTitleLine9.Location = new System.Drawing.Point(24, 182);
@ -906,7 +844,7 @@
this.labelTitleLine8.BackPictureBox2 = null;
this.labelTitleLine8.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine8.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine8.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine8.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine8.InitVisible = true;
this.labelTitleLine8.LineSpacing = 0F;
this.labelTitleLine8.Location = new System.Drawing.Point(265, 146);
@ -925,7 +863,7 @@
this.labelTitleLine7.BackPictureBox2 = null;
this.labelTitleLine7.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine7.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine7.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine7.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine7.InitVisible = true;
this.labelTitleLine7.LineSpacing = 0F;
this.labelTitleLine7.Location = new System.Drawing.Point(24, 146);
@ -944,7 +882,7 @@
this.labelTitleLine6.BackPictureBox2 = null;
this.labelTitleLine6.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine6.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine6.InitVisible = true;
this.labelTitleLine6.LineSpacing = 0F;
this.labelTitleLine6.Location = new System.Drawing.Point(265, 110);
@ -963,7 +901,7 @@
this.labelTitleLine5.BackPictureBox2 = null;
this.labelTitleLine5.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine5.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine5.InitVisible = true;
this.labelTitleLine5.LineSpacing = 0F;
this.labelTitleLine5.Location = new System.Drawing.Point(24, 110);
@ -982,7 +920,7 @@
this.labelTitleLine4.BackPictureBox2 = null;
this.labelTitleLine4.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine4.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine4.InitVisible = true;
this.labelTitleLine4.LineSpacing = 0F;
this.labelTitleLine4.Location = new System.Drawing.Point(265, 74);
@ -1001,7 +939,7 @@
this.labelTitleLine3.BackPictureBox2 = null;
this.labelTitleLine3.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine3.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine3.InitVisible = true;
this.labelTitleLine3.LineSpacing = 0F;
this.labelTitleLine3.Location = new System.Drawing.Point(24, 74);
@ -1020,7 +958,7 @@
this.labelTitleLine2.BackPictureBox2 = null;
this.labelTitleLine2.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine2.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine2.InitVisible = true;
this.labelTitleLine2.LineSpacing = 0F;
this.labelTitleLine2.Location = new System.Drawing.Point(265, 38);
@ -1039,7 +977,7 @@
this.labelTitleLine1.BackPictureBox2 = null;
this.labelTitleLine1.BorderColor = System.Drawing.Color.Black;
this.labelTitleLine1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.labelTitleLine1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
this.labelTitleLine1.InitVisible = true;
this.labelTitleLine1.LineSpacing = 0F;
this.labelTitleLine1.Location = new System.Drawing.Point(24, 38);
@ -1080,9 +1018,7 @@
private SmartX.SmartLabel labelChattering;
private SmartX.SmartLabel labelStaticBuzzerOnTime;
private SmartX.SmartLabel labelStaticChattering;
private SmartX.SmartButton buttonBypassMode;
private SmartX.SmartLabel labelRelayOnTime;
private SmartX.SmartLabel labelStaticBypass;
private SmartX.SmartLabel labelStaticRelayOnTime;
private SmartX.SmartLabel labelTitle;
private SmartX.SmartGroupBox groupBoxBypass;
@ -1098,7 +1034,6 @@
private SmartX.SmartLabel labelTitleLine6;
private SmartX.SmartLabel labelTitleLine4;
private SmartX.SmartLabel labelTitleLine2;
private System.Windows.Forms.Button buttonSaveBypass;
private SmartX.SmartButton buttonBypassLane12;
private SmartX.SmartButton buttonBypassLane10;
private SmartX.SmartButton buttonBypassLane8;
@ -1113,6 +1048,6 @@
private SmartX.SmartButton buttonBypassLane1;
public SmartX.SmartLabel labelEmptyWeight;
private SmartX.SmartLabel labelStaticEmptyWeight;
private SmartX.SmartSeparatorLine smartSeparatorLine1;
private SmartX.SmartButton buttonSetBypass;
}
}

View File

@ -62,7 +62,6 @@ namespace INT63DC_6CH.Forms
this.labelStaticChattering.Text = "Chattering";
this.labelStaticBuzzerOnTime.Text = "Buzzer ON time";
this.labelStaticRelayOnTime.Text = "Relay ON time";
this.labelStaticBypass.Text = "Bypass";
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
@ -78,7 +77,6 @@ namespace INT63DC_6CH.Forms
this.labelStaticChattering.Text = "颤振";
this.labelStaticBuzzerOnTime.Text = "蜂鸣器开启时间";
this.labelStaticRelayOnTime.Text = "继电器接通时间";
this.labelStaticBypass.Text = "旁路";
this.groupBoxBypass.Text = "旁路";
this.labelTitleLine1.Text = "列1";
@ -98,13 +96,11 @@ namespace INT63DC_6CH.Forms
this.buttonBypassLane4.DownImage = this.buttonBypassLane5.DownImage = this.buttonBypassLane6.DownImage =
this.buttonBypassLane7.DownImage = this.buttonBypassLane8.DownImage = this.buttonBypassLane9.DownImage =
this.buttonBypassLane10.DownImage = this.buttonBypassLane11.DownImage = this.buttonBypassLane12.DownImage =
this.buttonBypassMode.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnEnable));
this.buttonBypassLane1.UpImage = this.buttonBypassLane2.UpImage = this.buttonBypassLane3.UpImage =
this.buttonBypassLane4.UpImage = this.buttonBypassLane5.UpImage = this.buttonBypassLane6.UpImage =
this.buttonBypassLane7.UpImage = this.buttonBypassLane8.UpImage = this.buttonBypassLane9.UpImage =
this.buttonBypassLane10.UpImage = this.buttonBypassLane11.UpImage = this.buttonBypassLane12.UpImage =
this.buttonBypassMode.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnDisable));
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDown));
@ -120,7 +116,6 @@ namespace INT63DC_6CH.Forms
this.labelStaticChattering.Text = "Uklidnění tenzometru";
this.labelStaticBuzzerOnTime.Text = "Zvukový signál - čas";
this.labelStaticRelayOnTime.Text = "Relé - čas";
this.labelStaticBypass.Text = "Vše";
this.labelTitleLine1.Text = "Řada 1";
this.labelTitleLine2.Text = "Řada 2";
@ -135,8 +130,6 @@ namespace INT63DC_6CH.Forms
this.labelTitleLine11.Text = "Řada 11";
this.labelTitleLine12.Text = "Řada 12";
this.labelStaticBypass.Text = "Bypass vše";
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackUp));
@ -144,14 +137,12 @@ namespace INT63DC_6CH.Forms
this.buttonBypassLane1.DownImage = this.buttonBypassLane2.DownImage = this.buttonBypassLane3.DownImage =
this.buttonBypassLane4.DownImage = this.buttonBypassLane5.DownImage = this.buttonBypassLane6.DownImage =
this.buttonBypassLane7.DownImage = this.buttonBypassLane8.DownImage = this.buttonBypassLane9.DownImage =
this.buttonBypassLane10.DownImage = this.buttonBypassLane11.DownImage = this.buttonBypassLane12.DownImage =
this.buttonBypassMode.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeEnable));
this.buttonBypassLane10.DownImage = this.buttonBypassLane11.DownImage = this.buttonBypassLane12.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeEnable));
this.buttonBypassLane1.UpImage = this.buttonBypassLane2.UpImage = this.buttonBypassLane3.UpImage =
this.buttonBypassLane4.UpImage = this.buttonBypassLane5.UpImage = this.buttonBypassLane6.UpImage =
this.buttonBypassLane7.UpImage = this.buttonBypassLane8.UpImage = this.buttonBypassLane9.UpImage =
this.buttonBypassLane10.UpImage = this.buttonBypassLane11.UpImage = this.buttonBypassLane12.UpImage =
this.buttonBypassMode.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeDisable));
this.buttonBypassLane10.UpImage = this.buttonBypassLane11.UpImage = this.buttonBypassLane12.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeDisable));
#endregion
break;
case DataStore.LanguageID.German:
@ -164,7 +155,6 @@ namespace INT63DC_6CH.Forms
this.labelStaticChattering.Text = "Beruhigung des Dehnungsmessers";
this.labelStaticBuzzerOnTime.Text = "Summer-Einschaltzeit";
this.labelStaticRelayOnTime.Text = "Relais-Einschaltzeit";
this.labelStaticBypass.Text = "Bypass-Modus";
this.labelTitleLine1.Text = "Reihe 1";
this.labelTitleLine2.Text = "Reihe 2";
@ -179,8 +169,6 @@ namespace INT63DC_6CH.Forms
this.labelTitleLine11.Text = "Reihe 11";
this.labelTitleLine12.Text = "Reihe 12";
this.labelStaticBypass.Text = "Bypass Alles";
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackUp));
@ -188,14 +176,12 @@ namespace INT63DC_6CH.Forms
this.buttonBypassLane1.DownImage = this.buttonBypassLane2.DownImage = this.buttonBypassLane3.DownImage =
this.buttonBypassLane4.DownImage = this.buttonBypassLane5.DownImage = this.buttonBypassLane6.DownImage =
this.buttonBypassLane7.DownImage = this.buttonBypassLane8.DownImage = this.buttonBypassLane9.DownImage =
this.buttonBypassLane10.DownImage = this.buttonBypassLane11.DownImage = this.buttonBypassLane12.DownImage =
this.buttonBypassMode.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerEnable));
this.buttonBypassLane10.DownImage = this.buttonBypassLane11.DownImage = this.buttonBypassLane12.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerEnable));
this.buttonBypassLane1.UpImage = this.buttonBypassLane2.UpImage = this.buttonBypassLane3.UpImage =
this.buttonBypassLane4.UpImage = this.buttonBypassLane5.UpImage = this.buttonBypassLane6.UpImage =
this.buttonBypassLane7.UpImage = this.buttonBypassLane8.UpImage = this.buttonBypassLane9.UpImage =
this.buttonBypassLane10.UpImage = this.buttonBypassLane11.UpImage = this.buttonBypassLane12.UpImage =
this.buttonBypassMode.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerDisable));
this.buttonBypassLane10.UpImage = this.buttonBypassLane11.UpImage = this.buttonBypassLane12.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerDisable));
#endregion
break;
case DataStore.LanguageID.Japanese:
@ -206,7 +192,6 @@ namespace INT63DC_6CH.Forms
this.labelStaticChattering.Text = "チャタリング";
this.labelStaticBuzzerOnTime.Text = "ブザㅡON時間";
this.labelStaticRelayOnTime.Text = "リレㅡON時間";
this.labelStaticBypass.Text = "バイパスモㅡド";
this.labelTitleLine1.Text = "レㅡン 1";
this.labelTitleLine2.Text = "レㅡン 2";
@ -221,8 +206,6 @@ namespace INT63DC_6CH.Forms
this.labelTitleLine11.Text = "レㅡン 11";
this.labelTitleLine12.Text = "レㅡン 12";
this.labelStaticBypass.Text = "バイパスモㅡド";
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackUp));
@ -286,7 +269,6 @@ namespace INT63DC_6CH.Forms
public void DisplayRefresh()
{
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormConfiguration;
this.buttonSaveBypass.Enabled = false;
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
{
@ -435,26 +417,7 @@ namespace INT63DC_6CH.Forms
}
}
private void buttonBypassLane_Click(object sender, EventArgs e)
{
int iTemp = 0;
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
{
if (this.CollectionBypassButton[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
{
iTemp++;
}
}
if (iTemp == this.ParentForm.SystemConfig.EquipmentColumns)
this.buttonBypassMode.ButtonDown();
else
this.buttonBypassMode.ButtonUp();
this.buttonSaveBypass.Enabled = true;
}
private void buttonSaveBypass_Click(object sender, EventArgs e)
private void buttonSetBypass_Click(object sender, EventArgs e)
{
string before = "", after = "", lane = "";
StringBuilder sb = new StringBuilder();
@ -679,7 +642,7 @@ namespace INT63DC_6CH.Forms
#endregion
if (this.ParentForm.SystemConfig.EquipmentColumns <= 7)
if (this.ParentForm.SystemConfig.EquipmentColumns >= 7)
{
#region Lane 7
// Lane 7
@ -716,7 +679,7 @@ namespace INT63DC_6CH.Forms
#endregion
}
if (this.ParentForm.SystemConfig.EquipmentColumns <= 8)
if (this.ParentForm.SystemConfig.EquipmentColumns >= 8)
{
#region 8열
// Lane 8
@ -753,7 +716,7 @@ namespace INT63DC_6CH.Forms
#endregion
}
if (this.ParentForm.SystemConfig.EquipmentColumns <= 10)
if (this.ParentForm.SystemConfig.EquipmentColumns >= 10)
{
#region 9열
if (this.buttonBypassLane9.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
@ -821,7 +784,7 @@ namespace INT63DC_6CH.Forms
#endregion
}
if (this.ParentForm.SystemConfig.EquipmentColumns <= 12)
if (this.ParentForm.SystemConfig.EquipmentColumns >= 12)
{
#region 11열
if (this.buttonBypassLane11.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
@ -900,50 +863,6 @@ namespace INT63DC_6CH.Forms
}
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._1201_Bypass, sb.ToString());
this.buttonSaveBypass.Enabled = false;
}
private void buttonBypassMode_Click(object sender, EventArgs e)
{
string before = "", after = "";
StringBuilder sb = new StringBuilder();
if (this.buttonBypassMode.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
{
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
{
sb.Append("1");
this.CollectionBypassButton[i].ButtonDown();
}
this.ParentForm.SystemConfig.IsBypassMode = true;
for (int i = 0; i < this.ParentForm.CollectionWeightData.Count; i++)
this.ParentForm.CollectionWeightData[i].IsBypassMode = true;
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._1201_Bypass, sb.ToString());
before = "OFF";
after = "ON";
}
else
{
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
{
sb.Append("0");
this.CollectionBypassButton[i].ButtonUp();
}
this.ParentForm.SystemConfig.IsBypassMode = false;
for (int i = 0; i < this.ParentForm.CollectionWeightData.Count; i++)
this.ParentForm.CollectionWeightData[i].IsBypassMode = false;
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._1201_Bypass, sb.ToString());
before = "ON";
after = "OFF";
}
// SetTrackingHistoryData
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_All, "", before, after);
}
#endregion
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -20,10 +20,6 @@ namespace INT63DC_6CH.Forms
#region Field
private FormMain m_ParentForm;
private ControlEquipmentTest ChildControl1;
private Collection<SmartLabel> CollectionLabelWeightValue;
private Collection<Label> CollectionLabelZero;
private Collection<Label> CollectionLabelSensor;
#endregion
#region Constructor
@ -81,8 +77,6 @@ namespace INT63DC_6CH.Forms
this.buttonCOM3LogOpen.Text = this.buttonLogOpen.Text = "Otevřít";
this.buttonCOM3LogClose.Text = this.buttonLogClose.Text = "Zavřít";
this.smartGroupBox1.Text = this.smartLabel1.Text = "Váha";
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDown));
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackUp));
@ -94,12 +88,9 @@ namespace INT63DC_6CH.Forms
{
this.labelTitle.Text = "Vorrichtungstest";
this.smartGroupBox1.Text = "Gewicht";
this.labelStaticCommLog.Text = "Kommunikationsprotokoll";
this.labelStaticCOM3CommLog.Text = "COM3 Protokoll";
this.smartLabel1.Text = "Gewicht";
this.buttonLogOpen.Text = this.buttonCOM3LogOpen.Text = "Öffnen";
this.buttonLogClose.Text = this.buttonCOM3LogClose.Text = "Schließen";
@ -145,60 +136,6 @@ namespace INT63DC_6CH.Forms
this.Controls.Add(this.ChildControl1);
this.ChildControl1.Location = new Point(0, 70);
this.ChildControl1.Visible = false;
this.CollectionLabelWeightValue = new Collection<SmartLabel>();
this.CollectionLabelWeightValue.Clear();
this.CollectionLabelWeightValue.Add(this.labelWeight1);
this.CollectionLabelWeightValue.Add(this.labelWeight2);
this.CollectionLabelWeightValue.Add(this.labelWeight3);
this.CollectionLabelWeightValue.Add(this.labelWeight4);
this.CollectionLabelWeightValue.Add(this.labelWeight5);
this.CollectionLabelWeightValue.Add(this.labelWeight6);
this.CollectionLabelWeightValue.Add(this.labelWeight7);
this.CollectionLabelWeightValue.Add(this.labelWeight8);
this.CollectionLabelWeightValue.Add(this.labelWeight9);
this.CollectionLabelWeightValue.Add(this.labelWeight10);
this.CollectionLabelWeightValue.Add(this.labelWeight11);
this.CollectionLabelWeightValue.Add(this.labelWeight12);
this.CollectionLabelZero = new Collection<Label>();
this.CollectionLabelZero.Clear();
this.CollectionLabelZero.Add(this.labelZero1);
this.CollectionLabelZero.Add(this.labelZero2);
this.CollectionLabelZero.Add(this.labelZero3);
this.CollectionLabelZero.Add(this.labelZero4);
this.CollectionLabelZero.Add(this.labelZero5);
this.CollectionLabelZero.Add(this.labelZero6);
this.CollectionLabelZero.Add(this.labelZero7);
this.CollectionLabelZero.Add(this.labelZero8);
this.CollectionLabelZero.Add(this.labelZero9);
this.CollectionLabelZero.Add(this.labelZero10);
this.CollectionLabelZero.Add(this.labelZero11);
this.CollectionLabelZero.Add(this.labelZero12);
this.CollectionLabelSensor = new Collection<Label>();
this.CollectionLabelSensor.Clear();
this.CollectionLabelSensor.Add(this.labelSensor1);
this.CollectionLabelSensor.Add(this.labelSensor2);
this.CollectionLabelSensor.Add(this.labelSensor3);
this.CollectionLabelSensor.Add(this.labelSensor4);
this.CollectionLabelSensor.Add(this.labelSensor5);
this.CollectionLabelSensor.Add(this.labelSensor6);
this.CollectionLabelSensor.Add(this.labelSensor7);
this.CollectionLabelSensor.Add(this.labelSensor8);
this.CollectionLabelSensor.Add(this.labelSensor9);
this.CollectionLabelSensor.Add(this.labelSensor10);
this.CollectionLabelSensor.Add(this.labelSensor11);
this.CollectionLabelSensor.Add(this.labelSensor12);
foreach (SmartLabel label in this.CollectionLabelWeightValue)
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.SystemConfig.DecimalPlaces);
for (int i = 0; i < 12; i++)
{
this.CollectionLabelZero[i].Visible = false;
this.CollectionLabelSensor[i].Visible = false;
}
}
private void TransferDataStreamASetting(string value)
@ -238,157 +175,6 @@ namespace INT63DC_6CH.Forms
this.buttonBack.Enabled = true;
}
}
public void UpdateStopWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
{
string value = "";
if (status == DataStore.EquipmentStatus.Stop)
{
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 중량
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.CollectionLabelWeightValue[i].Text != value)
this.CollectionLabelWeightValue[i].Text = value;
// 영점표시
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
this.CollectionLabelZero[i].Visible = true;
else
this.CollectionLabelZero[i].Visible = false;
}
}
else
{
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
{
// 영점표시
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
this.CollectionLabelZero[i].Visible = true;
else
this.CollectionLabelZero[i].Visible = false;
}
}
}
public void UpdateStartWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
{
this.UpdateStartWeightDisplay1(status, weightDatas[0]);
this.UpdateStartWeightDisplay2(status, weightDatas[1]);
this.UpdateStartWeightDisplay3(status, weightDatas[2]);
this.UpdateStartWeightDisplay4(status, weightDatas[3]);
this.UpdateStartWeightDisplay5(status, weightDatas[4]);
this.UpdateStartWeightDisplay6(status, weightDatas[5]);
this.UpdateStartWeightDisplay7(status, weightDatas[6]);
this.UpdateStartWeightDisplay8(status, weightDatas[7]);
this.UpdateStartWeightDisplay9(status, weightDatas[8]);
this.UpdateStartWeightDisplay10(status, weightDatas[9]);
this.UpdateStartWeightDisplay11(status, weightDatas[10]);
this.UpdateStartWeightDisplay12(status, weightDatas[11]);
}
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight1.Text != value)
this.labelWeight1.Text = value;
}
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight2.Text != value)
this.labelWeight2.Text = value;
}
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight3.Text != value)
this.labelWeight3.Text = value;
}
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight4.Text != value)
this.labelWeight4.Text = value;
}
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight5.Text != value)
this.labelWeight5.Text = value;
}
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight6.Text != value)
this.labelWeight6.Text = value;
}
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight7.Text != value)
this.labelWeight7.Text = value;
}
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight8.Text != value)
this.labelWeight8.Text = value;
}
public void UpdateStartWeightDisplay9(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight9.Text != value)
this.labelWeight9.Text = value;
}
public void UpdateStartWeightDisplay10(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight10.Text != value)
this.labelWeight10.Text = value;
}
public void UpdateStartWeightDisplay11(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight11.Text != value)
this.labelWeight11.Text = value;
}
public void UpdateStartWeightDisplay12(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeight12.Text != value)
this.labelWeight12.Text = value;
}
public void UpdateInputRead(Collection<string> values)
{
if (values.Count == 0 || values == null)
return;
for (int i = 0; i < this.CollectionLabelSensor.Count; i++)
this.SetlabelOnOff(this.CollectionLabelSensor[i], values[i] == "1" ? true : false);
}
public void DisplayRefresh()
{
@ -416,26 +202,6 @@ namespace INT63DC_6CH.Forms
this.ParentForm.ChildFormMenu.DisplayRefresh();
((FormMain)(Owner)).smartForm.Show((int)DataStore.FormStore.FormMenu);
}
private void buttonZero_Click(object sender, EventArgs e)
{
SmartButton button = sender as SmartButton;
if (button == null)
return;
if (button == this.buttonZero1)
this.ParentForm.TransferData(CommunicationCommand.Zero, CommunicationID.SubBoard1);
else if (button == this.buttonZero2)
this.ParentForm.TransferData(CommunicationCommand.Zero, CommunicationID.SubBoard2);
else if (button == this.buttonZero3)
this.ParentForm.TransferData(CommunicationCommand.Zero, CommunicationID.SubBoard3);
else if (button == this.buttonZero4)
this.ParentForm.TransferData(CommunicationCommand.Zero, CommunicationID.SubBoard4);
else if (button == this.buttonZero5)
this.ParentForm.TransferData(CommunicationCommand.Zero, CommunicationID.SubBoard5);
else
this.ParentForm.TransferData(CommunicationCommand.Zero, CommunicationID.SubBoard6);
}
private void buttonLogOpen_Click(object sender, EventArgs e)
{
this.ParentForm.smartFileCommunicationLog.Close();

File diff suppressed because it is too large Load Diff

View File

@ -25,8 +25,7 @@ namespace INT63DC_6CH.Forms
private string Text_Out;
private string Text_In;
private Collection<Label> CollectionInputLabel;
private Collection<Label> CollectionInputLabel1;
private Collection<SmartLabel> CollectionInputLabel;
private Collection<SmartLabel> CollectionInputLabelName;
private Collection<SmartButton> CollectionOutputButton;
#endregion
@ -114,10 +113,7 @@ namespace INT63DC_6CH.Forms
}
private void InitializeControl()
{
foreach (Label label in this.CollectionInputLabel)
this.SetlabelOnOff(label, false);
foreach (Label label in this.CollectionInputLabel1)
foreach (SmartLabel label in this.CollectionInputLabel)
this.SetlabelOnOff(label, false);
foreach (SmartButton button in this.CollectionOutputButton)
@ -128,7 +124,7 @@ namespace INT63DC_6CH.Forms
this.ColorIOStatusOn = Color.Lime;
this.ColorIOStatusOff = Color.Gray;
this.CollectionInputLabel = new Collection<Label>();
this.CollectionInputLabel = new Collection<SmartLabel>();
this.CollectionInputLabel.Clear();
this.CollectionInputLabel.Add(this.labelInput1);
this.CollectionInputLabel.Add(this.labelInput2);
@ -147,25 +143,6 @@ namespace INT63DC_6CH.Forms
this.CollectionInputLabel.Add(this.labelInput15);
this.CollectionInputLabel.Add(this.labelInput16);
this.CollectionInputLabel1 = new Collection<Label>();
this.CollectionInputLabel1.Clear();
this.CollectionInputLabel1.Add(this.labelInput17);
this.CollectionInputLabel1.Add(this.labelInput18);
this.CollectionInputLabel1.Add(this.labelInput19);
this.CollectionInputLabel1.Add(this.labelInput20);
this.CollectionInputLabel1.Add(this.labelInput21);
this.CollectionInputLabel1.Add(this.labelInput22);
this.CollectionInputLabel1.Add(this.labelInput23);
this.CollectionInputLabel1.Add(this.labelInput24);
this.CollectionInputLabel1.Add(this.labelInput25);
this.CollectionInputLabel1.Add(this.labelInput26);
this.CollectionInputLabel1.Add(this.labelInput27);
this.CollectionInputLabel1.Add(this.labelInput28);
this.CollectionInputLabel1.Add(this.labelInput29);
this.CollectionInputLabel1.Add(this.labelInput30);
this.CollectionInputLabel1.Add(this.labelInput31);
this.CollectionInputLabel1.Add(this.labelInput32);
this.CollectionInputLabelName = new Collection<SmartLabel>();
this.CollectionInputLabelName.Clear();
this.CollectionInputLabelName.Add(this.labelInputName1);
@ -184,22 +161,6 @@ namespace INT63DC_6CH.Forms
this.CollectionInputLabelName.Add(this.labelInputName14);
this.CollectionInputLabelName.Add(this.labelInputName15);
this.CollectionInputLabelName.Add(this.labelInputName16);
this.CollectionInputLabelName.Add(this.labelInputName17);
this.CollectionInputLabelName.Add(this.labelInputName18);
this.CollectionInputLabelName.Add(this.labelInputName19);
this.CollectionInputLabelName.Add(this.labelInputName20);
this.CollectionInputLabelName.Add(this.labelInputName21);
this.CollectionInputLabelName.Add(this.labelInputName22);
this.CollectionInputLabelName.Add(this.labelInputName23);
this.CollectionInputLabelName.Add(this.labelInputName24);
this.CollectionInputLabelName.Add(this.labelInputName25);
this.CollectionInputLabelName.Add(this.labelInputName26);
this.CollectionInputLabelName.Add(this.labelInputName27);
this.CollectionInputLabelName.Add(this.labelInputName28);
this.CollectionInputLabelName.Add(this.labelInputName29);
this.CollectionInputLabelName.Add(this.labelInputName30);
this.CollectionInputLabelName.Add(this.labelInputName31);
this.CollectionInputLabelName.Add(this.labelInputName32);
this.CollectionOutputButton = new Collection<SmartButton>();
this.CollectionOutputButton.Clear();
@ -222,47 +183,9 @@ namespace INT63DC_6CH.Forms
this.CollectionOutputButton.Add(this.buttonOutput17);
this.CollectionOutputButton.Add(this.buttonOutput18);
this.CollectionOutputButton.Add(this.buttonOutput19);
this.CollectionOutputButton.Add(this.buttonOutput20);
this.CollectionOutputButton.Add(this.buttonOutput21);
this.CollectionOutputButton.Add(this.buttonOutput22);
this.CollectionOutputButton.Add(this.buttonOutput23);
this.CollectionOutputButton.Add(this.buttonOutput24);
this.CollectionOutputButton.Add(this.buttonOutput25);
this.CollectionOutputButton.Add(this.buttonOutput26);
this.CollectionOutputButton.Add(this.buttonOutput27);
this.CollectionOutputButton.Add(this.buttonOutput28);
this.CollectionOutputButton.Add(this.buttonOutput29);
this.CollectionOutputButton.Add(this.buttonOutput30);
this.CollectionOutputButton.Add(this.buttonOutput31);
this.CollectionOutputButton.Add(this.buttonOutput32);
this.CollectionOutputButton.Add(this.buttonOutput33);
this.CollectionOutputButton.Add(this.buttonOutput34);
this.CollectionOutputButton.Add(this.buttonOutput35);
this.CollectionOutputButton.Add(this.buttonOutput36);
this.CollectionOutputButton.Add(this.buttonOutput37);
this.CollectionOutputButton.Add(this.buttonOutput38);
this.CollectionOutputButton.Add(this.buttonOutput39);
this.CollectionOutputButton.Add(this.buttonOutput40);
for (int i = 0; i < this.CollectionInputLabelName.Count; i++)
this.CollectionInputLabelName[i].Text = string.Format("{0}{1}", this.Text_In, i + 1);
for (int i = 0; i < this.CollectionOutputButton.Count; i++)
this.CollectionOutputButton[i].Text = string.Format("{0}{1}", this.Text_Out, i + 1);
if (this.ParentForm.SystemConfig.EquipmentColumns != 16)
{
for (int i = 32; i < 40; i++)
this.CollectionOutputButton[i].Visible = false;
for (int i = 0; i < 32; i++)
{
this.CollectionOutputButton[i].Location =
new Point(this.CollectionOutputButton[i].Location.X + 50, this.CollectionOutputButton[i].Location.Y);
}
}
}
private void SetlabelOnOff(Label control, bool isOn)
private void SetlabelOnOff(SmartLabel control, bool isOn)
{
if (isOn == true)
{
@ -284,14 +207,6 @@ namespace INT63DC_6CH.Forms
for (int i = 0; i < values.Count; i++)
this.SetlabelOnOff(this.CollectionInputLabel[i], values[i] == "1" ? true : false);
}
public void UpdateInputRead1(Collection<string> values)
{
if (values.Count == 0 || values == null)
return;
for (int i = 0; i < values.Count; i++)
this.SetlabelOnOff(this.CollectionInputLabel1[i], values[i] == "1" ? true : false);
}
public void DisplayRefresh()
{

View File

@ -165,75 +165,77 @@
XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS
fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+
tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwAAADsABataJCQAAD99JREFUeF7t1wENADAI
wDD8CwC5v5B1qYnNkyRJkpTJAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiS
JEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmS
FMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmh
DIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoA
SJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAk
SZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIk
SaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIU
ygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEM
gCRJkhRqbg8AAIgwAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAA
ACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEG
AAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQ
YgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAA
ACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEA
AAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQ
AwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAA
CDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEA
AIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQY
AAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABA
iAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAA
AIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQA
AABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABC
DAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAA
IMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYA
AABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBi
AAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAA
IQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAA
ABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBAD
AAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAI
MQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAA
gBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgA
AAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECI
AQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAA
hBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAA
AECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIM
AAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAg
xAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAA
AEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIA
AAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAh
BgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAA
EGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMA
AAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgx
AAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACA
EAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAA
AAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgB
AACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACE
GAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAA
QIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwA
AACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDE
AAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAA
QgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAA
ACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEG
AAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQ
YgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAA
ACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEA
AAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQ
AwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAA
CDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEA
AIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQY
AAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABA
iAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAA
AIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQA
AABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABC
DAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAA
IMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYA
AABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBi
AAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAA
IQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAA
ABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAMvY+1tRWy+4CoZ0AAAAASUVORK5CYII=
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwAAADsABataJCQAAEEJJREFUeF7t1zERACAQ
xMD3LwDkQo8EspmtzsHNkSRJkpRp3kGSJEnSvzkAkiRJUigHQJIkSQrlAEiSJEmhHABJkiQplAMgSZIk
hXIAJEmSpFAOgCRJkhTKAZAkSZJCOQCSJElSKAdAkiRJCuUASJIkSaEcAEmSJCmUAyBJkiSFcgAkSZKk
UA6AJEmSFMoBkCRJkkI5AJIkSVIoB0CSJEkK5QBIkiRJoRwASZIkKZQDIEmSJIVyACRJkqRQDoAkSZIU
ygGQJEmSQjkAkiRJUigHQJIkSQrlAEiSJEmhHABJkiQplAMgSZIkhXIAJEmSpFAOgCRJkhTKAZAkSZJC
OQCSJElSKAdAkiRJCuUASJIkSaEcAEmSJCmUAyBJkiSFcgAkSZKkUA6AJEmSFMoBkCRJkkI5AJIkSVIo
B0CSJEkK5QBIkiRJoRwASZIkKZQDIEmSJIVyACRJkqRQDoAkSZIUygGQJEmSQjkAkiRJUigHQJIkSQrl
AEiSJEmhHABJkiQplAMgSZIkhXIAJEmSpFAOgCRJkhTKAZAkSZJCOQCSJElSKAdAkiRJCuUASJIkSaEc
AEmSJCmUAyBJkiSFcgAkSZKkUA6AJEmSFMoBkCRJkkI5AJIkSVIoB0CSJEkK5QBIkiRJoRwASZIkKZQD
IEmSJIVyACRJkqRQDoAkSZIUavbaAABAhAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
AAAhDgAAAIRc1tRWy/QY8wMAAAAASUVORK5CYII=
</value>
</data>
<data name="buttonBack.DisableImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
@ -283,28 +285,29 @@
XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS
fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+
tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAABMBJREFUeF7tnItSIkcU
QPnaSJWPSoxBQ4yAiWjUXUCQl6DgawFFFPcDc/TeRXeAEaGHx/ScGi1m7O6ZM337pVaHCvmC48if5pPJ
5Obm5srKytLS0i8LSzgcXltbQ2Q/uY+UQ5PDKZ9IJMgTj8dLpVKr1ep2u98XlsfHx0ajgQg6SKHmkH2T
z6Qz0Wg0Fos1m03N7SOQQg1BNHvKKs8lIjydTmtan4Igmj1/leeV+N5cQBPZN/l4jEYR1x9aALI0gRd5
ukE6g7u7O/2JBdzf36OMeCi5l9zd3dXL1oDy3t5eKBKJlMtlvWYNZ2dniIeYyVgV8wLKiIfo+hd6JjMe
KCMeYhqoFywD8UDeSgL5QH6GdDodplx81/NpMXt5ltxXV1f1eh3/5+dnvToVZizfbrcvLi5yuVypVGLW
YYs8nlR1tVplgZlKpZC3peZp3jc3N4VCAe2vr1ghLxXOooIK//KOYrHoc/mnp6fb21s8sT3+GaLAz/IP
Dw+1Wu3k5ORoEMj7s8OjwlutVrlcpob/G0I+n6fmNcO08FyeYVwqHMP94ZyenvpNHh+pcPSSrtDhn5+f
Xw+BWRCjgxZqDq/kCXUel/pEe28ESMY7kmFP+n8HXvxa3RN5+jbmbTzxP+YgOrR0cxiW73a7zWaT3oua
3DXKwcGB3sMcJuUZq2i3RC8V9fI3EKPMuzyzF1rvzs5OzAPmPeyZtB4eHvKg+BuH16q3MYdJeYZ0evhM
JkPY/22aeZcX6OorlQpRur29/Zc5eKF6A3OYlwf55QxDHf5/GoLK19LN4Yk8sERhzMvlcnTUWyMggS3z
fDp2BzIF0qLN4ZW80Ol0mN4SsdFodNMVzKvV6rdXWPb202g0tFBzeCsPzHOlCeD/x3CocPSIFxe0RHN4
Lg88NyscVuzE9u9DILC9qFt3piEv0AQIbMJ7Y2Pjtz64zjDpRfW6MD15wA1Duq5IJPLrz9Av0LD9LA/o
tdttRgGGbip87QfI+7zmezARuLy8pJ3jv/pKIpGwRV5gIpBKpdbX15eXl+kLr6+vLZIHmkA2m2WSw9Kl
Xq/bJQ+Mgul0+ujoiIZgnfwMCeQDeQsJ5AN5r2HRJn970vM5wIx8rVb7dziShg+s50BOXeAFMfn/EG6q
GcbFjHxPbCCONHLqAmKS0p3eax0bw/J86MeRRk5dqFQqknEYUg4fNMO4GJbX80GMkmZEpJxAfiIMy0t/
7oDV+/s0ksWFYrEoKd2ZO/mB4P8+jWRxYcE6PNak+kSDGFv+NW6GMvn/8JiRH4Ux5PXcMyaVpz1rRfSB
g3B8fIy58ZoH6U3GZlJ5nkAe9EPGkP8Q7q55xsJD+a2tLalwwIfvcl1zDodJjqT8kBnLO3gfsXrpB6PL
O+i9XwrXS4YI5OdGnoCnBAf0l5JRmk8/mvnzzJd8L82n0MyfJ5Cf7zbvHYblcX5phblc/9zT//KLRSBv
s3w4HJ5whbCI6M4Jq6ur0/9PqJmje2ZYvVuK1fvkWL1DktV7Y/HFYe+uaByyH142m9UkPgXBAfvhcaS+
pnglxINfd0Ik2hFEs6f8Ji+H7IFJZ8hgsOh7YPLwKCCCDlJue2D2DrpBxj+GwUXf/ZSHRwERdJByaBby
hf8BrK786fYhO9AAAAAASUVORK5CYII=
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAABPpJREFUeF7tnOlyqkgY
QH1aoSomNd7JoENUEALEBAUjAop7xBFBQZwHnIqdMKZdwhWICp7ij9Ubh27hY6kvpcgKtMlNmWXZXC6X
yWQQBElfLCiK3t3d5XI5juXkprxtmoJ+l8tlFEVJkmy1WrPZzHXdfy8Wx3Gm02mr1SJJEkXRcrm8V74u
1nEcJwjCMAy4m8vHMAyCIHAcr4t1WL4u1hEEEUURbhQvRFFEEMTz/5DHcTz25gBRFHEc/1+eJEiSJOFa
8YUkSYIg3uXlpoyiqGmacJX4YlkWiqJyU06xDEtRFFwedyiKYhgmhWFYu92GC+OOpmkYhqUymUyi1jzA
NM1MJpNCEOSiI5njcF0XQZBUOp2GS5JBOp2+yieSq/xV/oTYtm1Zlm3bcEHEnF7ecZy3t7fhcGhZ1mq1
gouj5MTy8/m83+9LktRqtUzTTIr8arWyLKvb7YqiKAhCq9VKyszbtq3ruqIogiDU1iRCHky4pmmiKFY3
UFU15vLL5XIymaiqWq1W+a8oihJn+cViMRgMXl9fX3ahKEo8T3jL5XI2m7XbbZ7nK3uQZdmyLLhlxEQu
7zgOmPBKpcLtp9lsxk3esiww4RzHsQep1Wq9Xm+8h7e3N13X4d4DE5X8crnUdb3ZbHIcx/iA4zie58Fl
b/Mq4BHFY/VI5BeLRb/fr1ardHiwLAsPE5iQ5V3XNQxDlmWO46hQeXp6ggcLTJjypmn2ej2e52mafn8H
EirnLq+qKsMwpVKJiIBzX/aapj0/PxMEUYoAhmHg8QITprzjOLqu1+t1mqaLYXPu8oDFYtHpdFiWLRQK
D+FB0zQ8UmDCl/cezlSr1UKh8HdIFItFeJjARCIPbl0Nw5AkiSTJvA/AwgZx/tMWIASCxwhMVPIA27bb
7TZN0ziO5w7CMEy32/1nzWQX0+kU7j0w0cqDOBf8BXAc/2s/lUplOp2uDgJ3HZjI5b2nN4qiFIvFP/fA
cVwUc3uYn5AH2Lbd7XYZhrm/v89uwTCMrutRTO8Bfk4eLAFd13mexzDsj6/QND2ZTOIsD/zn87kkSQ8P
D9ls9u4TmqZjPvMejuOMRiOO47LZ7O2acrmcFHmAYRiCIPz69evm5qZYLI7H4wTJg9dVjUYjn8+XSqXh
cJgsefCcTxTFl5eX0WiUOPkTcpW/yieQq/xVPmqm0yl49wQXnI5w5AeDweN+QJ3Hx8f7NXDjLcbjseSD
wWAAt/xNwpH3xHYC1YEbbyFJEtzFLrzDejQhy8OTvgaqAzfeotPpwF185Uzl4YIN/NTxyVX+/OThrwrW
OI7zW/KqqoKahzk7+Z2Ay5t/+Qs74YmiCO/aBkfLw0voK8G/4QlH3g9HyMMFYRNU3nEceEY+8aIRnuc3
L1FwF1v4nHnvbHI0QeXH4zHY0W85Qv5bAgbLEcrn83kvLJEkyb98p9OB+9rDieUhNlcsVORfHsI7vpIk
wWXBuMqfjXyn0/ly4/Z5vgQNwd9nG7gX35yX/OFgaR9wL765yp+N/A8TsrwX22zHnvGXvyyu8kmWR1E0
4B3CJfKROeH29vbnv4Q6OR85MxKdLSXReXISnSEp0bmxkp4VzcuH12g04LrxotFo7MiHp8iKUBPinQmR
JEkcx4WaAGdC9DaQA5OiKE3TLj0Hpuu6s9lM0zSKor7Jgelt79lPGRbDsEvPfoogSCaTwTCMZdid2U//
A6yu/OmZUbOXAAAAAElFTkSuQmCC
</value>
</data>
<data name="buttonBack.DownImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
@ -354,120 +357,128 @@
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
9pH/yfYAAAAASUVORK5CYII=
</value>
</data>
<data name="buttonBack.UpImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
@ -517,47 +528,49 @@
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
</value>
</data>
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">

View File

@ -260,7 +260,7 @@ namespace INT63DC_6CH.Forms
public void UpdateProgreamVersionDisplay(DataStore.EquipmentStatus status, string version)
{
this.labelMainControlVer.Text = version;
this.labelMainControlVer.Text = version.Trim();
}
public void UpdatePart11UserManagerVersionDisplay(string ver)
{

View File

@ -37,6 +37,7 @@ namespace INT63DC_6CH.Forms
public string BalanceWeight; // 중량 조정 - 분동중량
private bool IsModbusCommonDataSend; // Modbus 공통 데이터 Start 시 한번 전송용
public int FlagAutomaticLogoutWarningTime; //Part11 Auto Logout
public static int DecimalP = 2;
public bool FlagDllSerial; // DllSerial 사용 유무
@ -305,7 +306,6 @@ namespace INT63DC_6CH.Forms
this.ProductChangNumber = 1;
this.FlagTimeoutCount = 0;
this.IsServoOrigin = false;
this.BalanceWeight = "100.000";
// Path
this.PathLaunchFolder = "SD Card\\";
@ -376,6 +376,8 @@ namespace INT63DC_6CH.Forms
this.FlagDllSerial = false;
// COM port 설정
this.ComPortMainToLCD = "COM2:";
// 중량 조정 - 분동중량
this.BalanceWeight = Helper.DoubleToString(100, this.SystemConfig.DecimalPlaces);
// SerialDll Initialize
SerialMgrComm.IntializeSerialManager();
@ -1042,10 +1044,6 @@ namespace INT63DC_6CH.Forms
if ((ret = this.ReceiveCommandST0(lane, receiveData)) != 0)
return ret;
break;
case "ST1":
if ((ret = this.ReceiveCommandST1(lane, receiveData)) != 0)
return ret;
break;
default:
break;
}
@ -1667,35 +1665,6 @@ namespace INT63DC_6CH.Forms
if (this.ChildFormIOTest != null)
this.ChildFormIOTest.UpdateInputRead(this.CollectionIOTest_InputData);
}
else if (this.SystemConfig.CurrentForm == DataStore.FormStore.FormEquipmentTest)
{
if (this.ChildFormEquipmentTest != null)
this.ChildFormEquipmentTest.UpdateInputRead(this.CollectionIOTest_InputData);
}
break;
default:
break;
}
return ret;
}
// IO테스트1-IN
private int ReceiveCommandST1(string lane, string receiveData)
{
int ret = 0;
switch (lane)
{
case "0":
#region Value Assign
for (int i = 0; i < 16; i++)
this.CollectionIOTest_InputData1[i] = receiveData.Substring(i, 1);
#endregion
if (this.SystemConfig.CurrentForm == DataStore.FormStore.FormIOTest)
{
if (this.ChildFormIOTest != null)
this.ChildFormIOTest.UpdateInputRead1(this.CollectionIOTest_InputData1);
}
break;
default:
break;
@ -3824,7 +3793,7 @@ namespace INT63DC_6CH.Forms
for (int i = 0; i < this.SystemConfig.EquipmentColumns; i++)
{
sw.Write(",");
sw.Write(Helper.DoubleToString(items[i].Weight, this.SystemConfig.DecimalPlaces));
sw.Write(Helper.StringToDecimalPlaces(items[i].WeightString, this.SystemConfig.DecimalPlaces));
sw.Write(",");
sw.Write(items[i].JudgmentStatus);
}
@ -4077,7 +4046,7 @@ namespace INT63DC_6CH.Forms
this.Update30000UpdateData(index);
this.Current30000ModbusData.LaneModbusData[index].Grade = this.Grade(this.CollectionWeightData[index].JudgmentStatus);
this.Current30000ModbusData.LaneModbusData[index].Weight = this.CollectionWeightData[index].Weight;
this.Current30000ModbusData.LaneModbusData[index].Weight = Helper.StringToWeight(this.CollectionWeightData[index].WeightString, this.SystemConfig.DecimalPlaces);
this.Current30000ModbusData.LaneModbusData[index].UnderCount = (UInt32)this.CollectionWeightData[index].UnderCount;
this.Current30000ModbusData.LaneModbusData[index].PassCount = (UInt32)this.CollectionWeightData[index].PassCount;
this.Current30000ModbusData.LaneModbusData[index].OverCount = (UInt32)this.CollectionWeightData[index].OverCount;
@ -4528,7 +4497,7 @@ namespace INT63DC_6CH.Forms
else
sb.Append("E");
sb.Append(Helper.StringBlankFillDigits6(Helper.DoubleToString(datas[i].Weight, system.DecimalPlaces)));
sb.Append(Helper.StringBlankFillDigits6(Helper.StringToDecimalPlaces(datas[i].WeightString, system.DecimalPlaces)));
}
return sb.ToString();
@ -4562,7 +4531,7 @@ namespace INT63DC_6CH.Forms
else
sb.Append("E");
sb.Append(Helper.StringBlankFillDigits6(Helper.DoubleToString(data.Weight, system.DecimalPlaces)));
sb.Append(Helper.StringBlankFillDigits6(Helper.StringToDecimalPlaces(data.WeightString, system.DecimalPlaces)));
return sb.ToString();
}
@ -4602,7 +4571,7 @@ namespace INT63DC_6CH.Forms
else
sb.Append("E");
sb.Append(Helper.StringBlankFillDigits6(Helper.DoubleToString(datas[i].Weight, system.DecimalPlaces)));
sb.Append(Helper.StringBlankFillDigits6(Helper.StringToDecimalPlaces(datas[i].WeightString, system.DecimalPlaces)));
}
return sb.ToString();
@ -4641,7 +4610,7 @@ namespace INT63DC_6CH.Forms
else
sb.Append("E");
sb.Append(Helper.StringBlankFillDigits6(Helper.DoubleToString(data.Weight, system.DecimalPlaces)));
sb.Append(Helper.StringBlankFillDigits6(Helper.StringToDecimalPlaces(data.WeightString, system.DecimalPlaces)));
return sb.ToString();
}
@ -4693,7 +4662,7 @@ namespace INT63DC_6CH.Forms
else
sb.Append("E");
sb.Append(Helper.StringBlankFillDigits6(Helper.DoubleToString(datas[i].Weight, system.DecimalPlaces)));
sb.Append(Helper.StringBlankFillDigits6(Helper.StringToDecimalPlaces(datas[i].WeightString, system.DecimalPlaces)));
}
return sb.ToString();
@ -4738,7 +4707,7 @@ namespace INT63DC_6CH.Forms
else
sb.Append("E");
sb.Append(Helper.StringBlankFillDigits6(Helper.DoubleToString(data.Weight, system.DecimalPlaces)));
sb.Append(Helper.StringBlankFillDigits6(Helper.StringToDecimalPlaces(data.WeightString, system.DecimalPlaces)));
return sb.ToString();
}

View File

@ -83,6 +83,10 @@ namespace INT63DC_6CH.Forms
this.labelStaticSorter1RunTime.Text = "Sorter1 Run";
this.labelStaticSorter2DelayTime.Text = "Sorter2 Delay";
this.labelStaticSorter2RunTime.Text = "Sorter2 Run";
this.labelStaticEntryGateDelayTime.Text = "Entry gate delay";
this.labelStaticEntryGateRunTime.Text = "Entry gate run";
this.labelStaticDischargeStopperDelayTime.Text = "Discharge stopper delay";
this.labelStaticDischargeStopperRunTime.Text = "Discharge stopper run";
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
@ -406,7 +410,7 @@ namespace INT63DC_6CH.Forms
index = this.comboBoxLane.SelectedIndex;
value = Helper.DoubleToString(weightDatas[index].Weight, this.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[index].WeightString, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightValue.Text != value)
this.labelWeightValue.Text = value;
}
@ -417,15 +421,7 @@ namespace INT63DC_6CH.Forms
index = this.comboBoxLane.SelectedIndex;
value = Helper.DoubleToString(weightDatas[index].Weight, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightJudgment.Text != value)
this.labelWeightJudgment.Text = value;
}
public void UpdateStartWeightDisplay(DataStore.EquipmentStatus status, WeightData weightData)
{
string value = "";
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
value = Helper.StringToDecimalPlaces(weightDatas[index].WeightString, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightJudgment.Text != value)
this.labelWeightJudgment.Text = value;
}
@ -434,7 +430,7 @@ namespace INT63DC_6CH.Forms
int iValue = 0, temp = 0, inputValue = 0;
string sValue = "";
sValue = Helper.DoubleToString(weightData.Weight, this.ParentForm.SystemConfig.DecimalPlaces);
sValue = Helper.StringToDecimalPlaces(weightData.WeightString, this.ParentForm.SystemConfig.DecimalPlaces);
if (this.labelWeightJudgment.Text != sValue)
this.labelWeightJudgment.Text = sValue;

View File

@ -30,19 +30,11 @@ namespace INT63DC_6CH
/// <param name="weight">중량</param>
/// <param name="judStatus">판정결과</param>
/// <param name="decimalPlaces">소수점</param>
public static void SetProgressBarValue(SmartX.SmartProgressBar progressBar, double weight, DataStore.JudgmentStatus judStatus, int decimalPlaces)
public static void SetProgressBarValue(SmartX.SmartProgressBar progressBar, string weight, DataStore.JudgmentStatus judStatus)
{
int value = 0;
if (decimalPlaces == 0)
value = int.Parse(string.Format("{0}", weight));
else if (decimalPlaces == 1)
value = int.Parse(string.Format("{0}", weight * 10));
else if (decimalPlaces == 2)
value = int.Parse(string.Format("{0}", weight * 100));
else if (decimalPlaces == 3)
value = int.Parse(string.Format("{0}", weight * 1000));
value = int.Parse(weight);
if (progressBar.Value != value)
progressBar.Value = value;