parent
ee8bb78581
commit
b31e4f2b71
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
|
@ -14,7 +14,7 @@ using INT63DC_6CH.DialogForms;
|
|||
|
||||
namespace INT63DC_6CH.Controls
|
||||
{
|
||||
public partial class ControlMainDisplayFeedbacak : UserControl
|
||||
public partial class ControlMainDisplayFeedback : UserControl
|
||||
{
|
||||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
|
@ -27,7 +27,7 @@ namespace INT63DC_6CH.Controls
|
|||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public ControlMainDisplayFeedbacak(FormMainDisplay parent)
|
||||
public ControlMainDisplayFeedback(FormMainDisplay parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
|
|
@ -71,8 +71,7 @@ namespace INT63DC_6CH.Controls
|
|||
this.CollectionIgnoreCount.Add(this.labelIgnoreCount3);
|
||||
this.CollectionIgnoreCount.Add(this.labelIgnoreCount4);
|
||||
this.CollectionIgnoreCount.Add(this.labelIgnoreCount5);
|
||||
this.CollectionIgnoreCount.Add(this.labelIgnoreCount6);
|
||||
|
||||
this.CollectionIgnoreCount.Add(this.labelIgnoreCount6);
|
||||
|
||||
this.CollectionFeedbackWeight = new Collection<SmartLabel>();
|
||||
this.CollectionFeedbackWeight.Add(this.labelFeedbackWeight1);
|
||||
|
|
@ -177,10 +176,10 @@ namespace INT63DC_6CH.Controls
|
|||
this.pictureBoxFeedback3.Visible = false;
|
||||
this.pictureBoxFeedback4.Visible = true;
|
||||
|
||||
this.labelOverRange.Location = new Point(854, 61);
|
||||
this.labelHighLimitRange1.Location = new Point(854, 23);
|
||||
this.labelLowLimitRange1.Location = new Point(854, 330);
|
||||
this.labelUnderRange.Location = new Point(854, 291);
|
||||
this.labelOverRange.Location = new Point(898, 123);
|
||||
this.labelHighLimitRange1.Location = new Point(898, 85);
|
||||
this.labelLowLimitRange1.Location = new Point(898, 392);
|
||||
this.labelUnderRange.Location = new Point(898, 353);
|
||||
}
|
||||
else if (highLimit > overRange)
|
||||
{
|
||||
|
|
@ -189,10 +188,10 @@ namespace INT63DC_6CH.Controls
|
|||
this.pictureBoxFeedback3.Visible = false;
|
||||
this.pictureBoxFeedback4.Visible = false;
|
||||
|
||||
this.labelOverRange.Location = new Point(854, 61);
|
||||
this.labelHighLimitRange1.Location = new Point(854, 23);
|
||||
this.labelLowLimitRange1.Location = new Point(854, 291);
|
||||
this.labelUnderRange.Location = new Point(854, 330);
|
||||
this.labelOverRange.Location = new Point(898, 123);
|
||||
this.labelHighLimitRange1.Location = new Point(898, 85);
|
||||
this.labelLowLimitRange1.Location = new Point(898, 353);
|
||||
this.labelUnderRange.Location = new Point(898, 392);
|
||||
}
|
||||
else if (lowLimit < underRange)
|
||||
{
|
||||
|
|
@ -201,10 +200,10 @@ namespace INT63DC_6CH.Controls
|
|||
this.pictureBoxFeedback3.Visible = true;
|
||||
this.pictureBoxFeedback4.Visible = false;
|
||||
|
||||
this.labelOverRange.Location = new Point(854, 23);
|
||||
this.labelHighLimitRange1.Location = new Point(854, 61);
|
||||
this.labelLowLimitRange1.Location = new Point(854, 330);
|
||||
this.labelUnderRange.Location = new Point(854, 291);
|
||||
this.labelOverRange.Location = new Point(898, 85);
|
||||
this.labelHighLimitRange1.Location = new Point(898, 123);
|
||||
this.labelLowLimitRange1.Location = new Point(898, 392);
|
||||
this.labelUnderRange.Location = new Point(898, 353);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -213,10 +212,10 @@ namespace INT63DC_6CH.Controls
|
|||
this.pictureBoxFeedback3.Visible = false;
|
||||
this.pictureBoxFeedback4.Visible = false;
|
||||
|
||||
this.labelOverRange.Location = new Point(854, 23);
|
||||
this.labelHighLimitRange1.Location = new Point(854, 61);
|
||||
this.labelLowLimitRange1.Location = new Point(854, 291);
|
||||
this.labelUnderRange.Location = new Point(854, 330);
|
||||
this.labelOverRange.Location = new Point(898, 85);
|
||||
this.labelHighLimitRange1.Location = new Point(898, 123);
|
||||
this.labelLowLimitRange1.Location = new Point(898, 353);
|
||||
this.labelUnderRange.Location = new Point(898, 392);
|
||||
}
|
||||
}
|
||||
public void UpdateEquipmentStatusDisplay(DataStore.EquipmentStatus status)
|
||||
|
|
@ -459,6 +458,7 @@ namespace INT63DC_6CH.Controls
|
|||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
this.ParentForm.ParentForm.CollectionFeedbackStatus[i].ClearDataAll();
|
||||
this.ParentForm.ParentForm.Update30000ModbusData(i);
|
||||
}
|
||||
|
||||
this.UpdateFeedbackDataDisplay(this.ParentForm.ParentForm.EquipmentStatus, this.ParentForm.ParentForm.CollectionFeedbackStatus);
|
||||
|
|
@ -493,8 +493,7 @@ namespace INT63DC_6CH.Controls
|
|||
this.ParentForm.ParentForm.Update30000ModbusData();
|
||||
this.ParentForm.ParentForm.ModbusCommonDataSend();
|
||||
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.ParentForm.ParentForm.CollectionFeedbackStatus[i].ClearData();
|
||||
this.Clear();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -519,6 +518,8 @@ namespace INT63DC_6CH.Controls
|
|||
|
||||
this.ParentForm.ParentForm.Update30000ModbusData();
|
||||
this.ParentForm.ParentForm.ModbusCommonDataSend();
|
||||
|
||||
this.Clear();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -582,17 +583,17 @@ namespace INT63DC_6CH.Controls
|
|||
}
|
||||
else
|
||||
{
|
||||
if (myKeyPad.doubleValue > Helper.StringToWeight(this.ParentForm.ParentForm.CurrentProductItem.OverRange, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces))
|
||||
{
|
||||
DialogFormYesNo myMsgYesNo = new DialogFormYesNo(this.ParentForm.ParentForm.SystemConfig.Language, 6);
|
||||
if (myMsgYesNo.ShowDialog() == DialogResult.Yes)
|
||||
saveEnable = true;
|
||||
}
|
||||
else
|
||||
saveEnable = true;
|
||||
//if (myKeyPad.doubleValue > Helper.StringToWeight(this.ParentForm.ParentForm.CurrentProductItem.OverRange, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces))
|
||||
//{
|
||||
// DialogFormYesNo myMsgYesNo = new DialogFormYesNo(this.ParentForm.ParentForm.SystemConfig.Language, 6);
|
||||
// if (myMsgYesNo.ShowDialog() == DialogResult.Yes)
|
||||
// saveEnable = true;
|
||||
//}
|
||||
//else
|
||||
// saveEnable = true;
|
||||
|
||||
if (saveEnable == true)
|
||||
{
|
||||
//if (saveEnable == true)
|
||||
//{
|
||||
this.labelHighLimitRange.Text = myKeyPad.StringValue;
|
||||
this.labelHighLimitRange1.Text = myKeyPad.StringValue;
|
||||
this.ParentForm.ParentForm.CurrentFeedbackItem.HighLimit = myKeyPad.StringValue.Replace(".", "");
|
||||
|
|
@ -601,8 +602,9 @@ namespace INT63DC_6CH.Controls
|
|||
this.ParentForm.ParentForm.Update30000ModbusData();
|
||||
this.ParentForm.ParentForm.ModbusCommonDataSend();
|
||||
|
||||
this.Clear();
|
||||
this.UpdateFeedbackDisplay(this.ParentForm.ParentForm.CurrentFeedbackItem, this.ParentForm.ParentForm.SystemConfig, this.ParentForm.ParentForm.CurrentProductItem);
|
||||
}
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -630,17 +632,17 @@ namespace INT63DC_6CH.Controls
|
|||
}
|
||||
else
|
||||
{
|
||||
if (myKeyPad.doubleValue < Helper.StringToWeight(this.ParentForm.ParentForm.CurrentProductItem.UnderRange, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces))
|
||||
{
|
||||
DialogFormYesNo myMsgYesNo = new DialogFormYesNo(this.ParentForm.ParentForm.SystemConfig.Language, 7);
|
||||
if (myMsgYesNo.ShowDialog() == DialogResult.Yes)
|
||||
saveEnable = true;
|
||||
}
|
||||
else
|
||||
saveEnable = true;
|
||||
//if (myKeyPad.doubleValue < Helper.StringToWeight(this.ParentForm.ParentForm.CurrentProductItem.UnderRange, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces))
|
||||
//{
|
||||
// DialogFormYesNo myMsgYesNo = new DialogFormYesNo(this.ParentForm.ParentForm.SystemConfig.Language, 7);
|
||||
// if (myMsgYesNo.ShowDialog() == DialogResult.Yes)
|
||||
// saveEnable = true;
|
||||
//}
|
||||
//else
|
||||
// saveEnable = true;
|
||||
|
||||
if (saveEnable == true)
|
||||
{
|
||||
//if (saveEnable == true)
|
||||
//{
|
||||
this.labelLowLimitRange.Text = myKeyPad.StringValue;
|
||||
this.labelLowLimitRange1.Text = myKeyPad.StringValue;
|
||||
this.ParentForm.ParentForm.CurrentFeedbackItem.LowLimit = myKeyPad.StringValue.Replace(".", "");
|
||||
|
|
@ -649,8 +651,9 @@ namespace INT63DC_6CH.Controls
|
|||
this.ParentForm.ParentForm.Update30000ModbusData();
|
||||
this.ParentForm.ParentForm.ModbusCommonDataSend();
|
||||
|
||||
this.Clear();
|
||||
this.UpdateFeedbackDisplay(this.ParentForm.ParentForm.CurrentFeedbackItem, this.ParentForm.ParentForm.SystemConfig, this.ParentForm.ParentForm.CurrentProductItem);
|
||||
}
|
||||
//}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
namespace INT63DC_6CH.Controls
|
||||
{
|
||||
partial class ControlMainDisplayFeedbacak
|
||||
partial class ControlMainDisplayFeedback
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlMainDisplayFeedbacak));
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlMainDisplayFeedback));
|
||||
this.labelPassRange = new SmartX.SmartLabel();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.labelDeadZoneHighLimitRange = new SmartX.SmartLabel();
|
||||
|
|
@ -98,13 +98,13 @@
|
|||
this.labelPassRange.BackPictureBox2 = null;
|
||||
this.labelPassRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelPassRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelPassRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelPassRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelPassRange.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(6)))), ((int)(((byte)(163)))), ((int)(((byte)(23)))));
|
||||
this.labelPassRange.InitVisible = true;
|
||||
this.labelPassRange.LineSpacing = 0F;
|
||||
this.labelPassRange.Location = new System.Drawing.Point(898, 222);
|
||||
this.labelPassRange.Name = "labelPassRange";
|
||||
this.labelPassRange.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelPassRange.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelPassRange.TabIndex = 298;
|
||||
this.labelPassRange.Text = "9999";
|
||||
this.labelPassRange.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -126,13 +126,13 @@
|
|||
this.labelDeadZoneHighLimitRange.BackPictureBox2 = null;
|
||||
this.labelDeadZoneHighLimitRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelDeadZoneHighLimitRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelDeadZoneHighLimitRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelDeadZoneHighLimitRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelDeadZoneHighLimitRange.ForeColor = System.Drawing.Color.White;
|
||||
this.labelDeadZoneHighLimitRange.InitVisible = true;
|
||||
this.labelDeadZoneHighLimitRange.LineSpacing = 0F;
|
||||
this.labelDeadZoneHighLimitRange.Location = new System.Drawing.Point(898, 187);
|
||||
this.labelDeadZoneHighLimitRange.Name = "labelDeadZoneHighLimitRange";
|
||||
this.labelDeadZoneHighLimitRange.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelDeadZoneHighLimitRange.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelDeadZoneHighLimitRange.TabIndex = 297;
|
||||
this.labelDeadZoneHighLimitRange.Text = "9999";
|
||||
this.labelDeadZoneHighLimitRange.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -147,13 +147,13 @@
|
|||
this.labelOverRange.BackPictureBox2 = null;
|
||||
this.labelOverRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelOverRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelOverRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelOverRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelOverRange.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(7)))));
|
||||
this.labelOverRange.InitVisible = true;
|
||||
this.labelOverRange.LineSpacing = 0F;
|
||||
this.labelOverRange.Location = new System.Drawing.Point(898, 85);
|
||||
this.labelOverRange.Name = "labelOverRange";
|
||||
this.labelOverRange.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelOverRange.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelOverRange.TabIndex = 293;
|
||||
this.labelOverRange.Text = "9999";
|
||||
this.labelOverRange.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -168,13 +168,13 @@
|
|||
this.labelUnderRange.BackPictureBox2 = null;
|
||||
this.labelUnderRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelUnderRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelUnderRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelUnderRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelUnderRange.ForeColor = System.Drawing.Color.Red;
|
||||
this.labelUnderRange.InitVisible = true;
|
||||
this.labelUnderRange.LineSpacing = 0F;
|
||||
this.labelUnderRange.Location = new System.Drawing.Point(898, 392);
|
||||
this.labelUnderRange.Name = "labelUnderRange";
|
||||
this.labelUnderRange.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelUnderRange.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelUnderRange.TabIndex = 296;
|
||||
this.labelUnderRange.Text = "9999";
|
||||
this.labelUnderRange.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -189,7 +189,7 @@
|
|||
this.labelLowLimitRange.BackPictureBox2 = null;
|
||||
this.labelLowLimitRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelLowLimitRange.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLowLimitRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLowLimitRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLowLimitRange.InitVisible = true;
|
||||
this.labelLowLimitRange.LineSpacing = 0F;
|
||||
this.labelLowLimitRange.Location = new System.Drawing.Point(415, 365);
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
this.labelHighLimitRange.BackPictureBox2 = null;
|
||||
this.labelHighLimitRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelHighLimitRange.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelHighLimitRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelHighLimitRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelHighLimitRange.InitVisible = true;
|
||||
this.labelHighLimitRange.LineSpacing = 0F;
|
||||
this.labelHighLimitRange.Location = new System.Drawing.Point(157, 365);
|
||||
|
|
@ -231,12 +231,12 @@
|
|||
this.labelDeadZone.BackPictureBox2 = null;
|
||||
this.labelDeadZone.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelDeadZone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelDeadZone.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelDeadZone.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelDeadZone.InitVisible = true;
|
||||
this.labelDeadZone.LineSpacing = 0F;
|
||||
this.labelDeadZone.Location = new System.Drawing.Point(898, 244);
|
||||
this.labelDeadZone.Name = "labelDeadZone";
|
||||
this.labelDeadZone.Size = new System.Drawing.Size(90, 30);
|
||||
this.labelDeadZone.Size = new System.Drawing.Size(80, 30);
|
||||
this.labelDeadZone.TabIndex = 266;
|
||||
this.labelDeadZone.Text = "9999";
|
||||
this.labelDeadZone.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -252,7 +252,7 @@
|
|||
this.labelIgnorePackages.BackPictureBox2 = null;
|
||||
this.labelIgnorePackages.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelIgnorePackages.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnorePackages.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnorePackages.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnorePackages.InitVisible = true;
|
||||
this.labelIgnorePackages.LineSpacing = 0F;
|
||||
this.labelIgnorePackages.Location = new System.Drawing.Point(415, 401);
|
||||
|
|
@ -273,7 +273,7 @@
|
|||
this.smartLabel5.BackPictureBox2 = null;
|
||||
this.smartLabel5.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel5.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel5.InitVisible = true;
|
||||
this.smartLabel5.LineSpacing = 0F;
|
||||
|
|
@ -294,7 +294,7 @@
|
|||
this.labelSampleCount.BackPictureBox2 = null;
|
||||
this.labelSampleCount.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelSampleCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount.InitVisible = true;
|
||||
this.labelSampleCount.LineSpacing = 0F;
|
||||
this.labelSampleCount.Location = new System.Drawing.Point(157, 401);
|
||||
|
|
@ -315,7 +315,7 @@
|
|||
this.smartLabel2.BackPictureBox2 = null;
|
||||
this.smartLabel2.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel2.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel2.InitVisible = true;
|
||||
this.smartLabel2.LineSpacing = 0F;
|
||||
|
|
@ -336,7 +336,7 @@
|
|||
this.smartLabel1.BackPictureBox2 = null;
|
||||
this.smartLabel1.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel1.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel1.InitVisible = true;
|
||||
this.smartLabel1.LineSpacing = 0F;
|
||||
|
|
@ -357,7 +357,7 @@
|
|||
this.labelIgnoreCount.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelIgnoreCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelIgnoreCount.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount.InitVisible = true;
|
||||
this.labelIgnoreCount.LineSpacing = 0F;
|
||||
|
|
@ -378,7 +378,7 @@
|
|||
this.labelFeedbackWeight.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelFeedbackWeight.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelFeedbackWeight.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight.InitVisible = true;
|
||||
this.labelFeedbackWeight.LineSpacing = 0F;
|
||||
|
|
@ -399,7 +399,7 @@
|
|||
this.labelFeedbackWeight1.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight1.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelFeedbackWeight1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelFeedbackWeight1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight1.InitVisible = true;
|
||||
this.labelFeedbackWeight1.LineSpacing = 0F;
|
||||
|
|
@ -420,7 +420,7 @@
|
|||
this.labelIgnoreCount1.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount1.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelIgnoreCount1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnoreCount1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount1.InitVisible = true;
|
||||
this.labelIgnoreCount1.LineSpacing = 0F;
|
||||
|
|
@ -441,7 +441,7 @@
|
|||
this.labelSampleCount1.BackPictureBox2 = null;
|
||||
this.labelSampleCount1.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelSampleCount1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelSampleCount1.InitVisible = true;
|
||||
this.labelSampleCount1.LineSpacing = 0F;
|
||||
|
|
@ -462,7 +462,7 @@
|
|||
this.labelLane1.BackPictureBox2 = null;
|
||||
this.labelLane1.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelLane1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLane1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLane1.InitVisible = true;
|
||||
this.labelLane1.LineSpacing = 0F;
|
||||
|
|
@ -483,7 +483,7 @@
|
|||
this.smartLabel25.BackPictureBox2 = null;
|
||||
this.smartLabel25.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel25.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel25.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel25.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel25.InitVisible = true;
|
||||
this.smartLabel25.LineSpacing = 0F;
|
||||
|
|
@ -504,7 +504,7 @@
|
|||
this.labelLane2.BackPictureBox2 = null;
|
||||
this.labelLane2.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelLane2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLane2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane2.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLane2.InitVisible = true;
|
||||
this.labelLane2.LineSpacing = 0F;
|
||||
|
|
@ -525,7 +525,7 @@
|
|||
this.labelFeedbackWeight2.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight2.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelFeedbackWeight2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelFeedbackWeight2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight2.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight2.InitVisible = true;
|
||||
this.labelFeedbackWeight2.LineSpacing = 0F;
|
||||
|
|
@ -546,7 +546,7 @@
|
|||
this.labelIgnoreCount2.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount2.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelIgnoreCount2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnoreCount2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount2.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount2.InitVisible = true;
|
||||
this.labelIgnoreCount2.LineSpacing = 0F;
|
||||
|
|
@ -567,7 +567,7 @@
|
|||
this.labelSampleCount2.BackPictureBox2 = null;
|
||||
this.labelSampleCount2.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelSampleCount2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount2.ForeColor = System.Drawing.Color.White;
|
||||
this.labelSampleCount2.InitVisible = true;
|
||||
this.labelSampleCount2.LineSpacing = 0F;
|
||||
|
|
@ -588,7 +588,7 @@
|
|||
this.labelLane3.BackPictureBox2 = null;
|
||||
this.labelLane3.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelLane3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLane3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane3.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLane3.InitVisible = true;
|
||||
this.labelLane3.LineSpacing = 0F;
|
||||
|
|
@ -609,7 +609,7 @@
|
|||
this.labelFeedbackWeight3.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight3.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelFeedbackWeight3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelFeedbackWeight3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight3.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight3.InitVisible = true;
|
||||
this.labelFeedbackWeight3.LineSpacing = 0F;
|
||||
|
|
@ -630,7 +630,7 @@
|
|||
this.labelIgnoreCount3.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount3.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelIgnoreCount3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnoreCount3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount3.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount3.InitVisible = true;
|
||||
this.labelIgnoreCount3.LineSpacing = 0F;
|
||||
|
|
@ -651,7 +651,7 @@
|
|||
this.labelSampleCount3.BackPictureBox2 = null;
|
||||
this.labelSampleCount3.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelSampleCount3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount3.ForeColor = System.Drawing.Color.White;
|
||||
this.labelSampleCount3.InitVisible = true;
|
||||
this.labelSampleCount3.LineSpacing = 0F;
|
||||
|
|
@ -672,7 +672,7 @@
|
|||
this.labelSampleCount4.BackPictureBox2 = null;
|
||||
this.labelSampleCount4.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelSampleCount4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount4.ForeColor = System.Drawing.Color.White;
|
||||
this.labelSampleCount4.InitVisible = true;
|
||||
this.labelSampleCount4.LineSpacing = 0F;
|
||||
|
|
@ -693,7 +693,7 @@
|
|||
this.labelIgnoreCount4.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount4.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelIgnoreCount4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnoreCount4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount4.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount4.InitVisible = true;
|
||||
this.labelIgnoreCount4.LineSpacing = 0F;
|
||||
|
|
@ -714,7 +714,7 @@
|
|||
this.labelFeedbackWeight4.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight4.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelFeedbackWeight4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelFeedbackWeight4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight4.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight4.InitVisible = true;
|
||||
this.labelFeedbackWeight4.LineSpacing = 0F;
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
this.labelLane4.BackPictureBox2 = null;
|
||||
this.labelLane4.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelLane4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLane4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane4.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLane4.InitVisible = true;
|
||||
this.labelLane4.LineSpacing = 0F;
|
||||
|
|
@ -756,7 +756,7 @@
|
|||
this.labelSampleCount5.BackPictureBox2 = null;
|
||||
this.labelSampleCount5.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelSampleCount5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount5.ForeColor = System.Drawing.Color.White;
|
||||
this.labelSampleCount5.InitVisible = true;
|
||||
this.labelSampleCount5.LineSpacing = 0F;
|
||||
|
|
@ -777,7 +777,7 @@
|
|||
this.labelIgnoreCount5.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount5.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelIgnoreCount5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnoreCount5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount5.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount5.InitVisible = true;
|
||||
this.labelIgnoreCount5.LineSpacing = 0F;
|
||||
|
|
@ -798,7 +798,7 @@
|
|||
this.labelFeedbackWeight5.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight5.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelFeedbackWeight5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelFeedbackWeight5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight5.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight5.InitVisible = true;
|
||||
this.labelFeedbackWeight5.LineSpacing = 0F;
|
||||
|
|
@ -819,7 +819,7 @@
|
|||
this.labelLane5.BackPictureBox2 = null;
|
||||
this.labelLane5.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelLane5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLane5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane5.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLane5.InitVisible = true;
|
||||
this.labelLane5.LineSpacing = 0F;
|
||||
|
|
@ -840,7 +840,7 @@
|
|||
this.labelSampleCount6.BackPictureBox2 = null;
|
||||
this.labelSampleCount6.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelSampleCount6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelSampleCount6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelSampleCount6.ForeColor = System.Drawing.Color.White;
|
||||
this.labelSampleCount6.InitVisible = true;
|
||||
this.labelSampleCount6.LineSpacing = 0F;
|
||||
|
|
@ -861,7 +861,7 @@
|
|||
this.labelIgnoreCount6.BackPictureBox2 = null;
|
||||
this.labelIgnoreCount6.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelIgnoreCount6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelIgnoreCount6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelIgnoreCount6.ForeColor = System.Drawing.Color.White;
|
||||
this.labelIgnoreCount6.InitVisible = true;
|
||||
this.labelIgnoreCount6.LineSpacing = 0F;
|
||||
|
|
@ -882,7 +882,7 @@
|
|||
this.labelFeedbackWeight6.BackPictureBox2 = null;
|
||||
this.labelFeedbackWeight6.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelFeedbackWeight6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelFeedbackWeight6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelFeedbackWeight6.ForeColor = System.Drawing.Color.White;
|
||||
this.labelFeedbackWeight6.InitVisible = true;
|
||||
this.labelFeedbackWeight6.LineSpacing = 0F;
|
||||
|
|
@ -903,7 +903,7 @@
|
|||
this.labelLane6.BackPictureBox2 = null;
|
||||
this.labelLane6.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelLane6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelLane6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLane6.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLane6.InitVisible = true;
|
||||
this.labelLane6.LineSpacing = 0F;
|
||||
|
|
@ -924,7 +924,7 @@
|
|||
this.labelCurrentWeight6.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight6.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelCurrentWeight6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelCurrentWeight6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight6.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight6.InitVisible = true;
|
||||
this.labelCurrentWeight6.LineSpacing = 0F;
|
||||
|
|
@ -945,7 +945,7 @@
|
|||
this.labelCurrentWeight5.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight5.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelCurrentWeight5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelCurrentWeight5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight5.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight5.InitVisible = true;
|
||||
this.labelCurrentWeight5.LineSpacing = 0F;
|
||||
|
|
@ -966,7 +966,7 @@
|
|||
this.labelCurrentWeight4.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight4.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelCurrentWeight4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelCurrentWeight4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight4.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight4.InitVisible = true;
|
||||
this.labelCurrentWeight4.LineSpacing = 0F;
|
||||
|
|
@ -987,7 +987,7 @@
|
|||
this.labelCurrentWeight3.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight3.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelCurrentWeight3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelCurrentWeight3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight3.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight3.InitVisible = true;
|
||||
this.labelCurrentWeight3.LineSpacing = 0F;
|
||||
|
|
@ -1008,7 +1008,7 @@
|
|||
this.labelCurrentWeight2.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight2.BorderColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelCurrentWeight2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelCurrentWeight2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight2.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight2.InitVisible = true;
|
||||
this.labelCurrentWeight2.LineSpacing = 0F;
|
||||
|
|
@ -1029,7 +1029,7 @@
|
|||
this.labelCurrentWeight1.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight1.BorderColor = System.Drawing.Color.DimGray;
|
||||
this.labelCurrentWeight1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||
this.labelCurrentWeight1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight1.InitVisible = true;
|
||||
this.labelCurrentWeight1.LineSpacing = 0F;
|
||||
|
|
@ -1050,7 +1050,7 @@
|
|||
this.labelCurrentWeight.BackPictureBox2 = null;
|
||||
this.labelCurrentWeight.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelCurrentWeight.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelCurrentWeight.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelCurrentWeight.ForeColor = System.Drawing.Color.White;
|
||||
this.labelCurrentWeight.InitVisible = true;
|
||||
this.labelCurrentWeight.LineSpacing = 0F;
|
||||
|
|
@ -1071,12 +1071,12 @@
|
|||
this.smartLabel3.BackPictureBox2 = null;
|
||||
this.smartLabel3.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel3.InitVisible = true;
|
||||
this.smartLabel3.LineSpacing = 0F;
|
||||
this.smartLabel3.Location = new System.Drawing.Point(899, 246);
|
||||
this.smartLabel3.Name = "smartLabel3";
|
||||
this.smartLabel3.Size = new System.Drawing.Size(30, 26);
|
||||
this.smartLabel3.Size = new System.Drawing.Size(20, 26);
|
||||
this.smartLabel3.TabIndex = 332;
|
||||
this.smartLabel3.Text = "±";
|
||||
this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
|
|
@ -1092,13 +1092,13 @@
|
|||
this.labelDeadZoneLowLimitRange.BackPictureBox2 = null;
|
||||
this.labelDeadZoneLowLimitRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelDeadZoneLowLimitRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelDeadZoneLowLimitRange.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelDeadZoneLowLimitRange.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelDeadZoneLowLimitRange.ForeColor = System.Drawing.Color.White;
|
||||
this.labelDeadZoneLowLimitRange.InitVisible = true;
|
||||
this.labelDeadZoneLowLimitRange.LineSpacing = 0F;
|
||||
this.labelDeadZoneLowLimitRange.Location = new System.Drawing.Point(898, 288);
|
||||
this.labelDeadZoneLowLimitRange.Name = "labelDeadZoneLowLimitRange";
|
||||
this.labelDeadZoneLowLimitRange.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelDeadZoneLowLimitRange.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelDeadZoneLowLimitRange.TabIndex = 336;
|
||||
this.labelDeadZoneLowLimitRange.Text = "9999";
|
||||
this.labelDeadZoneLowLimitRange.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -1120,7 +1120,7 @@
|
|||
this.smartLabel8.BackPictureBox2 = null;
|
||||
this.smartLabel8.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel8.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel8.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel8.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel8.InitVisible = true;
|
||||
this.smartLabel8.LineSpacing = 0F;
|
||||
|
|
@ -1141,7 +1141,7 @@
|
|||
this.smartLabel10.BackPictureBox2 = null;
|
||||
this.smartLabel10.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel10.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel10.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel10.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel10.InitVisible = true;
|
||||
this.smartLabel10.LineSpacing = 0F;
|
||||
|
|
@ -1162,7 +1162,7 @@
|
|||
this.smartLabel12.BackPictureBox2 = null;
|
||||
this.smartLabel12.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel12.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel12.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel12.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel12.InitVisible = true;
|
||||
this.smartLabel12.LineSpacing = 0F;
|
||||
|
|
@ -1183,7 +1183,7 @@
|
|||
this.smartLabel13.BackPictureBox2 = null;
|
||||
this.smartLabel13.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel13.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel13.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.smartLabel13.ForeColor = System.Drawing.Color.White;
|
||||
this.smartLabel13.InitVisible = true;
|
||||
this.smartLabel13.LineSpacing = 0F;
|
||||
|
|
@ -1204,13 +1204,13 @@
|
|||
this.labelLowLimitRange1.BackPictureBox2 = null;
|
||||
this.labelLowLimitRange1.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelLowLimitRange1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelLowLimitRange1.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLowLimitRange1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelLowLimitRange1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelLowLimitRange1.InitVisible = true;
|
||||
this.labelLowLimitRange1.LineSpacing = 0F;
|
||||
this.labelLowLimitRange1.Location = new System.Drawing.Point(898, 353);
|
||||
this.labelLowLimitRange1.Name = "labelLowLimitRange1";
|
||||
this.labelLowLimitRange1.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelLowLimitRange1.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelLowLimitRange1.TabIndex = 344;
|
||||
this.labelLowLimitRange1.Text = "9999";
|
||||
this.labelLowLimitRange1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -1225,13 +1225,13 @@
|
|||
this.labelHighLimitRange1.BackPictureBox2 = null;
|
||||
this.labelHighLimitRange1.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelHighLimitRange1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelHighLimitRange1.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelHighLimitRange1.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelHighLimitRange1.ForeColor = System.Drawing.Color.White;
|
||||
this.labelHighLimitRange1.InitVisible = true;
|
||||
this.labelHighLimitRange1.LineSpacing = 0F;
|
||||
this.labelHighLimitRange1.Location = new System.Drawing.Point(898, 123);
|
||||
this.labelHighLimitRange1.Name = "labelHighLimitRange1";
|
||||
this.labelHighLimitRange1.Size = new System.Drawing.Size(90, 20);
|
||||
this.labelHighLimitRange1.Size = new System.Drawing.Size(80, 20);
|
||||
this.labelHighLimitRange1.TabIndex = 342;
|
||||
this.labelHighLimitRange1.Text = "9999";
|
||||
this.labelHighLimitRange1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
|
|
@ -1262,7 +1262,7 @@
|
|||
this.pictureBoxFeedback4.Size = new System.Drawing.Size(325, 340);
|
||||
this.pictureBoxFeedback4.Visible = false;
|
||||
//
|
||||
// ControlMainDisplayFeedbacak
|
||||
// ControlMainDisplayFeedback
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
|
|
@ -1326,7 +1326,7 @@
|
|||
this.Controls.Add(this.labelOverRange);
|
||||
this.Controls.Add(this.labelUnderRange);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.Name = "ControlMainDisplayFeedbacak";
|
||||
this.Name = "ControlMainDisplayFeedback";
|
||||
this.Size = new System.Drawing.Size(1024, 485);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -302,31 +302,50 @@ namespace INT63DC_6CH
|
|||
|
||||
public enum _30000_ModbusAddress
|
||||
{
|
||||
UnderRange_High = 1010,
|
||||
UnderRange_Low = 1011,
|
||||
PassRange_High = 1012,
|
||||
PassRange_Low = 1013,
|
||||
OverRange_High = 1014,
|
||||
OverRange_Low = 1015,
|
||||
TareRange_High = 1016,
|
||||
TareRange_Low = 1017,
|
||||
HighLimit_High = 1018,
|
||||
HighLimit_Low = 1019,
|
||||
DeadZoneHighLimit_High = 1020,
|
||||
DeadZoneHighLimit_Low = 1021,
|
||||
DeadZoneLowLimit_High = 1022,
|
||||
DeadZoneLowLimit_Low = 1023,
|
||||
LowLimit_High = 1024,
|
||||
LowLimit_Low = 1025,
|
||||
DecimalPoint = 0,
|
||||
Operation_High = 40,
|
||||
Operation_Low = 41,
|
||||
UnderRange_High_Float = 1010,
|
||||
UnderRange_Low_Float = 1011,
|
||||
PassRange_High_Float = 1012,
|
||||
PassRange_Low_Float = 1013,
|
||||
OverRange_High_Float = 1014,
|
||||
OverRange_Low_Float = 1015,
|
||||
TareRange_High_Float = 1016,
|
||||
TareRange_Low_Float = 1017,
|
||||
HighLimit_High_Float = 1018,
|
||||
HighLimit_Low_Float = 1019,
|
||||
DeadZoneHighLimit_High_Float = 1020,
|
||||
DeadZoneHighLimit_Low_Float = 1021,
|
||||
DeadZoneLowLimit_High_Float = 1022,
|
||||
DeadZoneLowLimit_Low_Float = 1023,
|
||||
LowLimit_High_Float = 1024,
|
||||
LowLimit_Low_Float = 1025,
|
||||
SampleCount_High = 1026,
|
||||
SampleCount_Low = 1027,
|
||||
IgnoreCount_High = 1028,
|
||||
IgnoreCount_Low = 1029,
|
||||
UnderRange_High_Int = 1030,
|
||||
UnderRange_Low_Int = 1031,
|
||||
PassRange_High_Int = 1032,
|
||||
PassRange_Low_Int = 1033,
|
||||
OverRange_High_Int = 1034,
|
||||
OverRange_Low_Int = 1035,
|
||||
TareRange_High_Int = 1036,
|
||||
TareRange_Low_Int = 1037,
|
||||
HighLimit_High_Int = 1038,
|
||||
HighLimit_Low_Int = 1039,
|
||||
DeadZoneHighLimit_High_Int = 1040,
|
||||
DeadZoneHighLimit_Low_Int = 1041,
|
||||
DeadZoneLowLimit_High_Int = 1042,
|
||||
DeadZoneLowLimit_Low_Int = 1043,
|
||||
LowLimit_High_Int = 1044,
|
||||
LowLimit_Low_Int = 1045,
|
||||
|
||||
_1_Update = 1200,
|
||||
_1_Grade = 1201,
|
||||
_1_Weight_High = 1202,
|
||||
_1_Weight_Low = 1203,
|
||||
_1_Weight_High_Float = 1202,
|
||||
_1_Weight_Low_Float = 1203,
|
||||
_1_UnderCount_High = 1204,
|
||||
_1_UnderCount_Low = 1205,
|
||||
_1_PassCount_High = 1206,
|
||||
|
|
@ -339,11 +358,18 @@ namespace INT63DC_6CH
|
|||
_1_ExNgCount_Low = 1213,
|
||||
_1_TotalCount_High = 1214,
|
||||
_1_TotalCount_Low = 1215,
|
||||
_1_FeedbackWeight_High_Float = 1216,
|
||||
_1_FeedbackWeight_Low_Float = 1217,
|
||||
_1_FeedbackWeight_High_Int = 1218,
|
||||
_1_FeedbackWeight_Low_Int = 1219,
|
||||
_1_Weight_High_Int = 1220,
|
||||
_1_Weight_Low_Int = 1221,
|
||||
_1_UpdateFeedbackData = 1222,
|
||||
|
||||
_2_Update = 1250,
|
||||
_2_Grade = 1251,
|
||||
_2_Weight_High = 1252,
|
||||
_2_Weight_Low = 1253,
|
||||
_2_Weight_High_Float = 1252,
|
||||
_2_Weight_Low_Float = 1253,
|
||||
_2_UnderCount_High = 1254,
|
||||
_2_UnderCount_Low = 1255,
|
||||
_2_PassCount_High = 1256,
|
||||
|
|
@ -356,11 +382,18 @@ namespace INT63DC_6CH
|
|||
_2_ExNgCount_Low = 1263,
|
||||
_2_TotalCount_High = 1264,
|
||||
_2_TotalCount_Low = 1265,
|
||||
_2_FeedbackWeight_High_Float = 1266,
|
||||
_2_FeedbackWeight_Low_Float = 1267,
|
||||
_2_FeedbackWeight_High_Int = 1268,
|
||||
_2_FeedbackWeight_Low_Int = 1269,
|
||||
_2_Weight_High_Int = 1270,
|
||||
_2_Weight_Low_Int = 1271,
|
||||
_2_UpdateFeedbackData = 1272,
|
||||
|
||||
_3_Update = 1300,
|
||||
_3_Grade = 1301,
|
||||
_3_Weight_High = 1302,
|
||||
_3_Weight_Low = 1303,
|
||||
_3_Weight_High_Float = 1302,
|
||||
_3_Weight_Low_Float = 1303,
|
||||
_3_UnderCount_High = 1304,
|
||||
_3_UnderCount_Low = 1305,
|
||||
_3_PassCount_High = 1306,
|
||||
|
|
@ -373,11 +406,18 @@ namespace INT63DC_6CH
|
|||
_3_ExNgCount_Low = 1313,
|
||||
_3_TotalCount_High = 1314,
|
||||
_3_TotalCount_Low = 1315,
|
||||
_3_FeedbackWeight_High_Float = 1316,
|
||||
_3_FeedbackWeight_Low_Float = 1317,
|
||||
_3_FeedbackWeight_High_Int = 1318,
|
||||
_3_FeedbackWeight_Low_Int = 1319,
|
||||
_3_Weight_High_Int = 1320,
|
||||
_3_Weight_Low_Int = 1321,
|
||||
_3_UpdateFeedbackData = 1322,
|
||||
|
||||
_4_Update = 1350,
|
||||
_4_Grade = 1351,
|
||||
_4_Weight_High = 1352,
|
||||
_4_Weight_Low = 1353,
|
||||
_4_Weight_High_Float = 1352,
|
||||
_4_Weight_Low_Float = 1353,
|
||||
_4_UnderCount_High = 1354,
|
||||
_4_UnderCount_Low = 1355,
|
||||
_4_PassCount_High = 1356,
|
||||
|
|
@ -390,11 +430,18 @@ namespace INT63DC_6CH
|
|||
_4_ExNgCount_Low = 1363,
|
||||
_4_TotalCount_High = 1364,
|
||||
_4_TotalCount_Low = 1365,
|
||||
_4_FeedbackWeight_High_Float = 1366,
|
||||
_4_FeedbackWeight_Low_Float = 1367,
|
||||
_4_FeedbackWeight_High_Int = 1368,
|
||||
_4_FeedbackWeight_Low_Int = 1369,
|
||||
_4_Weight_High_Int = 1370,
|
||||
_4_Weight_Low_Int = 1371,
|
||||
_4_UpdateFeedbackData = 1372,
|
||||
|
||||
_5_Update = 1400,
|
||||
_5_Grade = 1401,
|
||||
_5_Weight_High = 1402,
|
||||
_5_Weight_Low = 1403,
|
||||
_5_Weight_High_Float = 1402,
|
||||
_5_Weight_Low_Float = 1403,
|
||||
_5_UnderCount_High = 1404,
|
||||
_5_UnderCount_Low = 1405,
|
||||
_5_PassCount_High = 1406,
|
||||
|
|
@ -407,11 +454,18 @@ namespace INT63DC_6CH
|
|||
_5_ExNgCount_Low = 1413,
|
||||
_5_TotalCount_High = 1414,
|
||||
_5_TotalCount_Low = 1415,
|
||||
_5_FeedbackWeight_High_Float = 1416,
|
||||
_5_FeedbackWeight_Low_Float = 1417,
|
||||
_5_FeedbackWeight_High_Int = 1418,
|
||||
_5_FeedbackWeight_Low_Int = 1419,
|
||||
_5_Weight_High_Int = 1420,
|
||||
_5_Weight_Low_Int = 1421,
|
||||
_5_UpdateFeedbackData = 1422,
|
||||
|
||||
_6_Update = 1450,
|
||||
_6_Grade = 1451,
|
||||
_6_Weight_High = 1452,
|
||||
_6_Weight_Low = 1453,
|
||||
_6_Weight_High_Float = 1452,
|
||||
_6_Weight_Low_Float = 1453,
|
||||
_6_UnderCount_High = 1454,
|
||||
_6_UnderCount_Low = 1455,
|
||||
_6_PassCount_High = 1456,
|
||||
|
|
@ -424,11 +478,18 @@ namespace INT63DC_6CH
|
|||
_6_ExNgCount_Low = 1463,
|
||||
_6_TotalCount_High = 1464,
|
||||
_6_TotalCount_Low = 1465,
|
||||
_6_FeedbackWeight_High_Float = 1466,
|
||||
_6_FeedbackWeight_Low_Float = 1467,
|
||||
_6_FeedbackWeight_High_Int = 1468,
|
||||
_6_FeedbackWeight_Low_Int = 1469,
|
||||
_6_Weight_High_Int = 1470,
|
||||
_6_Weight_Low_Int = 1471,
|
||||
_6_UpdateFeedbackData = 1472,
|
||||
|
||||
_7_Update = 1500,
|
||||
_7_Grade = 1501,
|
||||
_7_Weight_High = 1502,
|
||||
_7_Weight_Low = 1503,
|
||||
_7_Weight_High_Float = 1502,
|
||||
_7_Weight_Low_Float = 1503,
|
||||
_7_UnderCount_High = 1504,
|
||||
_7_UnderCount_Low = 1505,
|
||||
_7_PassCount_High = 1506,
|
||||
|
|
@ -441,11 +502,18 @@ namespace INT63DC_6CH
|
|||
_7_ExNgCount_Low = 1513,
|
||||
_7_TotalCount_High = 1514,
|
||||
_7_TotalCount_Low = 1515,
|
||||
_7_FeedbackWeight_High_Float = 1516,
|
||||
_7_FeedbackWeight_Low_Float = 1517,
|
||||
_7_FeedbackWeight_High_Int = 1518,
|
||||
_7_FeedbackWeight_Low_Int = 1519,
|
||||
_7_Weight_High_Int = 1520,
|
||||
_7_Weight_Low_Int = 1521,
|
||||
_7_UpdateFeedbackData = 1522,
|
||||
|
||||
_8_Update = 1550,
|
||||
_8_Grade = 1551,
|
||||
_8_Weight_High = 1552,
|
||||
_8_Weight_Low = 1553,
|
||||
_8_Weight_High_Float = 1552,
|
||||
_8_Weight_Low_Float = 1553,
|
||||
_8_UnderCount_High = 1554,
|
||||
_8_UnderCount_Low = 1555,
|
||||
_8_PassCount_High = 1556,
|
||||
|
|
@ -458,11 +526,18 @@ namespace INT63DC_6CH
|
|||
_8_ExNgCount_Low = 1563,
|
||||
_8_TotalCount_High = 1564,
|
||||
_8_TotalCount_Low = 1565,
|
||||
_8_FeedbackWeight_High_Float = 1566,
|
||||
_8_FeedbackWeight_Low_Float = 1567,
|
||||
_8_FeedbackWeight_High_Int = 1568,
|
||||
_8_FeedbackWeight_Low_Int = 1569,
|
||||
_8_Weight_High_Int = 1570,
|
||||
_8_Weight_Low_Int = 1571,
|
||||
_8_UpdateFeedbackData = 1572,
|
||||
|
||||
_9_Update = 1600,
|
||||
_9_Grade = 1601,
|
||||
_9_Weight_High = 1602,
|
||||
_9_Weight_Low = 1603,
|
||||
_9_Weight_High_Float = 1602,
|
||||
_9_Weight_Low_Float = 1603,
|
||||
_9_UnderCount_High = 1604,
|
||||
_9_UnderCount_Low = 1605,
|
||||
_9_PassCount_High = 1606,
|
||||
|
|
@ -475,11 +550,18 @@ namespace INT63DC_6CH
|
|||
_9_ExNgCount_Low = 1613,
|
||||
_9_TotalCount_High = 1614,
|
||||
_9_TotalCount_Low = 1615,
|
||||
_9_FeedbackWeight_High_Float = 1616,
|
||||
_9_FeedbackWeight_Low_Float = 1617,
|
||||
_9_FeedbackWeight_High_Int = 1618,
|
||||
_9_FeedbackWeight_Low_Int = 1619,
|
||||
_9_Weight_High_Int = 1620,
|
||||
_9_Weight_Low_Int = 1621,
|
||||
_9_UpdateFeedbackData = 1622,
|
||||
|
||||
_10_Update = 1650,
|
||||
_10_Grade = 1651,
|
||||
_10_Weight_High = 1652,
|
||||
_10_Weight_Low = 1653,
|
||||
_10_Weight_High_Float = 1652,
|
||||
_10_Weight_Low_Float = 1653,
|
||||
_10_UnderCount_High = 1654,
|
||||
_10_UnderCount_Low = 1655,
|
||||
_10_PassCount_High = 1656,
|
||||
|
|
@ -492,11 +574,18 @@ namespace INT63DC_6CH
|
|||
_10_ExNgCount_Low = 1663,
|
||||
_10_TotalCount_High = 1664,
|
||||
_10_TotalCount_Low = 1665,
|
||||
_10_FeedbackWeight_High_Float = 1666,
|
||||
_10_FeedbackWeight_Low_Float = 1667,
|
||||
_10_FeedbackWeight_High_Int = 1668,
|
||||
_10_FeedbackWeight_Low_Int = 1669,
|
||||
_10_Weight_High_Int = 1670,
|
||||
_10_Weight_Low_Int = 1671,
|
||||
_10_UpdateFeedbackData = 1672,
|
||||
|
||||
_11_Update = 1700,
|
||||
_11_Grade = 1701,
|
||||
_11_Weight_High = 1702,
|
||||
_11_Weight_Low = 1703,
|
||||
_11_Weight_High_Float = 1702,
|
||||
_11_Weight_Low_Float = 1703,
|
||||
_11_UnderCount_High = 1704,
|
||||
_11_UnderCount_Low = 1705,
|
||||
_11_PassCount_High = 1706,
|
||||
|
|
@ -509,11 +598,18 @@ namespace INT63DC_6CH
|
|||
_11_ExNgCount_Low = 1713,
|
||||
_11_TotalCount_High = 1714,
|
||||
_11_TotalCount_Low = 1715,
|
||||
_11_FeedbackWeight_High_Float = 1716,
|
||||
_11_FeedbackWeight_Low_Float = 1717,
|
||||
_11_FeedbackWeight_High_Int = 1718,
|
||||
_11_FeedbackWeight_Low_Int = 1719,
|
||||
_11_Weight_High_Int = 1720,
|
||||
_11_Weight_Low_Int = 1721,
|
||||
_11_UpdateFeedbackData = 1722,
|
||||
|
||||
_12_Update = 1750,
|
||||
_12_Grade = 1751,
|
||||
_12_Weight_High = 1752,
|
||||
_12_Weight_Low = 1753,
|
||||
_12_Weight_High_Float = 1752,
|
||||
_12_Weight_Low_Float = 1753,
|
||||
_12_UnderCount_High = 1754,
|
||||
_12_UnderCount_Low = 1755,
|
||||
_12_PassCount_High = 1756,
|
||||
|
|
@ -526,6 +622,13 @@ namespace INT63DC_6CH
|
|||
_12_ExNgCount_Low = 1763,
|
||||
_12_TotalCount_High = 1764,
|
||||
_12_TotalCount_Low = 1765,
|
||||
_12_FeedbackWeight_High_Float = 1766,
|
||||
_12_FeedbackWeight_Low_Float = 1767,
|
||||
_12_FeedbackWeight_High_Int = 1768,
|
||||
_12_FeedbackWeight_Low_Int = 1769,
|
||||
_12_Weight_High_Int = 1770,
|
||||
_12_Weight_Low_Int = 1771,
|
||||
_12_UpdateFeedbackData = 1772,
|
||||
};
|
||||
#endregion
|
||||
}
|
||||
|
|
@ -1290,7 +1393,7 @@ namespace INT63DC_6CH
|
|||
|
||||
this.Unit = "g";
|
||||
this.EmptyWeight = "0";
|
||||
this.SerialNumber = "25H0000";
|
||||
this.SerialNumber = "26A0000";
|
||||
this.User_Level1_Name = "Level 1";
|
||||
this.User_Level2_Name = "Level 2";
|
||||
this.User_Level3_Name = "Level 3";
|
||||
|
|
@ -3196,6 +3299,8 @@ namespace INT63DC_6CH
|
|||
public class _30000_ModbusData
|
||||
{
|
||||
#region Field
|
||||
private short m_DecimalPoint;
|
||||
private int m_OperationStatus;
|
||||
private double m_UnderValue;
|
||||
private double m_PassValue;
|
||||
private double m_OverValue;
|
||||
|
|
@ -3207,7 +3312,7 @@ namespace INT63DC_6CH
|
|||
private UInt32 m_SampleCount;
|
||||
private UInt32 m_IgnoreCount;
|
||||
|
||||
private Collection<_30000_LaneModbusData> m_LaneModbusData;
|
||||
private Collection<_30000_LaneModbusData> m_ModbusLaneData;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
|
|
@ -3218,6 +3323,16 @@ namespace INT63DC_6CH
|
|||
#endregion
|
||||
|
||||
#region Property
|
||||
public short DecimalPoint
|
||||
{
|
||||
get { return this.m_DecimalPoint; }
|
||||
set { this.m_DecimalPoint = value; }
|
||||
}
|
||||
public int OperationStatus
|
||||
{
|
||||
get { return this.m_OperationStatus; }
|
||||
set { this.m_OperationStatus = value; }
|
||||
}
|
||||
public double UnderValue
|
||||
{
|
||||
get { return this.m_UnderValue; }
|
||||
|
|
@ -3269,16 +3384,18 @@ namespace INT63DC_6CH
|
|||
set { this.m_IgnoreCount = value; }
|
||||
}
|
||||
|
||||
public Collection<_30000_LaneModbusData> LaneModbusData
|
||||
public Collection<_30000_LaneModbusData> ModbusLaneData
|
||||
{
|
||||
get { return this.m_LaneModbusData; }
|
||||
set { this.m_LaneModbusData = value; }
|
||||
get { return this.m_ModbusLaneData; }
|
||||
set { this.m_ModbusLaneData = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
public void Initialization()
|
||||
{
|
||||
this.DecimalPoint = 1;
|
||||
this.OperationStatus = 0;
|
||||
this.UnderValue = 100.0;
|
||||
this.PassValue = 200.0;
|
||||
this.OverValue = 300.0;
|
||||
|
|
@ -3287,14 +3404,14 @@ namespace INT63DC_6CH
|
|||
this.DeadZoneHighLimit = 0.0;
|
||||
this.DeadZoneLowLimit = 0.0;
|
||||
this.LowLimit = 100.0;
|
||||
this.SampleCount = 0;
|
||||
this.IgnoreCount = 0;
|
||||
this.SampleCount = 10;
|
||||
this.IgnoreCount = 5;
|
||||
|
||||
this.LaneModbusData = new Collection<_30000_LaneModbusData>();
|
||||
this.LaneModbusData.Clear();
|
||||
this.ModbusLaneData = new Collection<_30000_LaneModbusData>();
|
||||
this.ModbusLaneData.Clear();
|
||||
|
||||
for (int i = 0; i < 12; i++)
|
||||
this.LaneModbusData.Add(new _30000_LaneModbusData());
|
||||
this.ModbusLaneData.Add(new _30000_LaneModbusData());
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
@ -3303,11 +3420,15 @@ namespace INT63DC_6CH
|
|||
#region Field
|
||||
private ushort m_Update;
|
||||
private ushort m_Grade;
|
||||
private double m_Weight;
|
||||
private double m_WeightDouble;
|
||||
private UInt32 m_UnderCount;
|
||||
private UInt32 m_PassCount;
|
||||
private UInt32 m_OverCount;
|
||||
private UInt32 m_ExNGCount;
|
||||
private double m_FeedbackWeightDouble;
|
||||
private int m_FeedbackWeightInt;
|
||||
private int m_WeightInt;
|
||||
private ushort m_UpdateFeedbackData;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
|
|
@ -3328,10 +3449,10 @@ namespace INT63DC_6CH
|
|||
get { return this.m_Grade; }
|
||||
set { this.m_Grade = value; }
|
||||
}
|
||||
public double Weight
|
||||
public double WeightDouble
|
||||
{
|
||||
get { return this.m_Weight; }
|
||||
set { this.m_Weight = value; }
|
||||
get { return this.m_WeightDouble; }
|
||||
set { this.m_WeightDouble = value; }
|
||||
}
|
||||
public UInt32 UnderCount
|
||||
{
|
||||
|
|
@ -3361,6 +3482,24 @@ namespace INT63DC_6CH
|
|||
{
|
||||
get { return this.m_UnderCount + this.m_PassCount + this.m_OverCount + this.m_ExNGCount; }
|
||||
}
|
||||
public double FeedbackWeightDouble
|
||||
{
|
||||
get { return this.m_FeedbackWeightDouble; }
|
||||
set { this.m_FeedbackWeightDouble = value; }
|
||||
}
|
||||
public int FeedbackWeightInt
|
||||
{
|
||||
get { return int.Parse((this.FeedbackWeightDouble.ToString()).Replace(".", "")); }
|
||||
}
|
||||
public int WeightInt
|
||||
{
|
||||
get { return int.Parse((this.WeightDouble.ToString()).Replace(".", "")); }
|
||||
}
|
||||
public ushort UpdateFeedbackData
|
||||
{
|
||||
get { return this.m_UpdateFeedbackData; }
|
||||
set { this.m_UpdateFeedbackData = value; }
|
||||
}
|
||||
|
||||
public string HexStringUpdate
|
||||
{
|
||||
|
|
@ -3378,11 +3517,11 @@ namespace INT63DC_6CH
|
|||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringWeight
|
||||
public string HexStringWeightDouble
|
||||
{
|
||||
get
|
||||
{
|
||||
byte[] bytes = BitConverter.GetBytes((float)this.Weight);
|
||||
byte[] bytes = BitConverter.GetBytes((float)this.WeightDouble);
|
||||
Array.Reverse(bytes);
|
||||
string hexString = BitConverter.ToString(bytes);
|
||||
hexString = hexString.Replace("-", "");
|
||||
|
|
@ -3390,6 +3529,14 @@ namespace INT63DC_6CH
|
|||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringUnderCount
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.UnderCount.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringPassCount
|
||||
{
|
||||
get
|
||||
|
|
@ -3398,6 +3545,22 @@ namespace INT63DC_6CH
|
|||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringOverCount
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.OverCount.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringExNGCount
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.ExNGCount.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringNGCount
|
||||
{
|
||||
get
|
||||
|
|
@ -3406,6 +3569,50 @@ namespace INT63DC_6CH
|
|||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringTotalCount
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.TotalCount.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringFeedbackWeightDouble
|
||||
{
|
||||
get
|
||||
{
|
||||
byte[] bytes = BitConverter.GetBytes((float)this.FeedbackWeightDouble);
|
||||
Array.Reverse(bytes);
|
||||
string hexString = BitConverter.ToString(bytes);
|
||||
hexString = hexString.Replace("-", "");
|
||||
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringFeedbackWeigntInt
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.FeedbackWeightInt.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringWeightInt
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.WeightInt.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
public string HexStringUpdateFeedbackData
|
||||
{
|
||||
get
|
||||
{
|
||||
string hexString = this.UpdateFeedbackData.ToString("X8");
|
||||
return hexString;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
|
|
@ -3413,11 +3620,13 @@ namespace INT63DC_6CH
|
|||
{
|
||||
this.Update = 0;
|
||||
this.Grade = 0;
|
||||
this.Weight = 0.0;
|
||||
this.WeightDouble = 0.0;
|
||||
this.UnderCount = 0;
|
||||
this.PassCount = 0;
|
||||
this.OverCount = 0;
|
||||
this.ExNGCount = 0;
|
||||
this.FeedbackWeightDouble = 0.0;
|
||||
this.UpdateFeedbackData = 0;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
@ -3901,6 +4110,8 @@ namespace INT63DC_6CH
|
|||
private DataStore.FeedbackStatus m_Status;
|
||||
|
||||
private Collection<int> m_WeightList;
|
||||
|
||||
private int m_UpdateFeedbackData;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
|
|
@ -3955,6 +4166,13 @@ namespace INT63DC_6CH
|
|||
get { return this.m_WeightList; }
|
||||
private set { this.m_WeightList = value; }
|
||||
}
|
||||
|
||||
public int UpdateFeedbackData
|
||||
{
|
||||
get { return this.m_UpdateFeedbackData; }
|
||||
set { this.m_UpdateFeedbackData = value; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
|
|
@ -3967,6 +4185,7 @@ namespace INT63DC_6CH
|
|||
this.IgnoreCount = 0;
|
||||
this.FeedbackWeight = 0.0;
|
||||
this.Status = DataStore.FeedbackStatus.None;
|
||||
this.UpdateFeedbackData = 0;
|
||||
}
|
||||
|
||||
public void SetWeight(int weight, DataStore.FeedbackStatus status)
|
||||
|
|
@ -3992,6 +4211,7 @@ namespace INT63DC_6CH
|
|||
{
|
||||
this.ClearData();
|
||||
|
||||
this.UpdateFeedbackData = 0;
|
||||
this.FeedbackWeight = 0.0;
|
||||
}
|
||||
#endregion
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@
|
|||
//
|
||||
// treeView1
|
||||
//
|
||||
this.treeView1.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.treeView1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.treeView1.Location = new System.Drawing.Point(12, 12);
|
||||
this.treeView1.Name = "treeView1";
|
||||
this.treeView1.Size = new System.Drawing.Size(219, 445);
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@
|
|||
//
|
||||
// treeView
|
||||
//
|
||||
this.treeView.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.treeView.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.treeView.Location = new System.Drawing.Point(12, 12);
|
||||
this.treeView.Name = "treeView";
|
||||
this.treeView.Size = new System.Drawing.Size(219, 445);
|
||||
|
|
|
|||
|
|
@ -165,31 +165,42 @@
|
|||
RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP
|
||||
lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l
|
||||
f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAABXRJREFUeF7t1EENgDAA
|
||||
BMEqqacqxE118SsJrANmcq8TsGNd28zstfG9zMykwcxiTxom8HvSAARpAII0AEEagCANQJAGIEgDEKQB
|
||||
CNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCAN
|
||||
QJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARp
|
||||
AII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBI
|
||||
AxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABB
|
||||
GoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI
|
||||
0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1A
|
||||
kAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkA
|
||||
gjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgD
|
||||
EKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEa
|
||||
gCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjS
|
||||
AARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQ
|
||||
BiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCC
|
||||
NABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQ
|
||||
pAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqA
|
||||
IA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIA
|
||||
BGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAG
|
||||
IEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0
|
||||
AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCk
|
||||
AQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAEaQCCNABBGoAg
|
||||
DUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYgSAMQpAEI0gAE
|
||||
aQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDEKQBCNIABGkAgjQAQRqAIA1AkAYg
|
||||
SAMQpAEI0gAEaQCCNABBGoAgDUCQBiBIAxCkAQjSAARpAII0AEEagCANQJAGIEgDECINZmZn0mBmMWkw
|
||||
s9gNlS3l7teKckgAAAAASUVORK5CYII=
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAACCtJREFUeF7t1EENwlAA
|
||||
BUGU4AmFdVNd3N4m5TtgJqthX5/rlqRH1iDpkDVIOtQa3sDf2xCsAciGYA1ANgRrALIhWAOQDcEagGwI
|
||||
1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCy
|
||||
IVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwB
|
||||
yIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOw
|
||||
BiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5AN
|
||||
wRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1A
|
||||
NgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1
|
||||
ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI
|
||||
1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCy
|
||||
IVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwB
|
||||
yIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOw
|
||||
BiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5AN
|
||||
wRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1A
|
||||
NgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1
|
||||
ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI
|
||||
1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCy
|
||||
IVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwB
|
||||
yIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOw
|
||||
BiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5AN
|
||||
wRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1A
|
||||
NgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1
|
||||
ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI
|
||||
1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCy
|
||||
IVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwB
|
||||
yIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOw
|
||||
BiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5AN
|
||||
wRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1A
|
||||
NgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1
|
||||
ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI
|
||||
1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCy
|
||||
IVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwB
|
||||
yIZgDUA2BGsAsiFYA5ANwRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOw
|
||||
BiAbgjUA2RCsAciGYA1ANgRrALIhWAOQDcEagGwI1gBkQ7AGIBuCNQDZEKwByIZgDUA2BGsAsiFYA5AN
|
||||
wRqAbAjWAGRDsAYgG4I1ANkQrAHIhmANQDYEawCyIVgDkA3BGoBsCNYAZEOwBiAbgjUA2RCsAciGYA1A
|
||||
NgRrALIhWAOQDcEagGwI1gBkQ7AGIBtCa5CkZQ2SDlmDpJ+u+wuVLeXultOGrgAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonRead.DownImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -239,54 +250,50 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonRead.UpImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -336,28 +343,25 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonClose.DownImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -407,54 +411,50 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonClose.UpImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -504,28 +504,25 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@
|
|||
// treeViewInspection
|
||||
//
|
||||
this.treeViewInspection.CheckBoxes = true;
|
||||
this.treeViewInspection.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.treeViewInspection.Location = new System.Drawing.Point(19, 82);
|
||||
this.treeViewInspection.Name = "treeViewInspection";
|
||||
this.treeViewInspection.Size = new System.Drawing.Size(300, 485);
|
||||
|
|
@ -225,6 +226,7 @@
|
|||
// treeViewHistory
|
||||
//
|
||||
this.treeViewHistory.CheckBoxes = true;
|
||||
this.treeViewHistory.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.treeViewHistory.Location = new System.Drawing.Point(19, 82);
|
||||
this.treeViewHistory.Name = "treeViewHistory";
|
||||
this.treeViewHistory.Size = new System.Drawing.Size(300, 485);
|
||||
|
|
@ -349,9 +351,10 @@
|
|||
//
|
||||
// listBoxOther
|
||||
//
|
||||
this.listBoxOther.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxOther.Location = new System.Drawing.Point(19, 82);
|
||||
this.listBoxOther.Name = "listBoxOther";
|
||||
this.listBoxOther.Size = new System.Drawing.Size(300, 482);
|
||||
this.listBoxOther.Size = new System.Drawing.Size(300, 477);
|
||||
this.listBoxOther.TabIndex = 25;
|
||||
//
|
||||
// buttonOtherBackup
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ namespace INT63DC_6CH.Forms
|
|||
private void DefaultSetting()
|
||||
{
|
||||
this.labelMainControlVer.Text = "-";
|
||||
this.labelDisplayVer.Text = "1.1.0";
|
||||
this.labelDisplayVer.Text = "1.1.1";
|
||||
this.labelUserMgerVer.Text = "";
|
||||
this.labelAes128Ver.Text = "";
|
||||
this.labelSerialPortVer.Text = "";
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -29,7 +29,7 @@ namespace INT63DC_6CH.Forms
|
|||
|
||||
private ControlMainDisplayAlarm MainDisplayAlarmList;
|
||||
|
||||
private ControlMainDisplayFeedbacak MainDisplayFeedbaack;
|
||||
private ControlMainDisplayFeedback MainDisplayFeedback;
|
||||
private ControlMainDisplayEachBarGraph6 MainDisplayEachBarGraph6;
|
||||
private ControlMainDisplayEachBarGraph7 MainDisplayEachBarGraph7;
|
||||
private ControlMainDisplayEachBarGraph8 MainDisplayEachBarGraph8;
|
||||
|
|
@ -585,13 +585,10 @@ namespace INT63DC_6CH.Forms
|
|||
|
||||
this.MainDisplay = DataStore.FormMainDisplayStore.FormMainDisplayBarGraph;
|
||||
|
||||
if (this.ParentForm.SystemConfig.IsFeedback == true)
|
||||
{
|
||||
this.MainDisplayFeedbaack = new ControlMainDisplayFeedbacak(this);
|
||||
this.Controls.Add(this.MainDisplayFeedbaack);
|
||||
this.MainDisplayFeedbaack.BringToFront();
|
||||
this.MainDisplayFeedbaack.Location = new Point(0, 75);
|
||||
}
|
||||
this.MainDisplayFeedback = new ControlMainDisplayFeedback(this);
|
||||
this.Controls.Add(this.MainDisplayFeedback);
|
||||
this.MainDisplayFeedback.BringToFront();
|
||||
this.MainDisplayFeedback.Location = new Point(0, 75);
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
|
|
@ -772,8 +769,8 @@ namespace INT63DC_6CH.Forms
|
|||
if (displayForm == DataStore.FormMainDisplayStore.FormMainDisplayBarGraph)
|
||||
{
|
||||
#region BarGraph
|
||||
if (this.MainDisplayFeedbaack != null)
|
||||
this.MainDisplayFeedbaack.Visible = false;
|
||||
if (this.MainDisplayFeedback != null)
|
||||
this.MainDisplayFeedback.Visible = false;
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
|
|
@ -826,8 +823,8 @@ namespace INT63DC_6CH.Forms
|
|||
else if (displayForm == DataStore.FormMainDisplayStore.FormMainDisplayDotGraph)
|
||||
{
|
||||
#region DotGraph
|
||||
if (this.MainDisplayFeedbaack != null)
|
||||
this.MainDisplayFeedbaack.Visible = false;
|
||||
if (this.MainDisplayFeedback != null)
|
||||
this.MainDisplayFeedback.Visible = false;
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
|
|
@ -880,8 +877,8 @@ namespace INT63DC_6CH.Forms
|
|||
else if (displayForm == DataStore.FormMainDisplayStore.FormMainDisplayTable)
|
||||
{
|
||||
#region Table
|
||||
if (this.MainDisplayFeedbaack != null)
|
||||
this.MainDisplayFeedbaack.Visible = false;
|
||||
if (this.MainDisplayFeedback != null)
|
||||
this.MainDisplayFeedback.Visible = false;
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
|
|
@ -934,10 +931,10 @@ namespace INT63DC_6CH.Forms
|
|||
else if (displayForm == DataStore.FormMainDisplayStore.FormMainDisplayFeedback)
|
||||
{
|
||||
#region Feedback
|
||||
if (this.MainDisplayFeedbaack != null)
|
||||
if (this.MainDisplayFeedback != null)
|
||||
{
|
||||
this.MainDisplayFeedbaack.DisplayRefresh();
|
||||
this.MainDisplayFeedbaack.Visible = true;
|
||||
this.MainDisplayFeedback.DisplayRefresh();
|
||||
this.MainDisplayFeedback.Visible = true;
|
||||
}
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
|
|
@ -1136,6 +1133,7 @@ namespace INT63DC_6CH.Forms
|
|||
|
||||
this.buttonUser.ButtonDown();
|
||||
this.UpdateDisplayUser(this.ParentForm.SystemConfig.CurrentUser);
|
||||
this.DisplayRefresh();
|
||||
}
|
||||
else if (result == DialogResult.Abort)
|
||||
{
|
||||
|
|
@ -1660,6 +1658,9 @@ namespace INT63DC_6CH.Forms
|
|||
}
|
||||
public void UpdateStopWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.IsFeedback == true)
|
||||
this.MainDisplayFeedback.UpdateStopWeightDisplay(status, weightDatas);
|
||||
|
||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
case 6:
|
||||
|
|
@ -1710,8 +1711,8 @@ namespace INT63DC_6CH.Forms
|
|||
{
|
||||
string value = "";
|
||||
|
||||
if (this.MainDisplayFeedbaack != null)
|
||||
this.MainDisplayFeedbaack.UpdateStartWeightDisplay(status, weightDatas);
|
||||
if (this.MainDisplayFeedback != null)
|
||||
this.MainDisplayFeedback.UpdateStartWeightDisplay(status, weightDatas);
|
||||
|
||||
value = weightDatas[0].ProductionSpeed.ToString();
|
||||
if (this.labelProductionSpeed.Text != value)
|
||||
|
|
@ -1765,10 +1766,13 @@ namespace INT63DC_6CH.Forms
|
|||
|
||||
this.SetTotalCount();
|
||||
}
|
||||
public void UpdateFeedbackDataDisplay(DataStore.EquipmentStatus status, Collection<FeedBackSystem> feedbackData)
|
||||
public void UpdateFeedbackDataDisplay(DataStore.EquipmentStatus status, Collection<FeedBackSystem> feedbackData, Collection<WeightData> weightData)
|
||||
{
|
||||
if (this.MainDisplayFeedbaack != null)
|
||||
this.MainDisplayFeedbaack.UpdateFeedbackDataDisplay(status, feedbackData);
|
||||
if (this.MainDisplayFeedback != null)
|
||||
{
|
||||
this.MainDisplayFeedback.UpdateFeedbackDataDisplay(status, feedbackData);
|
||||
this.MainDisplayFeedback.UpdateStartWeightDisplay(status, weightData);
|
||||
}
|
||||
}
|
||||
public void UpdateDisplayAlarmView(AlarmList alarm)
|
||||
{
|
||||
|
|
@ -1942,6 +1946,17 @@ namespace INT63DC_6CH.Forms
|
|||
}
|
||||
}
|
||||
|
||||
public void ClearRefreshFeedbackDisplay()
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.IsFeedback == true)
|
||||
{
|
||||
this.MainDisplayFeedback.Clear();
|
||||
this.MainDisplayFeedback.UpdateFeedbackDisplay(this.ParentForm.CurrentFeedbackItem, this.ParentForm.SystemConfig, this.ParentForm.CurrentProductItem);
|
||||
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.ParentForm.Update30000ModbusData(i);
|
||||
}
|
||||
}
|
||||
|
||||
public void ProductChange(int productNumber)
|
||||
{
|
||||
// SetTrackingHistoryData
|
||||
|
|
@ -2200,6 +2215,33 @@ namespace INT63DC_6CH.Forms
|
|||
this.buttonBypassRun.Mode = SmartButton.BUTTONMODE.PUSH;
|
||||
}
|
||||
|
||||
// Ethernet
|
||||
if (this.ParentForm.SystemConfig.IsEthernetEnable == true)
|
||||
{
|
||||
this.pictureBoxEthernetDisconnection.Visible = true;
|
||||
|
||||
if (this.ParentForm.SystemConfig.EthernetOperationMode == 1)
|
||||
{
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
|
||||
if (this.ParentForm.smartTCPMultiServer.IsStart == false)
|
||||
this.ParentForm.smartTCPMultiServer.Start();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
this.pictureBoxEthernetDisconnection.Visible = false;
|
||||
this.pictureBoxEthernetConnection.Visible = false;
|
||||
|
||||
if (this.ParentForm.SystemConfig.EthernetOperationMode == 2)
|
||||
this.ParentForm.EthernetClientDisconnect();
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.smartTCPMultiServer.IsStart == true)
|
||||
this.ParentForm.smartTCPMultiServer.Stop();
|
||||
}
|
||||
}
|
||||
|
||||
// SubMenu
|
||||
this.panelSubMenu1.Visible = false;
|
||||
this.panelSubMenu2.Visible = false;
|
||||
|
|
|
|||
|
|
@ -45,7 +45,10 @@
|
|||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="InModbus, Version=1.0.1.0, Culture=neutral, processorArchitecture=MSIL" />
|
||||
<Reference Include="InModbus, Version=2.0.9.4, Culture=neutral, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\Document\DLL\InModbus.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="libPayService, Version=1.0.8748.18817, Culture=neutral, processorArchitecture=MSIL" />
|
||||
<Reference Include="Microsoft.WindowsCE.Forms" />
|
||||
<Reference Include="mscorlib" />
|
||||
|
|
@ -145,11 +148,11 @@
|
|||
<Compile Include="Controls\ControlMainDisplayEachBarGraph8.Designer.cs">
|
||||
<DependentUpon>ControlMainDisplayEachBarGraph8.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayFeedbacak.cs">
|
||||
<Compile Include="Controls\ControlMainDisplayFeedback.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayFeedbacak.designer.cs">
|
||||
<DependentUpon>ControlMainDisplayFeedbacak.cs</DependentUpon>
|
||||
<Compile Include="Controls\ControlMainDisplayFeedback.designer.cs">
|
||||
<DependentUpon>ControlMainDisplayFeedback.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayTable10.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
|
|
@ -464,9 +467,8 @@
|
|||
<DependentUpon>ControlMainDisplayEachBarGraph8.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayFeedbacak.resx">
|
||||
<DependentUpon>ControlMainDisplayFeedbacak.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayFeedback.resx">
|
||||
<DependentUpon>ControlMainDisplayFeedback.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayTable10.resx">
|
||||
<DependentUpon>ControlMainDisplayTable10.cs</DependentUpon>
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue