Part11 추가 중
parent
4f7e971941
commit
0a2d41bfe6
BIN
INT63DC_2C.suo
BIN
INT63DC_2C.suo
Binary file not shown.
|
|
@ -25,6 +25,7 @@ namespace INT63DC_2C.Controls
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -57,6 +58,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
for (int i = 1; i <= this.EquipmentColumns; i++)
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
{
|
{
|
||||||
|
|
@ -64,6 +66,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
|
|
@ -88,48 +91,87 @@ namespace INT63DC_2C.Controls
|
||||||
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLane[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -188,16 +230,18 @@ namespace INT63DC_2C.Controls
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -238,6 +282,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -252,6 +307,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ namespace INT63DC_2C.Controls
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,7 +48,10 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
private int EquipmentColumns { get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; } }
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
|
|
@ -57,6 +61,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
for (int i = 1; i <= this.EquipmentColumns; i++)
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
{
|
{
|
||||||
|
|
@ -64,6 +69,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
|
|
@ -88,48 +94,87 @@ namespace INT63DC_2C.Controls
|
||||||
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLane[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -196,16 +241,18 @@ namespace INT63DC_2C.Controls
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -246,6 +293,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -260,6 +318,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ namespace INT63DC_2C.Controls
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -57,6 +58,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
for (int i = 1; i <= this.EquipmentColumns; i++)
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
{
|
{
|
||||||
|
|
@ -64,6 +66,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
|
|
@ -88,48 +91,87 @@ namespace INT63DC_2C.Controls
|
||||||
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLane[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -208,16 +250,18 @@ namespace INT63DC_2C.Controls
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -258,6 +302,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -272,6 +327,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ namespace INT63DC_2C.Controls
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -57,6 +58,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
for (int i = 1; i <= this.EquipmentColumns; i++)
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
{
|
{
|
||||||
|
|
@ -64,6 +66,7 @@ namespace INT63DC_2C.Controls
|
||||||
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
|
|
@ -88,48 +91,87 @@ namespace INT63DC_2C.Controls
|
||||||
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLane[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLane)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -212,16 +254,18 @@ namespace INT63DC_2C.Controls
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -262,6 +306,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -276,6 +331,17 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,32 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
|
}
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -90,54 +88,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -162,18 +199,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -212,8 +251,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -226,8 +276,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,36 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
this.CollectionButtonLine.Add(this.buttonLane3);
|
}
|
||||||
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight3);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC3);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant3);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -94,54 +88,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -170,18 +203,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -220,8 +255,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -234,8 +280,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,40 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
this.CollectionButtonLine.Add(this.buttonLane3);
|
}
|
||||||
this.CollectionButtonLine.Add(this.buttonLane4);
|
|
||||||
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight3);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight4);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC3);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC4);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant3);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant4);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -98,54 +88,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -178,18 +207,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -228,8 +259,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -242,8 +284,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,44 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
this.CollectionButtonLine.Add(this.buttonLane3);
|
}
|
||||||
this.CollectionButtonLine.Add(this.buttonLane4);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLane5);
|
|
||||||
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight3);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight4);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight5);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC3);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC4);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC5);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant3);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant4);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant5);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -102,54 +88,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -186,18 +211,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -236,8 +263,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -250,8 +288,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,48 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLane2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
this.CollectionButtonLine.Add(this.buttonLane3);
|
}
|
||||||
this.CollectionButtonLine.Add(this.buttonLane4);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLane5);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLane6);
|
|
||||||
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight3);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight4);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight5);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight6);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC3);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC4);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC5);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC6);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant3);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant4);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant5);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant6);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -106,54 +88,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -194,18 +215,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -244,8 +267,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -258,8 +292,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,52 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLine1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLine2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
this.CollectionButtonLine.Add(this.buttonLine3);
|
}
|
||||||
this.CollectionButtonLine.Add(this.buttonLine4);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine5);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine6);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine7);
|
|
||||||
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight3);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight4);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight5);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight6);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight7);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC3);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC4);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC5);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC6);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC7);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant3);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant4);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant5);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant6);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant7);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -109,54 +87,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -201,18 +218,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -251,8 +270,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -265,8 +295,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -21,10 +21,11 @@ namespace INT63DC_2C.Controls
|
||||||
private Color NormalColor = Color.Black;
|
private Color NormalColor = Color.Black;
|
||||||
private Color FinishColor = Color.Blue;
|
private Color FinishColor = Color.Blue;
|
||||||
|
|
||||||
private Collection<SmartButton> CollectionButtonLine;
|
private Collection<SmartButton> CollectionButtonLane;
|
||||||
private Collection<SmartLabel> CollectionLabelWeight;
|
private Collection<SmartLabel> CollectionLabelWeight;
|
||||||
private Collection<SmartLabel> CollectionLabelADC;
|
private Collection<SmartLabel> CollectionLabelADC;
|
||||||
private Collection<SmartLabel> CollectionLabelConstant;
|
private Collection<SmartLabel> CollectionLabelConstant;
|
||||||
|
private Collection<CalibrationStatus> CollCalStatus;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -47,56 +48,29 @@ namespace INT63DC_2C.Controls
|
||||||
get { return this.m_ParentForm; }
|
get { return this.m_ParentForm; }
|
||||||
private set { this.m_ParentForm = value; }
|
private set { this.m_ParentForm = value; }
|
||||||
}
|
}
|
||||||
|
private int EquipmentColumns
|
||||||
|
{
|
||||||
|
get { return this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; }
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Method
|
#region Method
|
||||||
private void CreateCollection()
|
private void CreateCollection()
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine = new Collection<SmartButton>();
|
this.CollectionButtonLane = new Collection<SmartButton>();
|
||||||
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
this.CollectionLabelWeight = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelADC = new Collection<SmartLabel>();
|
this.CollectionLabelADC = new Collection<SmartLabel>();
|
||||||
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
this.CollectionLabelConstant = new Collection<SmartLabel>();
|
||||||
|
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||||
|
|
||||||
this.CollectionButtonLine.Clear();
|
for (int i = 1; i <= this.EquipmentColumns; i++)
|
||||||
this.CollectionLabelWeight.Clear();
|
{
|
||||||
this.CollectionLabelADC.Clear();
|
this.CollectionButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||||
this.CollectionLabelConstant.Clear();
|
this.CollectionLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||||
|
this.CollectionLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLine1);
|
this.CollectionLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||||
this.CollectionButtonLine.Add(this.buttonLine2);
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
this.CollectionButtonLine.Add(this.buttonLine3);
|
}
|
||||||
this.CollectionButtonLine.Add(this.buttonLine4);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine5);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine6);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine7);
|
|
||||||
this.CollectionButtonLine.Add(this.buttonLine8);
|
|
||||||
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight1);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight2);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight3);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight4);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight5);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight6);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight7);
|
|
||||||
this.CollectionLabelWeight.Add(this.labelWeight8);
|
|
||||||
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC1);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC2);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC3);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC4);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC5);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC6);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC7);
|
|
||||||
this.CollectionLabelADC.Add(this.labelADC8);
|
|
||||||
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant1);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant2);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant3);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant4);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant5);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant6);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant7);
|
|
||||||
this.CollectionLabelConstant.Add(this.labelConstant8);
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
@ -114,54 +88,93 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine == null || this.CollectionButtonLine.Count == 0)
|
if (this.CollectionButtonLane == null || this.CollectionButtonLane.Count == 0)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 0; i < this.CollectionButtonLine.Count; i++)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
this.CollectionButtonLine[i].ButtonUp();
|
this.CollectionButtonLane[i].ButtonUp();
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CalibrationBalance()
|
public void CalibrationBalance()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpBalance();
|
this.ParentForm.UpdateDisplayHelpBalance();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
detail = string.Format("{0} Lane Balance", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||||
}
|
}
|
||||||
public void CalibrationStart()
|
public void CalibrationStart()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpStart();
|
this.ParentForm.UpdateDisplayHelpStart();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = false;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].Initialize();
|
||||||
|
detail = string.Format("{0} Lane Start", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||||
}
|
}
|
||||||
public void CalibrationCancel()
|
public void CalibrationCancel()
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
// Help
|
// Help
|
||||||
this.ParentForm.UpdateDisplayHelpCancel();
|
this.ParentForm.UpdateDisplayHelpCancel();
|
||||||
|
|
||||||
foreach (SmartButton bt in this.CollectionButtonLine)
|
for (int i = 0; i < this.CollectionButtonLane.Count; i++)
|
||||||
{
|
{
|
||||||
if (bt.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, bt.Tag.ToString());
|
{
|
||||||
|
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollectionButtonLane[i].Tag.ToString());
|
||||||
|
|
||||||
bt.Enabled = true;
|
// Part 11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[i].IsCancel == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[i].IsCancel = true;
|
||||||
|
detail = string.Format("{0} Lane Cancel", i + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.CollectionButtonLane[i].Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
|
|
@ -210,18 +223,20 @@ namespace INT63DC_2C.Controls
|
||||||
|
|
||||||
for (int i = 0; i < weights.Count; i++)
|
for (int i = 0; i < weights.Count; i++)
|
||||||
{
|
{
|
||||||
if (this.CollectionButtonLine[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
if (this.CollectionButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.UpdateLabelWeight(this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
this.UpdateLabelWeight(i, this.CollectionButtonLane[i], this.CollectionLabelWeight[i], this.CollectionLabelADC[i], weights[i], false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void UpdateLabelWeight(SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||||
{
|
{
|
||||||
|
string detail = "";
|
||||||
|
|
||||||
switch (weightData.Status)
|
switch (weightData.Status)
|
||||||
{
|
{
|
||||||
case DataStore.WeightStatus.CalNomal:
|
case DataStore.WeightStatus.CalNomal:
|
||||||
|
|
@ -260,8 +275,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalFinish();
|
this.ParentForm.UpdateDisplayHelpCalFinish();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsFinish == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsFinish = true;
|
||||||
|
detail = string.Format("{0} Lane Success", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.FinishColor;
|
labelWeight.ForeColor = this.FinishColor;
|
||||||
|
|
@ -274,8 +300,19 @@ namespace INT63DC_2C.Controls
|
||||||
this.ParentForm.UpdateDisplayHelpCalError();
|
this.ParentForm.UpdateDisplayHelpCalError();
|
||||||
|
|
||||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||||
foreach (SmartX.SmartButton bt in this.CollectionButtonLine)
|
foreach (SmartX.SmartButton bt in this.CollectionButtonLane)
|
||||||
bt.Enabled = true;
|
bt.Enabled = true;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
if (this.CollCalStatus[index].IsError == false)
|
||||||
|
{
|
||||||
|
this.CollCalStatus[index].IsError = true;
|
||||||
|
detail = string.Format("{0} Lane Error", index + 1);
|
||||||
|
this.ParentForm.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Calibration, detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||||
labelWeight.ForeColor = this.NormalColor;
|
labelWeight.ForeColor = this.NormalColor;
|
||||||
|
|
|
||||||
|
|
@ -184,14 +184,11 @@ namespace INT63DC_2C
|
||||||
ProductPaste,
|
ProductPaste,
|
||||||
ProductAllPaste,
|
ProductAllPaste,
|
||||||
Initialization,
|
Initialization,
|
||||||
MotorInitDown,
|
|
||||||
MotorChangeID,
|
MotorValueSave,
|
||||||
MotorChangeValueEach,
|
AlarmReset,
|
||||||
MotorChangeValueAll,
|
Origin,
|
||||||
TryEthernetStart,
|
OneStep,
|
||||||
TryEthernetStop,
|
|
||||||
EthernetConnect,
|
|
||||||
EthernetDisconnect,
|
|
||||||
}
|
}
|
||||||
public enum TrackingParameter
|
public enum TrackingParameter
|
||||||
{
|
{
|
||||||
|
|
@ -231,12 +228,20 @@ namespace INT63DC_2C
|
||||||
JudgmentCount,
|
JudgmentCount,
|
||||||
JudgmentCVSpeed,
|
JudgmentCVSpeed,
|
||||||
|
|
||||||
SorterDelayTime,
|
Sorter1DelayTime,
|
||||||
SorterRunTime,
|
Sorter1RunTime,
|
||||||
RejectCVDelayTime,
|
Sorter2DelayTime,
|
||||||
RejectCVRunTime,
|
Sorter2RunTime,
|
||||||
FeedingCVDelayTime,
|
Sorter3DelayTime,
|
||||||
FeedingCVRunTime,
|
Sorter3RunTime,
|
||||||
|
Sorter4DelayTime,
|
||||||
|
Sorter4RunTime,
|
||||||
|
EntryGateDelayTime,
|
||||||
|
EntryGateRunTime,
|
||||||
|
DischargeStopperDelayTime,
|
||||||
|
DischargeStopperRunTime,
|
||||||
|
Stopper2DelayTime,
|
||||||
|
Stopper2RunTime,
|
||||||
ForcedZeroDelayTime,
|
ForcedZeroDelayTime,
|
||||||
|
|
||||||
AutoZeroTime,
|
AutoZeroTime,
|
||||||
|
|
@ -261,7 +266,9 @@ namespace INT63DC_2C
|
||||||
CalBalWeight,
|
CalBalWeight,
|
||||||
CalDigit,
|
CalDigit,
|
||||||
|
|
||||||
EtcDoubleEntry,
|
EtcEmptyWeight,
|
||||||
|
EtcTurnDelay,
|
||||||
|
EtcTurnOperation,
|
||||||
EtcChattering,
|
EtcChattering,
|
||||||
EtcBuzzerRunTime,
|
EtcBuzzerRunTime,
|
||||||
EtcRelayRunTime,
|
EtcRelayRunTime,
|
||||||
|
|
@ -3863,4 +3870,49 @@ namespace INT63DC_2C
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region CalibrationStatus
|
||||||
|
public class CalibrationStatus
|
||||||
|
{
|
||||||
|
#region Field
|
||||||
|
private bool m_IsFinish;
|
||||||
|
private bool m_IsError;
|
||||||
|
private bool m_IsCancel;
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Constructor
|
||||||
|
public CalibrationStatus()
|
||||||
|
{
|
||||||
|
this.Initialize();
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Property
|
||||||
|
public bool IsFinish
|
||||||
|
{
|
||||||
|
get { return this.m_IsFinish; }
|
||||||
|
set { this.m_IsFinish = value; }
|
||||||
|
}
|
||||||
|
public bool IsError
|
||||||
|
{
|
||||||
|
get { return this.m_IsError; }
|
||||||
|
set { this.m_IsError = value; }
|
||||||
|
}
|
||||||
|
public bool IsCancel
|
||||||
|
{
|
||||||
|
get { return this.m_IsCancel; }
|
||||||
|
set { this.m_IsCancel = value; }
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Method
|
||||||
|
public void Initialize()
|
||||||
|
{
|
||||||
|
this.IsFinish = false;
|
||||||
|
this.IsError = false;
|
||||||
|
this.IsCancel = false;
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -476,6 +476,7 @@ namespace INT63DC_2C.DialogForms
|
||||||
private void buttonLogOn_Click(object sender, EventArgs e)
|
private void buttonLogOn_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
// Automatic Logout Reset
|
// Automatic Logout Reset
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
this.ParentForm.ChildFormMainDisplay.Part11AutomaticLogoutReset();
|
this.ParentForm.ChildFormMainDisplay.Part11AutomaticLogoutReset();
|
||||||
|
|
||||||
if (this.IsChangePassword == false)
|
if (this.IsChangePassword == false)
|
||||||
|
|
|
||||||
|
|
@ -656,16 +656,25 @@ namespace INT63DC_2C.Forms
|
||||||
#region Event Handler
|
#region Event Handler
|
||||||
private void comboBoxDigit_SelectedIndexChanged(object sender, EventArgs e)
|
private void comboBoxDigit_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
string value = "";
|
string value = "", before = "", after = "";
|
||||||
|
|
||||||
|
before = this.ParentForm.CurrentCalibrationItem.Digit;
|
||||||
|
|
||||||
value = Helper.StringZeroFillDigits4(this.comboBoxDigit.SelectedItem.ToString());
|
value = Helper.StringZeroFillDigits4(this.comboBoxDigit.SelectedItem.ToString());
|
||||||
|
|
||||||
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._3003_Digit, value);
|
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._3003_Digit, value);
|
||||||
|
|
||||||
|
after = int.Parse(value).ToString();
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.CalDigit, "", before, after);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void labelBalanceWeight_Click(object sender, EventArgs e)
|
private void labelBalanceWeight_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
string value = "";
|
string value = "", before = "", after = "";
|
||||||
|
|
||||||
|
before = this.labelBalanceWeight.Text;
|
||||||
|
|
||||||
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(this.labelBalanceWeight.Text, 5, this.ParentForm.SystemConfig.DecimalPlaces, false, this.ParentForm.SystemConfig.Language);
|
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(this.labelBalanceWeight.Text, 5, this.ParentForm.SystemConfig.DecimalPlaces, false, this.ParentForm.SystemConfig.Language);
|
||||||
|
|
||||||
|
|
@ -680,16 +689,22 @@ namespace INT63DC_2C.Forms
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.labelBalanceWeight.Text = myKeyPad.StringValue;
|
this.labelBalanceWeight.Text = myKeyPad.StringValue;
|
||||||
|
after = this.labelBalanceWeight.Text;
|
||||||
|
|
||||||
value = Helper.StringZeroFillDigits7(this.labelBalanceWeight.Text.Replace(".", ""));
|
value = Helper.StringZeroFillDigits7(this.labelBalanceWeight.Text.Replace(".", ""));
|
||||||
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._3002_BalanceWeight, value);
|
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._3002_BalanceWeight, value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.CalBalWeight, "", before, after);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
private void labelMaxWeight_Click(object sender, EventArgs e)
|
private void labelMaxWeight_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
string value = "";
|
string value = "", before = "", after = "";
|
||||||
|
|
||||||
|
before = this.labelMaxWeight.Text;
|
||||||
|
|
||||||
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(this.labelMaxWeight.Text, 5, this.ParentForm.SystemConfig.DecimalPlaces, false, this.ParentForm.SystemConfig.Language);
|
DialogFormNumKeyPad myKeyPad = new DialogFormNumKeyPad(this.labelMaxWeight.Text, 5, this.ParentForm.SystemConfig.DecimalPlaces, false, this.ParentForm.SystemConfig.Language);
|
||||||
|
|
||||||
|
|
@ -704,9 +719,14 @@ namespace INT63DC_2C.Forms
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
this.labelMaxWeight.Text = myKeyPad.StringValue;
|
this.labelMaxWeight.Text = myKeyPad.StringValue;
|
||||||
|
after = this.labelMaxWeight.Text;
|
||||||
|
|
||||||
value = Helper.StringZeroFillDigits7(this.labelMaxWeight.Text.Replace(".", ""));
|
value = Helper.StringZeroFillDigits7(this.labelMaxWeight.Text.Replace(".", ""));
|
||||||
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._3001_MaxWeight, value);
|
this.ParentForm.TransferDataStream(CommunicationCommand.Write, CommunicationID.SubBoardAll, CommunicationAddress._3001_MaxWeight, value);
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.CalMaxWeight, "", before, after);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -752,7 +772,6 @@ namespace INT63DC_2C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonBalance_Click(object sender, EventArgs e)
|
private void buttonBalance_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||||
|
|
@ -794,7 +813,6 @@ namespace INT63DC_2C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonCancel_Click(object sender, EventArgs e)
|
private void buttonCancel_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||||
|
|
|
||||||
|
|
@ -52,11 +52,11 @@
|
||||||
this.labelStaticCommunicationSpeed = new SmartX.SmartLabel();
|
this.labelStaticCommunicationSpeed = new SmartX.SmartLabel();
|
||||||
this.groupBoxOption = new SmartX.SmartGroupBox();
|
this.groupBoxOption = new SmartX.SmartGroupBox();
|
||||||
this.labelEmptyWeight = new SmartX.SmartLabel();
|
this.labelEmptyWeight = new SmartX.SmartLabel();
|
||||||
this.labelEXT1RunTime = new SmartX.SmartLabel();
|
this.labelTurnRunTime = new SmartX.SmartLabel();
|
||||||
this.labelStaticEmptyWeight = new SmartX.SmartLabel();
|
this.labelStaticEmptyWeight = new SmartX.SmartLabel();
|
||||||
this.labelEXT1DelayTime = new SmartX.SmartLabel();
|
this.labelTurnDelayTime = new SmartX.SmartLabel();
|
||||||
this.labelStaticEXT1RunTime = new SmartX.SmartLabel();
|
this.labelStaticTurnRunTime = new SmartX.SmartLabel();
|
||||||
this.labelStaticEXT1DelayTime = new SmartX.SmartLabel();
|
this.labelStaticTurnDelayTime = new SmartX.SmartLabel();
|
||||||
this.comboBoxDecimalPlaces = new System.Windows.Forms.ComboBox();
|
this.comboBoxDecimalPlaces = new System.Windows.Forms.ComboBox();
|
||||||
this.labelBuzzerOnTime = new SmartX.SmartLabel();
|
this.labelBuzzerOnTime = new SmartX.SmartLabel();
|
||||||
this.labelChattering = new SmartX.SmartLabel();
|
this.labelChattering = new SmartX.SmartLabel();
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
this.groupBoxAutoZero.Controls.Add(this.labelStaticVariable);
|
this.groupBoxAutoZero.Controls.Add(this.labelStaticVariable);
|
||||||
this.groupBoxAutoZero.Controls.Add(this.labelStaticRange);
|
this.groupBoxAutoZero.Controls.Add(this.labelStaticRange);
|
||||||
this.groupBoxAutoZero.Controls.Add(this.labelStaticTime);
|
this.groupBoxAutoZero.Controls.Add(this.labelStaticTime);
|
||||||
this.groupBoxAutoZero.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.groupBoxAutoZero.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.groupBoxAutoZero.FrameLineColor1 = System.Drawing.Color.Black;
|
this.groupBoxAutoZero.FrameLineColor1 = System.Drawing.Color.Black;
|
||||||
this.groupBoxAutoZero.FrameLineColor2 = System.Drawing.Color.Black;
|
this.groupBoxAutoZero.FrameLineColor2 = System.Drawing.Color.Black;
|
||||||
this.groupBoxAutoZero.FrameLineThickness = 1;
|
this.groupBoxAutoZero.FrameLineThickness = 1;
|
||||||
|
|
@ -399,7 +399,7 @@
|
||||||
this.labelStaticMode.BackPictureBox2 = null;
|
this.labelStaticMode.BackPictureBox2 = null;
|
||||||
this.labelStaticMode.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticMode.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticMode.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticMode.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticMode.InitVisible = true;
|
this.labelStaticMode.InitVisible = true;
|
||||||
this.labelStaticMode.LineSpacing = 0F;
|
this.labelStaticMode.LineSpacing = 0F;
|
||||||
this.labelStaticMode.Location = new System.Drawing.Point(261, 83);
|
this.labelStaticMode.Location = new System.Drawing.Point(261, 83);
|
||||||
|
|
@ -419,7 +419,7 @@
|
||||||
this.labelStaticVariable.BackPictureBox2 = null;
|
this.labelStaticVariable.BackPictureBox2 = null;
|
||||||
this.labelStaticVariable.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticVariable.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticVariable.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticVariable.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticVariable.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticVariable.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticVariable.InitVisible = true;
|
this.labelStaticVariable.InitVisible = true;
|
||||||
this.labelStaticVariable.LineSpacing = 0F;
|
this.labelStaticVariable.LineSpacing = 0F;
|
||||||
this.labelStaticVariable.Location = new System.Drawing.Point(24, 83);
|
this.labelStaticVariable.Location = new System.Drawing.Point(24, 83);
|
||||||
|
|
@ -438,7 +438,7 @@
|
||||||
this.labelStaticRange.BackPictureBox2 = null;
|
this.labelStaticRange.BackPictureBox2 = null;
|
||||||
this.labelStaticRange.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticRange.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticRange.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticRange.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticRange.InitVisible = true;
|
this.labelStaticRange.InitVisible = true;
|
||||||
this.labelStaticRange.LineSpacing = 0F;
|
this.labelStaticRange.LineSpacing = 0F;
|
||||||
this.labelStaticRange.Location = new System.Drawing.Point(261, 47);
|
this.labelStaticRange.Location = new System.Drawing.Point(261, 47);
|
||||||
|
|
@ -457,7 +457,7 @@
|
||||||
this.labelStaticTime.BackPictureBox2 = null;
|
this.labelStaticTime.BackPictureBox2 = null;
|
||||||
this.labelStaticTime.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticTime.InitVisible = true;
|
this.labelStaticTime.InitVisible = true;
|
||||||
this.labelStaticTime.LineSpacing = 0F;
|
this.labelStaticTime.LineSpacing = 0F;
|
||||||
this.labelStaticTime.Location = new System.Drawing.Point(24, 47);
|
this.labelStaticTime.Location = new System.Drawing.Point(24, 47);
|
||||||
|
|
@ -513,7 +513,7 @@
|
||||||
this.groupBoxComm.Controls.Add(this.labelStaticCommunicationMode);
|
this.groupBoxComm.Controls.Add(this.labelStaticCommunicationMode);
|
||||||
this.groupBoxComm.Controls.Add(this.smartLabel4);
|
this.groupBoxComm.Controls.Add(this.smartLabel4);
|
||||||
this.groupBoxComm.Controls.Add(this.labelStaticCommunicationSpeed);
|
this.groupBoxComm.Controls.Add(this.labelStaticCommunicationSpeed);
|
||||||
this.groupBoxComm.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.groupBoxComm.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.groupBoxComm.FrameLineColor1 = System.Drawing.Color.Black;
|
this.groupBoxComm.FrameLineColor1 = System.Drawing.Color.Black;
|
||||||
this.groupBoxComm.FrameLineColor2 = System.Drawing.Color.Black;
|
this.groupBoxComm.FrameLineColor2 = System.Drawing.Color.Black;
|
||||||
this.groupBoxComm.FrameLineThickness = 1;
|
this.groupBoxComm.FrameLineThickness = 1;
|
||||||
|
|
@ -535,7 +535,7 @@
|
||||||
this.labelProtocolDescriptionCOM3_2.BackPictureBox2 = null;
|
this.labelProtocolDescriptionCOM3_2.BackPictureBox2 = null;
|
||||||
this.labelProtocolDescriptionCOM3_2.BorderColor = System.Drawing.Color.Black;
|
this.labelProtocolDescriptionCOM3_2.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelProtocolDescriptionCOM3_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelProtocolDescriptionCOM3_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelProtocolDescriptionCOM3_2.Font = new System.Drawing.Font("New Gulim", 9F, System.Drawing.FontStyle.Bold);
|
this.labelProtocolDescriptionCOM3_2.Font = new System.Drawing.Font("새굴림", 9F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelProtocolDescriptionCOM3_2.InitVisible = true;
|
this.labelProtocolDescriptionCOM3_2.InitVisible = true;
|
||||||
this.labelProtocolDescriptionCOM3_2.LineSpacing = 0F;
|
this.labelProtocolDescriptionCOM3_2.LineSpacing = 0F;
|
||||||
this.labelProtocolDescriptionCOM3_2.Location = new System.Drawing.Point(54, 122);
|
this.labelProtocolDescriptionCOM3_2.Location = new System.Drawing.Point(54, 122);
|
||||||
|
|
@ -550,7 +550,7 @@
|
||||||
// buttonSend
|
// buttonSend
|
||||||
//
|
//
|
||||||
this.buttonSend.Enabled = false;
|
this.buttonSend.Enabled = false;
|
||||||
this.buttonSend.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
this.buttonSend.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||||
this.buttonSend.Location = new System.Drawing.Point(393, 98);
|
this.buttonSend.Location = new System.Drawing.Point(393, 98);
|
||||||
this.buttonSend.Name = "buttonSend";
|
this.buttonSend.Name = "buttonSend";
|
||||||
this.buttonSend.Size = new System.Drawing.Size(70, 46);
|
this.buttonSend.Size = new System.Drawing.Size(70, 46);
|
||||||
|
|
@ -565,7 +565,7 @@
|
||||||
this.labelProtocolDescriptionCOM3_1.BackPictureBox2 = null;
|
this.labelProtocolDescriptionCOM3_1.BackPictureBox2 = null;
|
||||||
this.labelProtocolDescriptionCOM3_1.BorderColor = System.Drawing.Color.Black;
|
this.labelProtocolDescriptionCOM3_1.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelProtocolDescriptionCOM3_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelProtocolDescriptionCOM3_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelProtocolDescriptionCOM3_1.Font = new System.Drawing.Font("New Gulim", 9F, System.Drawing.FontStyle.Bold);
|
this.labelProtocolDescriptionCOM3_1.Font = new System.Drawing.Font("새굴림", 9F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelProtocolDescriptionCOM3_1.InitVisible = true;
|
this.labelProtocolDescriptionCOM3_1.InitVisible = true;
|
||||||
this.labelProtocolDescriptionCOM3_1.LineSpacing = 0F;
|
this.labelProtocolDescriptionCOM3_1.LineSpacing = 0F;
|
||||||
this.labelProtocolDescriptionCOM3_1.Location = new System.Drawing.Point(54, 96);
|
this.labelProtocolDescriptionCOM3_1.Location = new System.Drawing.Point(54, 96);
|
||||||
|
|
@ -580,7 +580,7 @@
|
||||||
// buttonSave3
|
// buttonSave3
|
||||||
//
|
//
|
||||||
this.buttonSave3.Enabled = false;
|
this.buttonSave3.Enabled = false;
|
||||||
this.buttonSave3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
this.buttonSave3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||||
this.buttonSave3.Location = new System.Drawing.Point(393, 62);
|
this.buttonSave3.Location = new System.Drawing.Point(393, 62);
|
||||||
this.buttonSave3.Name = "buttonSave3";
|
this.buttonSave3.Name = "buttonSave3";
|
||||||
this.buttonSave3.Size = new System.Drawing.Size(70, 30);
|
this.buttonSave3.Size = new System.Drawing.Size(70, 30);
|
||||||
|
|
@ -613,7 +613,7 @@
|
||||||
this.labelStaticCommunicationMode.BackPictureBox2 = null;
|
this.labelStaticCommunicationMode.BackPictureBox2 = null;
|
||||||
this.labelStaticCommunicationMode.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticCommunicationMode.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticCommunicationMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticCommunicationMode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticCommunicationMode.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
this.labelStaticCommunicationMode.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticCommunicationMode.InitVisible = true;
|
this.labelStaticCommunicationMode.InitVisible = true;
|
||||||
this.labelStaticCommunicationMode.LineSpacing = 0F;
|
this.labelStaticCommunicationMode.LineSpacing = 0F;
|
||||||
this.labelStaticCommunicationMode.Location = new System.Drawing.Point(248, 26);
|
this.labelStaticCommunicationMode.Location = new System.Drawing.Point(248, 26);
|
||||||
|
|
@ -632,7 +632,7 @@
|
||||||
this.smartLabel4.BackPictureBox2 = null;
|
this.smartLabel4.BackPictureBox2 = null;
|
||||||
this.smartLabel4.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel4.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel4.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel4.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.smartLabel4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel4.InitVisible = true;
|
this.smartLabel4.InitVisible = true;
|
||||||
this.smartLabel4.LineSpacing = 0F;
|
this.smartLabel4.LineSpacing = 0F;
|
||||||
this.smartLabel4.Location = new System.Drawing.Point(16, 60);
|
this.smartLabel4.Location = new System.Drawing.Point(16, 60);
|
||||||
|
|
@ -651,7 +651,7 @@
|
||||||
this.labelStaticCommunicationSpeed.BackPictureBox2 = null;
|
this.labelStaticCommunicationSpeed.BackPictureBox2 = null;
|
||||||
this.labelStaticCommunicationSpeed.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticCommunicationSpeed.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticCommunicationSpeed.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticCommunicationSpeed.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticCommunicationSpeed.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
this.labelStaticCommunicationSpeed.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticCommunicationSpeed.InitVisible = true;
|
this.labelStaticCommunicationSpeed.InitVisible = true;
|
||||||
this.labelStaticCommunicationSpeed.LineSpacing = 0F;
|
this.labelStaticCommunicationSpeed.LineSpacing = 0F;
|
||||||
this.labelStaticCommunicationSpeed.Location = new System.Drawing.Point(142, 24);
|
this.labelStaticCommunicationSpeed.Location = new System.Drawing.Point(142, 24);
|
||||||
|
|
@ -668,11 +668,11 @@
|
||||||
this.groupBoxOption.BackPictureBox = this.smartForm1;
|
this.groupBoxOption.BackPictureBox = this.smartForm1;
|
||||||
this.groupBoxOption.BackPictureBox1 = null;
|
this.groupBoxOption.BackPictureBox1 = null;
|
||||||
this.groupBoxOption.Controls.Add(this.labelEmptyWeight);
|
this.groupBoxOption.Controls.Add(this.labelEmptyWeight);
|
||||||
this.groupBoxOption.Controls.Add(this.labelEXT1RunTime);
|
this.groupBoxOption.Controls.Add(this.labelTurnRunTime);
|
||||||
this.groupBoxOption.Controls.Add(this.labelStaticEmptyWeight);
|
this.groupBoxOption.Controls.Add(this.labelStaticEmptyWeight);
|
||||||
this.groupBoxOption.Controls.Add(this.labelEXT1DelayTime);
|
this.groupBoxOption.Controls.Add(this.labelTurnDelayTime);
|
||||||
this.groupBoxOption.Controls.Add(this.labelStaticEXT1RunTime);
|
this.groupBoxOption.Controls.Add(this.labelStaticTurnRunTime);
|
||||||
this.groupBoxOption.Controls.Add(this.labelStaticEXT1DelayTime);
|
this.groupBoxOption.Controls.Add(this.labelStaticTurnDelayTime);
|
||||||
this.groupBoxOption.Controls.Add(this.comboBoxDecimalPlaces);
|
this.groupBoxOption.Controls.Add(this.comboBoxDecimalPlaces);
|
||||||
this.groupBoxOption.Controls.Add(this.labelBuzzerOnTime);
|
this.groupBoxOption.Controls.Add(this.labelBuzzerOnTime);
|
||||||
this.groupBoxOption.Controls.Add(this.labelChattering);
|
this.groupBoxOption.Controls.Add(this.labelChattering);
|
||||||
|
|
@ -681,7 +681,7 @@
|
||||||
this.groupBoxOption.Controls.Add(this.labelStaticBuzzerOnTime);
|
this.groupBoxOption.Controls.Add(this.labelStaticBuzzerOnTime);
|
||||||
this.groupBoxOption.Controls.Add(this.labelStaticRelayOnTime);
|
this.groupBoxOption.Controls.Add(this.labelStaticRelayOnTime);
|
||||||
this.groupBoxOption.Controls.Add(this.labelStaticChattering);
|
this.groupBoxOption.Controls.Add(this.labelStaticChattering);
|
||||||
this.groupBoxOption.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.groupBoxOption.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.groupBoxOption.FrameLineColor1 = System.Drawing.Color.Black;
|
this.groupBoxOption.FrameLineColor1 = System.Drawing.Color.Black;
|
||||||
this.groupBoxOption.FrameLineColor2 = System.Drawing.Color.Black;
|
this.groupBoxOption.FrameLineColor2 = System.Drawing.Color.Black;
|
||||||
this.groupBoxOption.FrameLineThickness = 1;
|
this.groupBoxOption.FrameLineThickness = 1;
|
||||||
|
|
@ -717,26 +717,26 @@
|
||||||
this.labelEmptyWeight.Wordwrap = false;
|
this.labelEmptyWeight.Wordwrap = false;
|
||||||
this.labelEmptyWeight.Click += new System.EventHandler(this.labelEmptyWeight_Click);
|
this.labelEmptyWeight.Click += new System.EventHandler(this.labelEmptyWeight_Click);
|
||||||
//
|
//
|
||||||
// labelEXT1RunTime
|
// labelTurnRunTime
|
||||||
//
|
//
|
||||||
this.labelEXT1RunTime.BackColor = System.Drawing.Color.White;
|
this.labelTurnRunTime.BackColor = System.Drawing.Color.White;
|
||||||
this.labelEXT1RunTime.BackPictureBox = null;
|
this.labelTurnRunTime.BackPictureBox = null;
|
||||||
this.labelEXT1RunTime.BackPictureBox1 = null;
|
this.labelTurnRunTime.BackPictureBox1 = null;
|
||||||
this.labelEXT1RunTime.BackPictureBox2 = null;
|
this.labelTurnRunTime.BackPictureBox2 = null;
|
||||||
this.labelEXT1RunTime.BorderColor = System.Drawing.Color.Black;
|
this.labelTurnRunTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelEXT1RunTime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.labelTurnRunTime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||||
this.labelEXT1RunTime.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
|
this.labelTurnRunTime.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelEXT1RunTime.InitVisible = true;
|
this.labelTurnRunTime.InitVisible = true;
|
||||||
this.labelEXT1RunTime.LineSpacing = 0F;
|
this.labelTurnRunTime.LineSpacing = 0F;
|
||||||
this.labelEXT1RunTime.Location = new System.Drawing.Point(302, 110);
|
this.labelTurnRunTime.Location = new System.Drawing.Point(302, 110);
|
||||||
this.labelEXT1RunTime.Name = "labelEXT1RunTime";
|
this.labelTurnRunTime.Name = "labelTurnRunTime";
|
||||||
this.labelEXT1RunTime.Size = new System.Drawing.Size(100, 30);
|
this.labelTurnRunTime.Size = new System.Drawing.Size(100, 30);
|
||||||
this.labelEXT1RunTime.TabIndex = 4;
|
this.labelTurnRunTime.TabIndex = 4;
|
||||||
this.labelEXT1RunTime.Text = "9999";
|
this.labelTurnRunTime.Text = "9999";
|
||||||
this.labelEXT1RunTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
this.labelTurnRunTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||||
this.labelEXT1RunTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelTurnRunTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelEXT1RunTime.Wordwrap = false;
|
this.labelTurnRunTime.Wordwrap = false;
|
||||||
this.labelEXT1RunTime.Click += new System.EventHandler(this.labelEXT1RunTime_Click);
|
this.labelTurnRunTime.Click += new System.EventHandler(this.labelTurnRunTime_Click);
|
||||||
//
|
//
|
||||||
// labelStaticEmptyWeight
|
// labelStaticEmptyWeight
|
||||||
//
|
//
|
||||||
|
|
@ -745,7 +745,7 @@
|
||||||
this.labelStaticEmptyWeight.BackPictureBox2 = null;
|
this.labelStaticEmptyWeight.BackPictureBox2 = null;
|
||||||
this.labelStaticEmptyWeight.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticEmptyWeight.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticEmptyWeight.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticEmptyWeight.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticEmptyWeight.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticEmptyWeight.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticEmptyWeight.ForeColor = System.Drawing.Color.Black;
|
this.labelStaticEmptyWeight.ForeColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticEmptyWeight.InitVisible = true;
|
this.labelStaticEmptyWeight.InitVisible = true;
|
||||||
this.labelStaticEmptyWeight.LineSpacing = 0F;
|
this.labelStaticEmptyWeight.LineSpacing = 0F;
|
||||||
|
|
@ -758,64 +758,64 @@
|
||||||
this.labelStaticEmptyWeight.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelStaticEmptyWeight.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelStaticEmptyWeight.Wordwrap = false;
|
this.labelStaticEmptyWeight.Wordwrap = false;
|
||||||
//
|
//
|
||||||
// labelEXT1DelayTime
|
// labelTurnDelayTime
|
||||||
//
|
//
|
||||||
this.labelEXT1DelayTime.BackColor = System.Drawing.Color.White;
|
this.labelTurnDelayTime.BackColor = System.Drawing.Color.White;
|
||||||
this.labelEXT1DelayTime.BackPictureBox = null;
|
this.labelTurnDelayTime.BackPictureBox = null;
|
||||||
this.labelEXT1DelayTime.BackPictureBox1 = null;
|
this.labelTurnDelayTime.BackPictureBox1 = null;
|
||||||
this.labelEXT1DelayTime.BackPictureBox2 = null;
|
this.labelTurnDelayTime.BackPictureBox2 = null;
|
||||||
this.labelEXT1DelayTime.BorderColor = System.Drawing.Color.Black;
|
this.labelTurnDelayTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelEXT1DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
this.labelTurnDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
||||||
this.labelEXT1DelayTime.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
|
this.labelTurnDelayTime.Font = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelEXT1DelayTime.InitVisible = true;
|
this.labelTurnDelayTime.InitVisible = true;
|
||||||
this.labelEXT1DelayTime.LineSpacing = 0F;
|
this.labelTurnDelayTime.LineSpacing = 0F;
|
||||||
this.labelEXT1DelayTime.Location = new System.Drawing.Point(302, 74);
|
this.labelTurnDelayTime.Location = new System.Drawing.Point(302, 74);
|
||||||
this.labelEXT1DelayTime.Name = "labelEXT1DelayTime";
|
this.labelTurnDelayTime.Name = "labelTurnDelayTime";
|
||||||
this.labelEXT1DelayTime.Size = new System.Drawing.Size(100, 30);
|
this.labelTurnDelayTime.Size = new System.Drawing.Size(100, 30);
|
||||||
this.labelEXT1DelayTime.TabIndex = 5;
|
this.labelTurnDelayTime.TabIndex = 5;
|
||||||
this.labelEXT1DelayTime.Text = "9999";
|
this.labelTurnDelayTime.Text = "9999";
|
||||||
this.labelEXT1DelayTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
this.labelTurnDelayTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||||
this.labelEXT1DelayTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelTurnDelayTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelEXT1DelayTime.Wordwrap = false;
|
this.labelTurnDelayTime.Wordwrap = false;
|
||||||
this.labelEXT1DelayTime.Click += new System.EventHandler(this.labelEXT1DelayTime_Click);
|
this.labelTurnDelayTime.Click += new System.EventHandler(this.labelTurnDelayTime_Click);
|
||||||
//
|
//
|
||||||
// labelStaticEXT1RunTime
|
// labelStaticTurnRunTime
|
||||||
//
|
//
|
||||||
this.labelStaticEXT1RunTime.BackPictureBox = this.smartForm1;
|
this.labelStaticTurnRunTime.BackPictureBox = this.smartForm1;
|
||||||
this.labelStaticEXT1RunTime.BackPictureBox1 = null;
|
this.labelStaticTurnRunTime.BackPictureBox1 = null;
|
||||||
this.labelStaticEXT1RunTime.BackPictureBox2 = null;
|
this.labelStaticTurnRunTime.BackPictureBox2 = null;
|
||||||
this.labelStaticEXT1RunTime.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticTurnRunTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticEXT1RunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticTurnRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticEXT1RunTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticTurnRunTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticEXT1RunTime.InitVisible = true;
|
this.labelStaticTurnRunTime.InitVisible = true;
|
||||||
this.labelStaticEXT1RunTime.LineSpacing = 0F;
|
this.labelStaticTurnRunTime.LineSpacing = 0F;
|
||||||
this.labelStaticEXT1RunTime.Location = new System.Drawing.Point(66, 110);
|
this.labelStaticTurnRunTime.Location = new System.Drawing.Point(66, 110);
|
||||||
this.labelStaticEXT1RunTime.Name = "labelStaticEXT1RunTime";
|
this.labelStaticTurnRunTime.Name = "labelStaticTurnRunTime";
|
||||||
this.labelStaticEXT1RunTime.Size = new System.Drawing.Size(230, 30);
|
this.labelStaticTurnRunTime.Size = new System.Drawing.Size(230, 30);
|
||||||
this.labelStaticEXT1RunTime.TabIndex = 2;
|
this.labelStaticTurnRunTime.TabIndex = 2;
|
||||||
this.labelStaticEXT1RunTime.Text = "턴신호출력 동작시간";
|
this.labelStaticTurnRunTime.Text = "턴신호출력 동작시간";
|
||||||
this.labelStaticEXT1RunTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
this.labelStaticTurnRunTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||||
this.labelStaticEXT1RunTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelStaticTurnRunTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelStaticEXT1RunTime.Wordwrap = false;
|
this.labelStaticTurnRunTime.Wordwrap = false;
|
||||||
//
|
//
|
||||||
// labelStaticEXT1DelayTime
|
// labelStaticTurnDelayTime
|
||||||
//
|
//
|
||||||
this.labelStaticEXT1DelayTime.BackPictureBox = this.smartForm1;
|
this.labelStaticTurnDelayTime.BackPictureBox = this.smartForm1;
|
||||||
this.labelStaticEXT1DelayTime.BackPictureBox1 = null;
|
this.labelStaticTurnDelayTime.BackPictureBox1 = null;
|
||||||
this.labelStaticEXT1DelayTime.BackPictureBox2 = null;
|
this.labelStaticTurnDelayTime.BackPictureBox2 = null;
|
||||||
this.labelStaticEXT1DelayTime.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticTurnDelayTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticEXT1DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticTurnDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticEXT1DelayTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticTurnDelayTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticEXT1DelayTime.InitVisible = true;
|
this.labelStaticTurnDelayTime.InitVisible = true;
|
||||||
this.labelStaticEXT1DelayTime.LineSpacing = 0F;
|
this.labelStaticTurnDelayTime.LineSpacing = 0F;
|
||||||
this.labelStaticEXT1DelayTime.Location = new System.Drawing.Point(66, 74);
|
this.labelStaticTurnDelayTime.Location = new System.Drawing.Point(66, 74);
|
||||||
this.labelStaticEXT1DelayTime.Name = "labelStaticEXT1DelayTime";
|
this.labelStaticTurnDelayTime.Name = "labelStaticTurnDelayTime";
|
||||||
this.labelStaticEXT1DelayTime.Size = new System.Drawing.Size(230, 30);
|
this.labelStaticTurnDelayTime.Size = new System.Drawing.Size(230, 30);
|
||||||
this.labelStaticEXT1DelayTime.TabIndex = 3;
|
this.labelStaticTurnDelayTime.TabIndex = 3;
|
||||||
this.labelStaticEXT1DelayTime.Text = "턴신호출력 지연시간";
|
this.labelStaticTurnDelayTime.Text = "턴신호출력 지연시간";
|
||||||
this.labelStaticEXT1DelayTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
this.labelStaticTurnDelayTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||||
this.labelStaticEXT1DelayTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelStaticTurnDelayTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelStaticEXT1DelayTime.Wordwrap = false;
|
this.labelStaticTurnDelayTime.Wordwrap = false;
|
||||||
//
|
//
|
||||||
// comboBoxDecimalPlaces
|
// comboBoxDecimalPlaces
|
||||||
//
|
//
|
||||||
|
|
@ -896,7 +896,7 @@
|
||||||
this.labelStaticDecimalPoint.BackPictureBox2 = null;
|
this.labelStaticDecimalPoint.BackPictureBox2 = null;
|
||||||
this.labelStaticDecimalPoint.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticDecimalPoint.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticDecimalPoint.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticDecimalPoint.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticDecimalPoint.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticDecimalPoint.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticDecimalPoint.InitVisible = true;
|
this.labelStaticDecimalPoint.InitVisible = true;
|
||||||
this.labelStaticDecimalPoint.LineSpacing = 0F;
|
this.labelStaticDecimalPoint.LineSpacing = 0F;
|
||||||
this.labelStaticDecimalPoint.Location = new System.Drawing.Point(66, 254);
|
this.labelStaticDecimalPoint.Location = new System.Drawing.Point(66, 254);
|
||||||
|
|
@ -915,7 +915,7 @@
|
||||||
this.labelStaticBuzzerOnTime.BackPictureBox2 = null;
|
this.labelStaticBuzzerOnTime.BackPictureBox2 = null;
|
||||||
this.labelStaticBuzzerOnTime.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticBuzzerOnTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticBuzzerOnTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticBuzzerOnTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticBuzzerOnTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticBuzzerOnTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticBuzzerOnTime.InitVisible = true;
|
this.labelStaticBuzzerOnTime.InitVisible = true;
|
||||||
this.labelStaticBuzzerOnTime.LineSpacing = 0F;
|
this.labelStaticBuzzerOnTime.LineSpacing = 0F;
|
||||||
this.labelStaticBuzzerOnTime.Location = new System.Drawing.Point(66, 182);
|
this.labelStaticBuzzerOnTime.Location = new System.Drawing.Point(66, 182);
|
||||||
|
|
@ -934,7 +934,7 @@
|
||||||
this.labelStaticRelayOnTime.BackPictureBox2 = null;
|
this.labelStaticRelayOnTime.BackPictureBox2 = null;
|
||||||
this.labelStaticRelayOnTime.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticRelayOnTime.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticRelayOnTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticRelayOnTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticRelayOnTime.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticRelayOnTime.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticRelayOnTime.InitVisible = true;
|
this.labelStaticRelayOnTime.InitVisible = true;
|
||||||
this.labelStaticRelayOnTime.LineSpacing = 0F;
|
this.labelStaticRelayOnTime.LineSpacing = 0F;
|
||||||
this.labelStaticRelayOnTime.Location = new System.Drawing.Point(66, 218);
|
this.labelStaticRelayOnTime.Location = new System.Drawing.Point(66, 218);
|
||||||
|
|
@ -953,7 +953,7 @@
|
||||||
this.labelStaticChattering.BackPictureBox2 = null;
|
this.labelStaticChattering.BackPictureBox2 = null;
|
||||||
this.labelStaticChattering.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticChattering.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticChattering.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticChattering.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticChattering.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticChattering.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticChattering.InitVisible = true;
|
this.labelStaticChattering.InitVisible = true;
|
||||||
this.labelStaticChattering.LineSpacing = 0F;
|
this.labelStaticChattering.LineSpacing = 0F;
|
||||||
this.labelStaticChattering.Location = new System.Drawing.Point(66, 146);
|
this.labelStaticChattering.Location = new System.Drawing.Point(66, 146);
|
||||||
|
|
@ -1003,7 +1003,7 @@
|
||||||
this.labelStaticBypass.BackPictureBox2 = null;
|
this.labelStaticBypass.BackPictureBox2 = null;
|
||||||
this.labelStaticBypass.BorderColor = System.Drawing.Color.Black;
|
this.labelStaticBypass.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelStaticBypass.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelStaticBypass.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelStaticBypass.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelStaticBypass.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelStaticBypass.InitVisible = true;
|
this.labelStaticBypass.InitVisible = true;
|
||||||
this.labelStaticBypass.LineSpacing = 0F;
|
this.labelStaticBypass.LineSpacing = 0F;
|
||||||
this.labelStaticBypass.Location = new System.Drawing.Point(56, 421);
|
this.labelStaticBypass.Location = new System.Drawing.Point(56, 421);
|
||||||
|
|
@ -1028,7 +1028,7 @@
|
||||||
this.tabControl1.Controls.Add(this.tabPage1);
|
this.tabControl1.Controls.Add(this.tabPage1);
|
||||||
this.tabControl1.Controls.Add(this.tabPage2);
|
this.tabControl1.Controls.Add(this.tabPage2);
|
||||||
this.tabControl1.Controls.Add(this.tabPage3);
|
this.tabControl1.Controls.Add(this.tabPage3);
|
||||||
this.tabControl1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
this.tabControl1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||||
this.tabControl1.Location = new System.Drawing.Point(37, 8);
|
this.tabControl1.Location = new System.Drawing.Point(37, 8);
|
||||||
this.tabControl1.Name = "tabControl1";
|
this.tabControl1.Name = "tabControl1";
|
||||||
this.tabControl1.SelectedIndex = 0;
|
this.tabControl1.SelectedIndex = 0;
|
||||||
|
|
@ -1117,7 +1117,7 @@
|
||||||
this.smartLabel3.BackPictureBox2 = null;
|
this.smartLabel3.BackPictureBox2 = null;
|
||||||
this.smartLabel3.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel3.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel3.InitVisible = true;
|
this.smartLabel3.InitVisible = true;
|
||||||
this.smartLabel3.LineSpacing = 0F;
|
this.smartLabel3.LineSpacing = 0F;
|
||||||
this.smartLabel3.Location = new System.Drawing.Point(29, 505);
|
this.smartLabel3.Location = new System.Drawing.Point(29, 505);
|
||||||
|
|
@ -1137,7 +1137,7 @@
|
||||||
this.smartLabel5.BackPictureBox2 = null;
|
this.smartLabel5.BackPictureBox2 = null;
|
||||||
this.smartLabel5.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel5.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel5.InitVisible = true;
|
this.smartLabel5.InitVisible = true;
|
||||||
this.smartLabel5.LineSpacing = 0F;
|
this.smartLabel5.LineSpacing = 0F;
|
||||||
this.smartLabel5.Location = new System.Drawing.Point(29, 443);
|
this.smartLabel5.Location = new System.Drawing.Point(29, 443);
|
||||||
|
|
@ -1157,7 +1157,7 @@
|
||||||
this.smartLabel8.BackPictureBox2 = null;
|
this.smartLabel8.BackPictureBox2 = null;
|
||||||
this.smartLabel8.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel8.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel8.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel8.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel8.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel8.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel8.InitVisible = true;
|
this.smartLabel8.InitVisible = true;
|
||||||
this.smartLabel8.LineSpacing = 0F;
|
this.smartLabel8.LineSpacing = 0F;
|
||||||
this.smartLabel8.Location = new System.Drawing.Point(29, 474);
|
this.smartLabel8.Location = new System.Drawing.Point(29, 474);
|
||||||
|
|
@ -1177,7 +1177,7 @@
|
||||||
this.smartLabel12.BackPictureBox2 = null;
|
this.smartLabel12.BackPictureBox2 = null;
|
||||||
this.smartLabel12.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel12.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel12.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel12.InitVisible = true;
|
this.smartLabel12.InitVisible = true;
|
||||||
this.smartLabel12.LineSpacing = 0F;
|
this.smartLabel12.LineSpacing = 0F;
|
||||||
this.smartLabel12.Location = new System.Drawing.Point(29, 412);
|
this.smartLabel12.Location = new System.Drawing.Point(29, 412);
|
||||||
|
|
@ -1431,7 +1431,7 @@
|
||||||
//
|
//
|
||||||
// buttonZeroRange
|
// buttonZeroRange
|
||||||
//
|
//
|
||||||
this.buttonZeroRange.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold);
|
this.buttonZeroRange.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonZeroRange.Location = new System.Drawing.Point(135, 5);
|
this.buttonZeroRange.Location = new System.Drawing.Point(135, 5);
|
||||||
this.buttonZeroRange.Name = "buttonZeroRange";
|
this.buttonZeroRange.Name = "buttonZeroRange";
|
||||||
this.buttonZeroRange.Size = new System.Drawing.Size(70, 29);
|
this.buttonZeroRange.Size = new System.Drawing.Size(70, 29);
|
||||||
|
|
@ -1447,7 +1447,7 @@
|
||||||
this.labelLoadcell21.BackPictureBox2 = null;
|
this.labelLoadcell21.BackPictureBox2 = null;
|
||||||
this.labelLoadcell21.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell21.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell21.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell21.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell21.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell21.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell21.InitVisible = true;
|
this.labelLoadcell21.InitVisible = true;
|
||||||
this.labelLoadcell21.LineSpacing = 0F;
|
this.labelLoadcell21.LineSpacing = 0F;
|
||||||
this.labelLoadcell21.Location = new System.Drawing.Point(29, 40);
|
this.labelLoadcell21.Location = new System.Drawing.Point(29, 40);
|
||||||
|
|
@ -1461,7 +1461,7 @@
|
||||||
//
|
//
|
||||||
// buttonZeroTime
|
// buttonZeroTime
|
||||||
//
|
//
|
||||||
this.buttonZeroTime.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold);
|
this.buttonZeroTime.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonZeroTime.Location = new System.Drawing.Point(211, 5);
|
this.buttonZeroTime.Location = new System.Drawing.Point(211, 5);
|
||||||
this.buttonZeroTime.Name = "buttonZeroTime";
|
this.buttonZeroTime.Name = "buttonZeroTime";
|
||||||
this.buttonZeroTime.Size = new System.Drawing.Size(70, 29);
|
this.buttonZeroTime.Size = new System.Drawing.Size(70, 29);
|
||||||
|
|
@ -1477,7 +1477,7 @@
|
||||||
this.smartLabel33.BackPictureBox2 = null;
|
this.smartLabel33.BackPictureBox2 = null;
|
||||||
this.smartLabel33.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel33.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel33.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel33.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel33.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel33.InitVisible = true;
|
this.smartLabel33.InitVisible = true;
|
||||||
this.smartLabel33.LineSpacing = 0F;
|
this.smartLabel33.LineSpacing = 0F;
|
||||||
this.smartLabel33.Location = new System.Drawing.Point(29, 381);
|
this.smartLabel33.Location = new System.Drawing.Point(29, 381);
|
||||||
|
|
@ -1497,7 +1497,7 @@
|
||||||
this.smartLabel25.BackPictureBox2 = null;
|
this.smartLabel25.BackPictureBox2 = null;
|
||||||
this.smartLabel25.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel25.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel25.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
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.InitVisible = true;
|
this.smartLabel25.InitVisible = true;
|
||||||
this.smartLabel25.LineSpacing = 0F;
|
this.smartLabel25.LineSpacing = 0F;
|
||||||
this.smartLabel25.Location = new System.Drawing.Point(29, 319);
|
this.smartLabel25.Location = new System.Drawing.Point(29, 319);
|
||||||
|
|
@ -1517,7 +1517,7 @@
|
||||||
this.smartLabel17.BackPictureBox2 = null;
|
this.smartLabel17.BackPictureBox2 = null;
|
||||||
this.smartLabel17.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel17.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel17.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel17.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel17.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel17.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel17.InitVisible = true;
|
this.smartLabel17.InitVisible = true;
|
||||||
this.smartLabel17.LineSpacing = 0F;
|
this.smartLabel17.LineSpacing = 0F;
|
||||||
this.smartLabel17.Location = new System.Drawing.Point(29, 257);
|
this.smartLabel17.Location = new System.Drawing.Point(29, 257);
|
||||||
|
|
@ -1537,7 +1537,7 @@
|
||||||
this.labelLoadcell26.BackPictureBox2 = null;
|
this.labelLoadcell26.BackPictureBox2 = null;
|
||||||
this.labelLoadcell26.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell26.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell26.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell26.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell26.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell26.InitVisible = true;
|
this.labelLoadcell26.InitVisible = true;
|
||||||
this.labelLoadcell26.LineSpacing = 0F;
|
this.labelLoadcell26.LineSpacing = 0F;
|
||||||
this.labelLoadcell26.Location = new System.Drawing.Point(29, 195);
|
this.labelLoadcell26.Location = new System.Drawing.Point(29, 195);
|
||||||
|
|
@ -1551,7 +1551,7 @@
|
||||||
//
|
//
|
||||||
// buttonZeroVariate
|
// buttonZeroVariate
|
||||||
//
|
//
|
||||||
this.buttonZeroVariate.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold);
|
this.buttonZeroVariate.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonZeroVariate.Location = new System.Drawing.Point(287, 5);
|
this.buttonZeroVariate.Location = new System.Drawing.Point(287, 5);
|
||||||
this.buttonZeroVariate.Name = "buttonZeroVariate";
|
this.buttonZeroVariate.Name = "buttonZeroVariate";
|
||||||
this.buttonZeroVariate.Size = new System.Drawing.Size(70, 29);
|
this.buttonZeroVariate.Size = new System.Drawing.Size(70, 29);
|
||||||
|
|
@ -1567,7 +1567,7 @@
|
||||||
this.smartLabel32.BackPictureBox2 = null;
|
this.smartLabel32.BackPictureBox2 = null;
|
||||||
this.smartLabel32.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel32.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel32.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel32.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel32.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel32.InitVisible = true;
|
this.smartLabel32.InitVisible = true;
|
||||||
this.smartLabel32.LineSpacing = 0F;
|
this.smartLabel32.LineSpacing = 0F;
|
||||||
this.smartLabel32.Location = new System.Drawing.Point(29, 350);
|
this.smartLabel32.Location = new System.Drawing.Point(29, 350);
|
||||||
|
|
@ -1587,7 +1587,7 @@
|
||||||
this.smartLabel24.BackPictureBox2 = null;
|
this.smartLabel24.BackPictureBox2 = null;
|
||||||
this.smartLabel24.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel24.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel24.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel24.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel24.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel24.InitVisible = true;
|
this.smartLabel24.InitVisible = true;
|
||||||
this.smartLabel24.LineSpacing = 0F;
|
this.smartLabel24.LineSpacing = 0F;
|
||||||
this.smartLabel24.Location = new System.Drawing.Point(29, 288);
|
this.smartLabel24.Location = new System.Drawing.Point(29, 288);
|
||||||
|
|
@ -1607,7 +1607,7 @@
|
||||||
this.smartLabel16.BackPictureBox2 = null;
|
this.smartLabel16.BackPictureBox2 = null;
|
||||||
this.smartLabel16.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel16.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel16.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel16.InitVisible = true;
|
this.smartLabel16.InitVisible = true;
|
||||||
this.smartLabel16.LineSpacing = 0F;
|
this.smartLabel16.LineSpacing = 0F;
|
||||||
this.smartLabel16.Location = new System.Drawing.Point(29, 226);
|
this.smartLabel16.Location = new System.Drawing.Point(29, 226);
|
||||||
|
|
@ -1627,7 +1627,7 @@
|
||||||
this.labelLoadcell25.BackPictureBox2 = null;
|
this.labelLoadcell25.BackPictureBox2 = null;
|
||||||
this.labelLoadcell25.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell25.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell25.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell25.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell25.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell25.InitVisible = true;
|
this.labelLoadcell25.InitVisible = true;
|
||||||
this.labelLoadcell25.LineSpacing = 0F;
|
this.labelLoadcell25.LineSpacing = 0F;
|
||||||
this.labelLoadcell25.Location = new System.Drawing.Point(29, 164);
|
this.labelLoadcell25.Location = new System.Drawing.Point(29, 164);
|
||||||
|
|
@ -1667,7 +1667,7 @@
|
||||||
this.labelLoadcell24.BackPictureBox2 = null;
|
this.labelLoadcell24.BackPictureBox2 = null;
|
||||||
this.labelLoadcell24.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell24.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell24.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell24.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell24.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell24.InitVisible = true;
|
this.labelLoadcell24.InitVisible = true;
|
||||||
this.labelLoadcell24.LineSpacing = 0F;
|
this.labelLoadcell24.LineSpacing = 0F;
|
||||||
this.labelLoadcell24.Location = new System.Drawing.Point(29, 133);
|
this.labelLoadcell24.Location = new System.Drawing.Point(29, 133);
|
||||||
|
|
@ -1707,7 +1707,7 @@
|
||||||
this.labelLoadcell22.BackPictureBox2 = null;
|
this.labelLoadcell22.BackPictureBox2 = null;
|
||||||
this.labelLoadcell22.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell22.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell22.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell22.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell22.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell22.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell22.InitVisible = true;
|
this.labelLoadcell22.InitVisible = true;
|
||||||
this.labelLoadcell22.LineSpacing = 0F;
|
this.labelLoadcell22.LineSpacing = 0F;
|
||||||
this.labelLoadcell22.Location = new System.Drawing.Point(29, 71);
|
this.labelLoadcell22.Location = new System.Drawing.Point(29, 71);
|
||||||
|
|
@ -1787,7 +1787,7 @@
|
||||||
this.labelLoadcell23.BackPictureBox2 = null;
|
this.labelLoadcell23.BackPictureBox2 = null;
|
||||||
this.labelLoadcell23.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell23.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell23.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell23.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell23.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell23.InitVisible = true;
|
this.labelLoadcell23.InitVisible = true;
|
||||||
this.labelLoadcell23.LineSpacing = 0F;
|
this.labelLoadcell23.LineSpacing = 0F;
|
||||||
this.labelLoadcell23.Location = new System.Drawing.Point(29, 102);
|
this.labelLoadcell23.Location = new System.Drawing.Point(29, 102);
|
||||||
|
|
@ -2541,7 +2541,7 @@
|
||||||
this.smartLabel23.BackPictureBox2 = null;
|
this.smartLabel23.BackPictureBox2 = null;
|
||||||
this.smartLabel23.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel23.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel23.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel23.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel23.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel23.InitVisible = true;
|
this.smartLabel23.InitVisible = true;
|
||||||
this.smartLabel23.LineSpacing = 0F;
|
this.smartLabel23.LineSpacing = 0F;
|
||||||
this.smartLabel23.Location = new System.Drawing.Point(29, 505);
|
this.smartLabel23.Location = new System.Drawing.Point(29, 505);
|
||||||
|
|
@ -2561,7 +2561,7 @@
|
||||||
this.smartLabel29.BackPictureBox2 = null;
|
this.smartLabel29.BackPictureBox2 = null;
|
||||||
this.smartLabel29.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel29.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel29.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel29.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel29.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel29.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel29.InitVisible = true;
|
this.smartLabel29.InitVisible = true;
|
||||||
this.smartLabel29.LineSpacing = 0F;
|
this.smartLabel29.LineSpacing = 0F;
|
||||||
this.smartLabel29.Location = new System.Drawing.Point(29, 443);
|
this.smartLabel29.Location = new System.Drawing.Point(29, 443);
|
||||||
|
|
@ -2621,7 +2621,7 @@
|
||||||
this.smartLabel34.BackPictureBox2 = null;
|
this.smartLabel34.BackPictureBox2 = null;
|
||||||
this.smartLabel34.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel34.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel34.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel34.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel34.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel34.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel34.InitVisible = true;
|
this.smartLabel34.InitVisible = true;
|
||||||
this.smartLabel34.LineSpacing = 0F;
|
this.smartLabel34.LineSpacing = 0F;
|
||||||
this.smartLabel34.Location = new System.Drawing.Point(29, 474);
|
this.smartLabel34.Location = new System.Drawing.Point(29, 474);
|
||||||
|
|
@ -2641,7 +2641,7 @@
|
||||||
this.smartLabel35.BackPictureBox2 = null;
|
this.smartLabel35.BackPictureBox2 = null;
|
||||||
this.smartLabel35.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel35.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel35.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel35.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel35.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel35.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel35.InitVisible = true;
|
this.smartLabel35.InitVisible = true;
|
||||||
this.smartLabel35.LineSpacing = 0F;
|
this.smartLabel35.LineSpacing = 0F;
|
||||||
this.smartLabel35.Location = new System.Drawing.Point(29, 412);
|
this.smartLabel35.Location = new System.Drawing.Point(29, 412);
|
||||||
|
|
@ -2821,7 +2821,7 @@
|
||||||
this.labelLoadcell11.BackPictureBox2 = null;
|
this.labelLoadcell11.BackPictureBox2 = null;
|
||||||
this.labelLoadcell11.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell11.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell11.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell11.InitVisible = true;
|
this.labelLoadcell11.InitVisible = true;
|
||||||
this.labelLoadcell11.LineSpacing = 0F;
|
this.labelLoadcell11.LineSpacing = 0F;
|
||||||
this.labelLoadcell11.Location = new System.Drawing.Point(29, 40);
|
this.labelLoadcell11.Location = new System.Drawing.Point(29, 40);
|
||||||
|
|
@ -2895,7 +2895,7 @@
|
||||||
//
|
//
|
||||||
// buttonBalanceWeight
|
// buttonBalanceWeight
|
||||||
//
|
//
|
||||||
this.buttonBalanceWeight.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold);
|
this.buttonBalanceWeight.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonBalanceWeight.Location = new System.Drawing.Point(135, 5);
|
this.buttonBalanceWeight.Location = new System.Drawing.Point(135, 5);
|
||||||
this.buttonBalanceWeight.Name = "buttonBalanceWeight";
|
this.buttonBalanceWeight.Name = "buttonBalanceWeight";
|
||||||
this.buttonBalanceWeight.Size = new System.Drawing.Size(70, 30);
|
this.buttonBalanceWeight.Size = new System.Drawing.Size(70, 30);
|
||||||
|
|
@ -3011,7 +3011,7 @@
|
||||||
this.smartLabel38.BackPictureBox2 = null;
|
this.smartLabel38.BackPictureBox2 = null;
|
||||||
this.smartLabel38.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel38.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel38.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel38.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel38.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel38.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel38.InitVisible = true;
|
this.smartLabel38.InitVisible = true;
|
||||||
this.smartLabel38.LineSpacing = 0F;
|
this.smartLabel38.LineSpacing = 0F;
|
||||||
this.smartLabel38.Location = new System.Drawing.Point(29, 381);
|
this.smartLabel38.Location = new System.Drawing.Point(29, 381);
|
||||||
|
|
@ -3031,7 +3031,7 @@
|
||||||
this.smartLabel28.BackPictureBox2 = null;
|
this.smartLabel28.BackPictureBox2 = null;
|
||||||
this.smartLabel28.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel28.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel28.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel28.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel28.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel28.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel28.InitVisible = true;
|
this.smartLabel28.InitVisible = true;
|
||||||
this.smartLabel28.LineSpacing = 0F;
|
this.smartLabel28.LineSpacing = 0F;
|
||||||
this.smartLabel28.Location = new System.Drawing.Point(29, 319);
|
this.smartLabel28.Location = new System.Drawing.Point(29, 319);
|
||||||
|
|
@ -3051,7 +3051,7 @@
|
||||||
this.smartLabel18.BackPictureBox2 = null;
|
this.smartLabel18.BackPictureBox2 = null;
|
||||||
this.smartLabel18.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel18.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel18.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel18.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel18.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel18.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel18.InitVisible = true;
|
this.smartLabel18.InitVisible = true;
|
||||||
this.smartLabel18.LineSpacing = 0F;
|
this.smartLabel18.LineSpacing = 0F;
|
||||||
this.smartLabel18.Location = new System.Drawing.Point(29, 257);
|
this.smartLabel18.Location = new System.Drawing.Point(29, 257);
|
||||||
|
|
@ -3071,7 +3071,7 @@
|
||||||
this.labelLoadcell16.BackPictureBox2 = null;
|
this.labelLoadcell16.BackPictureBox2 = null;
|
||||||
this.labelLoadcell16.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell16.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell16.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell16.InitVisible = true;
|
this.labelLoadcell16.InitVisible = true;
|
||||||
this.labelLoadcell16.LineSpacing = 0F;
|
this.labelLoadcell16.LineSpacing = 0F;
|
||||||
this.labelLoadcell16.Location = new System.Drawing.Point(29, 195);
|
this.labelLoadcell16.Location = new System.Drawing.Point(29, 195);
|
||||||
|
|
@ -3251,7 +3251,7 @@
|
||||||
this.smartLabel36.BackPictureBox2 = null;
|
this.smartLabel36.BackPictureBox2 = null;
|
||||||
this.smartLabel36.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel36.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel36.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel36.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel36.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel36.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel36.InitVisible = true;
|
this.smartLabel36.InitVisible = true;
|
||||||
this.smartLabel36.LineSpacing = 0F;
|
this.smartLabel36.LineSpacing = 0F;
|
||||||
this.smartLabel36.Location = new System.Drawing.Point(29, 350);
|
this.smartLabel36.Location = new System.Drawing.Point(29, 350);
|
||||||
|
|
@ -3271,7 +3271,7 @@
|
||||||
this.smartLabel26.BackPictureBox2 = null;
|
this.smartLabel26.BackPictureBox2 = null;
|
||||||
this.smartLabel26.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel26.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel26.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel26.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel26.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel26.InitVisible = true;
|
this.smartLabel26.InitVisible = true;
|
||||||
this.smartLabel26.LineSpacing = 0F;
|
this.smartLabel26.LineSpacing = 0F;
|
||||||
this.smartLabel26.Location = new System.Drawing.Point(29, 288);
|
this.smartLabel26.Location = new System.Drawing.Point(29, 288);
|
||||||
|
|
@ -3291,7 +3291,7 @@
|
||||||
this.smartLabel14.BackPictureBox2 = null;
|
this.smartLabel14.BackPictureBox2 = null;
|
||||||
this.smartLabel14.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel14.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel14.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel14.InitVisible = true;
|
this.smartLabel14.InitVisible = true;
|
||||||
this.smartLabel14.LineSpacing = 0F;
|
this.smartLabel14.LineSpacing = 0F;
|
||||||
this.smartLabel14.Location = new System.Drawing.Point(29, 226);
|
this.smartLabel14.Location = new System.Drawing.Point(29, 226);
|
||||||
|
|
@ -3311,7 +3311,7 @@
|
||||||
this.labelLoadcell15.BackPictureBox2 = null;
|
this.labelLoadcell15.BackPictureBox2 = null;
|
||||||
this.labelLoadcell15.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell15.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell15.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell15.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell15.InitVisible = true;
|
this.labelLoadcell15.InitVisible = true;
|
||||||
this.labelLoadcell15.LineSpacing = 0F;
|
this.labelLoadcell15.LineSpacing = 0F;
|
||||||
this.labelLoadcell15.Location = new System.Drawing.Point(29, 164);
|
this.labelLoadcell15.Location = new System.Drawing.Point(29, 164);
|
||||||
|
|
@ -3411,7 +3411,7 @@
|
||||||
this.labelLoadcell14.BackPictureBox2 = null;
|
this.labelLoadcell14.BackPictureBox2 = null;
|
||||||
this.labelLoadcell14.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell14.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell14.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell14.InitVisible = true;
|
this.labelLoadcell14.InitVisible = true;
|
||||||
this.labelLoadcell14.LineSpacing = 0F;
|
this.labelLoadcell14.LineSpacing = 0F;
|
||||||
this.labelLoadcell14.Location = new System.Drawing.Point(29, 133);
|
this.labelLoadcell14.Location = new System.Drawing.Point(29, 133);
|
||||||
|
|
@ -3431,7 +3431,7 @@
|
||||||
this.labelLoadcell12.BackPictureBox2 = null;
|
this.labelLoadcell12.BackPictureBox2 = null;
|
||||||
this.labelLoadcell12.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell12.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell12.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell12.InitVisible = true;
|
this.labelLoadcell12.InitVisible = true;
|
||||||
this.labelLoadcell12.LineSpacing = 0F;
|
this.labelLoadcell12.LineSpacing = 0F;
|
||||||
this.labelLoadcell12.Location = new System.Drawing.Point(29, 71);
|
this.labelLoadcell12.Location = new System.Drawing.Point(29, 71);
|
||||||
|
|
@ -3771,7 +3771,7 @@
|
||||||
this.labelLoadcell13.BackPictureBox2 = null;
|
this.labelLoadcell13.BackPictureBox2 = null;
|
||||||
this.labelLoadcell13.BorderColor = System.Drawing.Color.Black;
|
this.labelLoadcell13.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelLoadcell13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelLoadcell13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelLoadcell13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.labelLoadcell13.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelLoadcell13.InitVisible = true;
|
this.labelLoadcell13.InitVisible = true;
|
||||||
this.labelLoadcell13.LineSpacing = 0F;
|
this.labelLoadcell13.LineSpacing = 0F;
|
||||||
this.labelLoadcell13.Location = new System.Drawing.Point(29, 102);
|
this.labelLoadcell13.Location = new System.Drawing.Point(29, 102);
|
||||||
|
|
@ -3785,7 +3785,7 @@
|
||||||
//
|
//
|
||||||
// buttonDigit
|
// buttonDigit
|
||||||
//
|
//
|
||||||
this.buttonDigit.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold);
|
this.buttonDigit.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonDigit.Location = new System.Drawing.Point(287, 5);
|
this.buttonDigit.Location = new System.Drawing.Point(287, 5);
|
||||||
this.buttonDigit.Name = "buttonDigit";
|
this.buttonDigit.Name = "buttonDigit";
|
||||||
this.buttonDigit.Size = new System.Drawing.Size(70, 30);
|
this.buttonDigit.Size = new System.Drawing.Size(70, 30);
|
||||||
|
|
@ -3795,7 +3795,7 @@
|
||||||
//
|
//
|
||||||
// buttonMaxWeight
|
// buttonMaxWeight
|
||||||
//
|
//
|
||||||
this.buttonMaxWeight.Font = new System.Drawing.Font("New Gulim", 8F, System.Drawing.FontStyle.Bold);
|
this.buttonMaxWeight.Font = new System.Drawing.Font("새굴림", 8F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonMaxWeight.Location = new System.Drawing.Point(211, 5);
|
this.buttonMaxWeight.Location = new System.Drawing.Point(211, 5);
|
||||||
this.buttonMaxWeight.Name = "buttonMaxWeight";
|
this.buttonMaxWeight.Name = "buttonMaxWeight";
|
||||||
this.buttonMaxWeight.Size = new System.Drawing.Size(70, 30);
|
this.buttonMaxWeight.Size = new System.Drawing.Size(70, 30);
|
||||||
|
|
@ -3891,7 +3891,7 @@
|
||||||
this.smartLabel30.BackPictureBox2 = null;
|
this.smartLabel30.BackPictureBox2 = null;
|
||||||
this.smartLabel30.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel30.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel30.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel30.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel30.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel30.InitVisible = true;
|
this.smartLabel30.InitVisible = true;
|
||||||
this.smartLabel30.LineSpacing = 0F;
|
this.smartLabel30.LineSpacing = 0F;
|
||||||
this.smartLabel30.Location = new System.Drawing.Point(29, 505);
|
this.smartLabel30.Location = new System.Drawing.Point(29, 505);
|
||||||
|
|
@ -3911,7 +3911,7 @@
|
||||||
this.smartLabel31.BackPictureBox2 = null;
|
this.smartLabel31.BackPictureBox2 = null;
|
||||||
this.smartLabel31.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel31.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel31.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel31.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel31.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel31.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel31.InitVisible = true;
|
this.smartLabel31.InitVisible = true;
|
||||||
this.smartLabel31.LineSpacing = 0F;
|
this.smartLabel31.LineSpacing = 0F;
|
||||||
this.smartLabel31.Location = new System.Drawing.Point(29, 443);
|
this.smartLabel31.Location = new System.Drawing.Point(29, 443);
|
||||||
|
|
@ -3971,7 +3971,7 @@
|
||||||
this.smartLabel40.BackPictureBox2 = null;
|
this.smartLabel40.BackPictureBox2 = null;
|
||||||
this.smartLabel40.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel40.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel40.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel40.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel40.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel40.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel40.InitVisible = true;
|
this.smartLabel40.InitVisible = true;
|
||||||
this.smartLabel40.LineSpacing = 0F;
|
this.smartLabel40.LineSpacing = 0F;
|
||||||
this.smartLabel40.Location = new System.Drawing.Point(29, 474);
|
this.smartLabel40.Location = new System.Drawing.Point(29, 474);
|
||||||
|
|
@ -3991,7 +3991,7 @@
|
||||||
this.smartLabel41.BackPictureBox2 = null;
|
this.smartLabel41.BackPictureBox2 = null;
|
||||||
this.smartLabel41.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel41.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel41.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel41.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel41.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel41.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel41.InitVisible = true;
|
this.smartLabel41.InitVisible = true;
|
||||||
this.smartLabel41.LineSpacing = 0F;
|
this.smartLabel41.LineSpacing = 0F;
|
||||||
this.smartLabel41.Location = new System.Drawing.Point(29, 412);
|
this.smartLabel41.Location = new System.Drawing.Point(29, 412);
|
||||||
|
|
@ -4011,7 +4011,7 @@
|
||||||
this.smartLabel1.BackPictureBox2 = null;
|
this.smartLabel1.BackPictureBox2 = null;
|
||||||
this.smartLabel1.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel1.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
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.InitVisible = true;
|
this.smartLabel1.InitVisible = true;
|
||||||
this.smartLabel1.LineSpacing = 0F;
|
this.smartLabel1.LineSpacing = 0F;
|
||||||
this.smartLabel1.Location = new System.Drawing.Point(29, 40);
|
this.smartLabel1.Location = new System.Drawing.Point(29, 40);
|
||||||
|
|
@ -4191,7 +4191,7 @@
|
||||||
this.smartLabel27.BackPictureBox2 = null;
|
this.smartLabel27.BackPictureBox2 = null;
|
||||||
this.smartLabel27.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel27.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel27.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel27.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel27.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel27.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel27.InitVisible = true;
|
this.smartLabel27.InitVisible = true;
|
||||||
this.smartLabel27.LineSpacing = 0F;
|
this.smartLabel27.LineSpacing = 0F;
|
||||||
this.smartLabel27.Location = new System.Drawing.Point(29, 381);
|
this.smartLabel27.Location = new System.Drawing.Point(29, 381);
|
||||||
|
|
@ -4211,7 +4211,7 @@
|
||||||
this.smartLabel20.BackPictureBox2 = null;
|
this.smartLabel20.BackPictureBox2 = null;
|
||||||
this.smartLabel20.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel20.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel20.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel20.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel20.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel20.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel20.InitVisible = true;
|
this.smartLabel20.InitVisible = true;
|
||||||
this.smartLabel20.LineSpacing = 0F;
|
this.smartLabel20.LineSpacing = 0F;
|
||||||
this.smartLabel20.Location = new System.Drawing.Point(29, 319);
|
this.smartLabel20.Location = new System.Drawing.Point(29, 319);
|
||||||
|
|
@ -4231,7 +4231,7 @@
|
||||||
this.smartLabel6.BackPictureBox2 = null;
|
this.smartLabel6.BackPictureBox2 = null;
|
||||||
this.smartLabel6.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel6.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel6.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel6.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel6.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel6.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel6.InitVisible = true;
|
this.smartLabel6.InitVisible = true;
|
||||||
this.smartLabel6.LineSpacing = 0F;
|
this.smartLabel6.LineSpacing = 0F;
|
||||||
this.smartLabel6.Location = new System.Drawing.Point(29, 257);
|
this.smartLabel6.Location = new System.Drawing.Point(29, 257);
|
||||||
|
|
@ -4251,7 +4251,7 @@
|
||||||
this.smartLabel7.BackPictureBox2 = null;
|
this.smartLabel7.BackPictureBox2 = null;
|
||||||
this.smartLabel7.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel7.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel7.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel7.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel7.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel7.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel7.InitVisible = true;
|
this.smartLabel7.InitVisible = true;
|
||||||
this.smartLabel7.LineSpacing = 0F;
|
this.smartLabel7.LineSpacing = 0F;
|
||||||
this.smartLabel7.Location = new System.Drawing.Point(29, 195);
|
this.smartLabel7.Location = new System.Drawing.Point(29, 195);
|
||||||
|
|
@ -4351,7 +4351,7 @@
|
||||||
this.smartLabel22.BackPictureBox2 = null;
|
this.smartLabel22.BackPictureBox2 = null;
|
||||||
this.smartLabel22.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel22.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel22.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel22.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel22.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel22.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel22.InitVisible = true;
|
this.smartLabel22.InitVisible = true;
|
||||||
this.smartLabel22.LineSpacing = 0F;
|
this.smartLabel22.LineSpacing = 0F;
|
||||||
this.smartLabel22.Location = new System.Drawing.Point(29, 350);
|
this.smartLabel22.Location = new System.Drawing.Point(29, 350);
|
||||||
|
|
@ -4371,7 +4371,7 @@
|
||||||
this.smartLabel15.BackPictureBox2 = null;
|
this.smartLabel15.BackPictureBox2 = null;
|
||||||
this.smartLabel15.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel15.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel15.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel15.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel15.InitVisible = true;
|
this.smartLabel15.InitVisible = true;
|
||||||
this.smartLabel15.LineSpacing = 0F;
|
this.smartLabel15.LineSpacing = 0F;
|
||||||
this.smartLabel15.Location = new System.Drawing.Point(29, 288);
|
this.smartLabel15.Location = new System.Drawing.Point(29, 288);
|
||||||
|
|
@ -4391,7 +4391,7 @@
|
||||||
this.smartLabel2.BackPictureBox2 = null;
|
this.smartLabel2.BackPictureBox2 = null;
|
||||||
this.smartLabel2.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel2.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel2.InitVisible = true;
|
this.smartLabel2.InitVisible = true;
|
||||||
this.smartLabel2.LineSpacing = 0F;
|
this.smartLabel2.LineSpacing = 0F;
|
||||||
this.smartLabel2.Location = new System.Drawing.Point(29, 226);
|
this.smartLabel2.Location = new System.Drawing.Point(29, 226);
|
||||||
|
|
@ -4411,7 +4411,7 @@
|
||||||
this.smartLabel9.BackPictureBox2 = null;
|
this.smartLabel9.BackPictureBox2 = null;
|
||||||
this.smartLabel9.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel9.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel9.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel9.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel9.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel9.InitVisible = true;
|
this.smartLabel9.InitVisible = true;
|
||||||
this.smartLabel9.LineSpacing = 0F;
|
this.smartLabel9.LineSpacing = 0F;
|
||||||
this.smartLabel9.Location = new System.Drawing.Point(29, 164);
|
this.smartLabel9.Location = new System.Drawing.Point(29, 164);
|
||||||
|
|
@ -4431,7 +4431,7 @@
|
||||||
this.smartLabel10.BackPictureBox2 = null;
|
this.smartLabel10.BackPictureBox2 = null;
|
||||||
this.smartLabel10.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel10.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel10.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel10.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel10.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel10.InitVisible = true;
|
this.smartLabel10.InitVisible = true;
|
||||||
this.smartLabel10.LineSpacing = 0F;
|
this.smartLabel10.LineSpacing = 0F;
|
||||||
this.smartLabel10.Location = new System.Drawing.Point(29, 133);
|
this.smartLabel10.Location = new System.Drawing.Point(29, 133);
|
||||||
|
|
@ -4451,7 +4451,7 @@
|
||||||
this.smartLabel11.BackPictureBox2 = null;
|
this.smartLabel11.BackPictureBox2 = null;
|
||||||
this.smartLabel11.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel11.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel11.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel11.InitVisible = true;
|
this.smartLabel11.InitVisible = true;
|
||||||
this.smartLabel11.LineSpacing = 0F;
|
this.smartLabel11.LineSpacing = 0F;
|
||||||
this.smartLabel11.Location = new System.Drawing.Point(29, 71);
|
this.smartLabel11.Location = new System.Drawing.Point(29, 71);
|
||||||
|
|
@ -4471,7 +4471,7 @@
|
||||||
this.smartLabel13.BackPictureBox2 = null;
|
this.smartLabel13.BackPictureBox2 = null;
|
||||||
this.smartLabel13.BorderColor = System.Drawing.Color.Black;
|
this.smartLabel13.BorderColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.smartLabel13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.smartLabel13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.smartLabel13.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.smartLabel13.InitVisible = true;
|
this.smartLabel13.InitVisible = true;
|
||||||
this.smartLabel13.LineSpacing = 0F;
|
this.smartLabel13.LineSpacing = 0F;
|
||||||
this.smartLabel13.Location = new System.Drawing.Point(29, 102);
|
this.smartLabel13.Location = new System.Drawing.Point(29, 102);
|
||||||
|
|
@ -4485,7 +4485,7 @@
|
||||||
//
|
//
|
||||||
// buttonFilter
|
// buttonFilter
|
||||||
//
|
//
|
||||||
this.buttonFilter.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
this.buttonFilter.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonFilter.Location = new System.Drawing.Point(135, 5);
|
this.buttonFilter.Location = new System.Drawing.Point(135, 5);
|
||||||
this.buttonFilter.Name = "buttonFilter";
|
this.buttonFilter.Name = "buttonFilter";
|
||||||
this.buttonFilter.Size = new System.Drawing.Size(70, 30);
|
this.buttonFilter.Size = new System.Drawing.Size(70, 30);
|
||||||
|
|
@ -4500,7 +4500,7 @@
|
||||||
this.labelTitle.BackPictureBox2 = null;
|
this.labelTitle.BackPictureBox2 = null;
|
||||||
this.labelTitle.BorderColor = System.Drawing.Color.Black;
|
this.labelTitle.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitle.Font = new System.Drawing.Font("New Gulim", 35F, System.Drawing.FontStyle.Bold);
|
this.labelTitle.Font = new System.Drawing.Font("새굴림", 35F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitle.InitVisible = true;
|
this.labelTitle.InitVisible = true;
|
||||||
this.labelTitle.LineSpacing = 0F;
|
this.labelTitle.LineSpacing = 0F;
|
||||||
this.labelTitle.Location = new System.Drawing.Point(199, 7);
|
this.labelTitle.Location = new System.Drawing.Point(199, 7);
|
||||||
|
|
@ -4557,7 +4557,7 @@
|
||||||
this.groupBoxBypass.Controls.Add(this.labelTitleLine2);
|
this.groupBoxBypass.Controls.Add(this.labelTitleLine2);
|
||||||
this.groupBoxBypass.Controls.Add(this.labelTitleLine1);
|
this.groupBoxBypass.Controls.Add(this.labelTitleLine1);
|
||||||
this.groupBoxBypass.Controls.Add(this.labelStaticBypass);
|
this.groupBoxBypass.Controls.Add(this.labelStaticBypass);
|
||||||
this.groupBoxBypass.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.groupBoxBypass.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.groupBoxBypass.FrameLineColor1 = System.Drawing.Color.Black;
|
this.groupBoxBypass.FrameLineColor1 = System.Drawing.Color.Black;
|
||||||
this.groupBoxBypass.FrameLineColor2 = System.Drawing.Color.Black;
|
this.groupBoxBypass.FrameLineColor2 = System.Drawing.Color.Black;
|
||||||
this.groupBoxBypass.FrameLineThickness = 1;
|
this.groupBoxBypass.FrameLineThickness = 1;
|
||||||
|
|
@ -4656,7 +4656,7 @@
|
||||||
this.labelTitleLine16.BackPictureBox2 = null;
|
this.labelTitleLine16.BackPictureBox2 = null;
|
||||||
this.labelTitleLine16.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine16.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine16.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine16.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine16.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine16.InitVisible = true;
|
this.labelTitleLine16.InitVisible = true;
|
||||||
this.labelTitleLine16.LineSpacing = 0F;
|
this.labelTitleLine16.LineSpacing = 0F;
|
||||||
this.labelTitleLine16.Location = new System.Drawing.Point(264, 292);
|
this.labelTitleLine16.Location = new System.Drawing.Point(264, 292);
|
||||||
|
|
@ -4675,7 +4675,7 @@
|
||||||
this.labelTitleLine15.BackPictureBox2 = null;
|
this.labelTitleLine15.BackPictureBox2 = null;
|
||||||
this.labelTitleLine15.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine15.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine15.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine15.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine15.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine15.InitVisible = true;
|
this.labelTitleLine15.InitVisible = true;
|
||||||
this.labelTitleLine15.LineSpacing = 0F;
|
this.labelTitleLine15.LineSpacing = 0F;
|
||||||
this.labelTitleLine15.Location = new System.Drawing.Point(23, 292);
|
this.labelTitleLine15.Location = new System.Drawing.Point(23, 292);
|
||||||
|
|
@ -4756,7 +4756,7 @@
|
||||||
this.labelTitleLine14.BackPictureBox2 = null;
|
this.labelTitleLine14.BackPictureBox2 = null;
|
||||||
this.labelTitleLine14.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine14.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine14.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine14.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine14.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine14.InitVisible = true;
|
this.labelTitleLine14.InitVisible = true;
|
||||||
this.labelTitleLine14.LineSpacing = 0F;
|
this.labelTitleLine14.LineSpacing = 0F;
|
||||||
this.labelTitleLine14.Location = new System.Drawing.Point(264, 256);
|
this.labelTitleLine14.Location = new System.Drawing.Point(264, 256);
|
||||||
|
|
@ -4775,7 +4775,7 @@
|
||||||
this.labelTitleLine13.BackPictureBox2 = null;
|
this.labelTitleLine13.BackPictureBox2 = null;
|
||||||
this.labelTitleLine13.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine13.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine13.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine13.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine13.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine13.InitVisible = true;
|
this.labelTitleLine13.InitVisible = true;
|
||||||
this.labelTitleLine13.LineSpacing = 0F;
|
this.labelTitleLine13.LineSpacing = 0F;
|
||||||
this.labelTitleLine13.Location = new System.Drawing.Point(23, 256);
|
this.labelTitleLine13.Location = new System.Drawing.Point(23, 256);
|
||||||
|
|
@ -4790,7 +4790,7 @@
|
||||||
// buttonSaveBypass
|
// buttonSaveBypass
|
||||||
//
|
//
|
||||||
this.buttonSaveBypass.Enabled = false;
|
this.buttonSaveBypass.Enabled = false;
|
||||||
this.buttonSaveBypass.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
this.buttonSaveBypass.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||||
this.buttonSaveBypass.Location = new System.Drawing.Point(215, 345);
|
this.buttonSaveBypass.Location = new System.Drawing.Point(215, 345);
|
||||||
this.buttonSaveBypass.Name = "buttonSaveBypass";
|
this.buttonSaveBypass.Name = "buttonSaveBypass";
|
||||||
this.buttonSaveBypass.Size = new System.Drawing.Size(100, 30);
|
this.buttonSaveBypass.Size = new System.Drawing.Size(100, 30);
|
||||||
|
|
@ -5177,7 +5177,7 @@
|
||||||
this.labelTitleLine12.BackPictureBox2 = null;
|
this.labelTitleLine12.BackPictureBox2 = null;
|
||||||
this.labelTitleLine12.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine12.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine12.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine12.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine12.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine12.InitVisible = true;
|
this.labelTitleLine12.InitVisible = true;
|
||||||
this.labelTitleLine12.LineSpacing = 0F;
|
this.labelTitleLine12.LineSpacing = 0F;
|
||||||
this.labelTitleLine12.Location = new System.Drawing.Point(264, 220);
|
this.labelTitleLine12.Location = new System.Drawing.Point(264, 220);
|
||||||
|
|
@ -5196,7 +5196,7 @@
|
||||||
this.labelTitleLine11.BackPictureBox2 = null;
|
this.labelTitleLine11.BackPictureBox2 = null;
|
||||||
this.labelTitleLine11.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine11.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine11.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine11.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine11.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine11.InitVisible = true;
|
this.labelTitleLine11.InitVisible = true;
|
||||||
this.labelTitleLine11.LineSpacing = 0F;
|
this.labelTitleLine11.LineSpacing = 0F;
|
||||||
this.labelTitleLine11.Location = new System.Drawing.Point(23, 220);
|
this.labelTitleLine11.Location = new System.Drawing.Point(23, 220);
|
||||||
|
|
@ -5215,7 +5215,7 @@
|
||||||
this.labelTitleLine10.BackPictureBox2 = null;
|
this.labelTitleLine10.BackPictureBox2 = null;
|
||||||
this.labelTitleLine10.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine10.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine10.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine10.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine10.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine10.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine10.InitVisible = true;
|
this.labelTitleLine10.InitVisible = true;
|
||||||
this.labelTitleLine10.LineSpacing = 0F;
|
this.labelTitleLine10.LineSpacing = 0F;
|
||||||
this.labelTitleLine10.Location = new System.Drawing.Point(264, 184);
|
this.labelTitleLine10.Location = new System.Drawing.Point(264, 184);
|
||||||
|
|
@ -5234,7 +5234,7 @@
|
||||||
this.labelTitleLine9.BackPictureBox2 = null;
|
this.labelTitleLine9.BackPictureBox2 = null;
|
||||||
this.labelTitleLine9.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine9.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine9.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine9.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine9.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine9.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine9.InitVisible = true;
|
this.labelTitleLine9.InitVisible = true;
|
||||||
this.labelTitleLine9.LineSpacing = 0F;
|
this.labelTitleLine9.LineSpacing = 0F;
|
||||||
this.labelTitleLine9.Location = new System.Drawing.Point(23, 184);
|
this.labelTitleLine9.Location = new System.Drawing.Point(23, 184);
|
||||||
|
|
@ -5253,7 +5253,7 @@
|
||||||
this.labelTitleLine8.BackPictureBox2 = null;
|
this.labelTitleLine8.BackPictureBox2 = null;
|
||||||
this.labelTitleLine8.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine8.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine8.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine8.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine8.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine8.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine8.InitVisible = true;
|
this.labelTitleLine8.InitVisible = true;
|
||||||
this.labelTitleLine8.LineSpacing = 0F;
|
this.labelTitleLine8.LineSpacing = 0F;
|
||||||
this.labelTitleLine8.Location = new System.Drawing.Point(264, 148);
|
this.labelTitleLine8.Location = new System.Drawing.Point(264, 148);
|
||||||
|
|
@ -5272,7 +5272,7 @@
|
||||||
this.labelTitleLine7.BackPictureBox2 = null;
|
this.labelTitleLine7.BackPictureBox2 = null;
|
||||||
this.labelTitleLine7.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine7.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine7.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine7.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine7.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine7.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine7.InitVisible = true;
|
this.labelTitleLine7.InitVisible = true;
|
||||||
this.labelTitleLine7.LineSpacing = 0F;
|
this.labelTitleLine7.LineSpacing = 0F;
|
||||||
this.labelTitleLine7.Location = new System.Drawing.Point(23, 148);
|
this.labelTitleLine7.Location = new System.Drawing.Point(23, 148);
|
||||||
|
|
@ -5291,7 +5291,7 @@
|
||||||
this.labelTitleLine6.BackPictureBox2 = null;
|
this.labelTitleLine6.BackPictureBox2 = null;
|
||||||
this.labelTitleLine6.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine6.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine6.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine6.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine6.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine6.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine6.InitVisible = true;
|
this.labelTitleLine6.InitVisible = true;
|
||||||
this.labelTitleLine6.LineSpacing = 0F;
|
this.labelTitleLine6.LineSpacing = 0F;
|
||||||
this.labelTitleLine6.Location = new System.Drawing.Point(264, 112);
|
this.labelTitleLine6.Location = new System.Drawing.Point(264, 112);
|
||||||
|
|
@ -5310,7 +5310,7 @@
|
||||||
this.labelTitleLine5.BackPictureBox2 = null;
|
this.labelTitleLine5.BackPictureBox2 = null;
|
||||||
this.labelTitleLine5.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine5.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine5.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine5.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine5.InitVisible = true;
|
this.labelTitleLine5.InitVisible = true;
|
||||||
this.labelTitleLine5.LineSpacing = 0F;
|
this.labelTitleLine5.LineSpacing = 0F;
|
||||||
this.labelTitleLine5.Location = new System.Drawing.Point(23, 112);
|
this.labelTitleLine5.Location = new System.Drawing.Point(23, 112);
|
||||||
|
|
@ -5329,7 +5329,7 @@
|
||||||
this.labelTitleLine4.BackPictureBox2 = null;
|
this.labelTitleLine4.BackPictureBox2 = null;
|
||||||
this.labelTitleLine4.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine4.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine4.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine4.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine4.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine4.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine4.InitVisible = true;
|
this.labelTitleLine4.InitVisible = true;
|
||||||
this.labelTitleLine4.LineSpacing = 0F;
|
this.labelTitleLine4.LineSpacing = 0F;
|
||||||
this.labelTitleLine4.Location = new System.Drawing.Point(264, 76);
|
this.labelTitleLine4.Location = new System.Drawing.Point(264, 76);
|
||||||
|
|
@ -5348,7 +5348,7 @@
|
||||||
this.labelTitleLine3.BackPictureBox2 = null;
|
this.labelTitleLine3.BackPictureBox2 = null;
|
||||||
this.labelTitleLine3.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine3.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine3.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine3.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine3.InitVisible = true;
|
this.labelTitleLine3.InitVisible = true;
|
||||||
this.labelTitleLine3.LineSpacing = 0F;
|
this.labelTitleLine3.LineSpacing = 0F;
|
||||||
this.labelTitleLine3.Location = new System.Drawing.Point(23, 76);
|
this.labelTitleLine3.Location = new System.Drawing.Point(23, 76);
|
||||||
|
|
@ -5367,7 +5367,7 @@
|
||||||
this.labelTitleLine2.BackPictureBox2 = null;
|
this.labelTitleLine2.BackPictureBox2 = null;
|
||||||
this.labelTitleLine2.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine2.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine2.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine2.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine2.InitVisible = true;
|
this.labelTitleLine2.InitVisible = true;
|
||||||
this.labelTitleLine2.LineSpacing = 0F;
|
this.labelTitleLine2.LineSpacing = 0F;
|
||||||
this.labelTitleLine2.Location = new System.Drawing.Point(264, 40);
|
this.labelTitleLine2.Location = new System.Drawing.Point(264, 40);
|
||||||
|
|
@ -5386,7 +5386,7 @@
|
||||||
this.labelTitleLine1.BackPictureBox2 = null;
|
this.labelTitleLine1.BackPictureBox2 = null;
|
||||||
this.labelTitleLine1.BorderColor = System.Drawing.Color.Black;
|
this.labelTitleLine1.BorderColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleLine1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.labelTitleLine1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
this.labelTitleLine1.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
this.labelTitleLine1.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Bold);
|
||||||
this.labelTitleLine1.InitVisible = true;
|
this.labelTitleLine1.InitVisible = true;
|
||||||
this.labelTitleLine1.LineSpacing = 0F;
|
this.labelTitleLine1.LineSpacing = 0F;
|
||||||
this.labelTitleLine1.Location = new System.Drawing.Point(23, 40);
|
this.labelTitleLine1.Location = new System.Drawing.Point(23, 40);
|
||||||
|
|
@ -5655,10 +5655,10 @@
|
||||||
private SmartX.SmartLabel labelProtocolDescriptionCOM3_1;
|
private SmartX.SmartLabel labelProtocolDescriptionCOM3_1;
|
||||||
private SmartX.SmartLabel labelProtocolDescriptionCOM3_2;
|
private SmartX.SmartLabel labelProtocolDescriptionCOM3_2;
|
||||||
private SmartX.SmartButton buttonScreen;
|
private SmartX.SmartButton buttonScreen;
|
||||||
private SmartX.SmartLabel labelEXT1RunTime;
|
private SmartX.SmartLabel labelTurnRunTime;
|
||||||
private SmartX.SmartLabel labelEXT1DelayTime;
|
private SmartX.SmartLabel labelTurnDelayTime;
|
||||||
private SmartX.SmartLabel labelStaticEXT1RunTime;
|
private SmartX.SmartLabel labelStaticTurnRunTime;
|
||||||
private SmartX.SmartLabel labelStaticEXT1DelayTime;
|
private SmartX.SmartLabel labelStaticTurnDelayTime;
|
||||||
public SmartX.SmartLabel labelEmptyWeight;
|
public SmartX.SmartLabel labelEmptyWeight;
|
||||||
private SmartX.SmartLabel labelStaticEmptyWeight;
|
private SmartX.SmartLabel labelStaticEmptyWeight;
|
||||||
private SmartX.SmartButton buttonBypassLane16;
|
private SmartX.SmartButton buttonBypassLane16;
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -31,14 +31,11 @@
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDataBackup_Part11));
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDataBackup_Part11));
|
||||||
this.smartForm1 = new SmartX.SmartForm();
|
this.smartForm1 = new SmartX.SmartForm();
|
||||||
this.labelTitle = new SmartX.SmartLabel();
|
this.labelTitle = new SmartX.SmartLabel();
|
||||||
this.buttonBack = new SmartX.SmartButton();
|
|
||||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||||
this.treeViewInspection = new System.Windows.Forms.TreeView();
|
this.treeViewInspection = new System.Windows.Forms.TreeView();
|
||||||
this.buttonInspectionBackup = new SmartX.SmartButton();
|
|
||||||
this.labelInspectionFileCount = new SmartX.SmartLabel();
|
this.labelInspectionFileCount = new SmartX.SmartLabel();
|
||||||
this.smartGroupBox2 = new SmartX.SmartGroupBox();
|
this.smartGroupBox2 = new SmartX.SmartGroupBox();
|
||||||
this.treeViewHistory = new System.Windows.Forms.TreeView();
|
this.treeViewHistory = new System.Windows.Forms.TreeView();
|
||||||
this.buttonHistoryBackup = new SmartX.SmartButton();
|
|
||||||
this.labelHistoryFileCount = new SmartX.SmartLabel();
|
this.labelHistoryFileCount = new SmartX.SmartLabel();
|
||||||
this.labelFileName = new SmartX.SmartLabel();
|
this.labelFileName = new SmartX.SmartLabel();
|
||||||
this.labelPercentage = new SmartX.SmartLabel();
|
this.labelPercentage = new SmartX.SmartLabel();
|
||||||
|
|
@ -46,8 +43,11 @@
|
||||||
this.timerFileCopy = new System.Windows.Forms.Timer();
|
this.timerFileCopy = new System.Windows.Forms.Timer();
|
||||||
this.smartGroupBox3 = new SmartX.SmartGroupBox();
|
this.smartGroupBox3 = new SmartX.SmartGroupBox();
|
||||||
this.listBoxOther = new System.Windows.Forms.ListBox();
|
this.listBoxOther = new System.Windows.Forms.ListBox();
|
||||||
this.buttonOtherBackup = new SmartX.SmartButton();
|
|
||||||
this.labelOtherFileCount = new SmartX.SmartLabel();
|
this.labelOtherFileCount = new SmartX.SmartLabel();
|
||||||
|
this.buttonOtherBackup = new SmartX.SmartButton();
|
||||||
|
this.buttonInspectionBackup = new SmartX.SmartButton();
|
||||||
|
this.buttonBack = new SmartX.SmartButton();
|
||||||
|
this.buttonHistoryBackup = new SmartX.SmartButton();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||||
this.smartGroupBox1.SuspendLayout();
|
this.smartGroupBox1.SuspendLayout();
|
||||||
this.smartGroupBox2.SuspendLayout();
|
this.smartGroupBox2.SuspendLayout();
|
||||||
|
|
@ -88,37 +88,6 @@
|
||||||
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelTitle.Wordwrap = false;
|
this.labelTitle.Wordwrap = false;
|
||||||
//
|
//
|
||||||
// buttonBack
|
|
||||||
//
|
|
||||||
this.buttonBack.BackPictureBox = null;
|
|
||||||
this.buttonBack.BackPictureBox1 = null;
|
|
||||||
this.buttonBack.BackPictureBox2 = null;
|
|
||||||
this.buttonBack.ButtonColor = System.Drawing.Color.Gray;
|
|
||||||
this.buttonBack.ButtonImageAutoSize = true;
|
|
||||||
this.buttonBack.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
|
||||||
this.buttonBack.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.DisableImage")));
|
|
||||||
this.buttonBack.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.DownImage")));
|
|
||||||
this.buttonBack.GroupID = 0;
|
|
||||||
this.buttonBack.InitVisible = true;
|
|
||||||
this.buttonBack.Location = new System.Drawing.Point(924, 666);
|
|
||||||
this.buttonBack.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
|
||||||
this.buttonBack.Name = "buttonBack";
|
|
||||||
this.buttonBack.NestedClickEventPrevent = false;
|
|
||||||
this.buttonBack.OutlinePixel = 1;
|
|
||||||
this.buttonBack.RepeatInterval = 200;
|
|
||||||
this.buttonBack.RepeatIntervalAccelerate = null;
|
|
||||||
this.buttonBack.SafeInterval = 200;
|
|
||||||
this.buttonBack.Size = new System.Drawing.Size(84, 87);
|
|
||||||
this.buttonBack.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
|
||||||
this.buttonBack.TabIndex = 2;
|
|
||||||
this.buttonBack.TextColor = System.Drawing.Color.Black;
|
|
||||||
this.buttonBack.TextDownColor = System.Drawing.Color.White;
|
|
||||||
this.buttonBack.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
|
||||||
this.buttonBack.TextLocation = new System.Drawing.Point(0, 0);
|
|
||||||
this.buttonBack.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
|
||||||
this.buttonBack.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.UpImage")));
|
|
||||||
this.buttonBack.Click += new System.EventHandler(this.buttonBack_Click);
|
|
||||||
//
|
|
||||||
// smartGroupBox1
|
// smartGroupBox1
|
||||||
//
|
//
|
||||||
this.smartGroupBox1.BackPictureBox = null;
|
this.smartGroupBox1.BackPictureBox = null;
|
||||||
|
|
@ -150,37 +119,6 @@
|
||||||
this.treeViewInspection.TabIndex = 2;
|
this.treeViewInspection.TabIndex = 2;
|
||||||
this.treeViewInspection.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewInspection_AfterSelect);
|
this.treeViewInspection.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewInspection_AfterSelect);
|
||||||
//
|
//
|
||||||
// buttonInspectionBackup
|
|
||||||
//
|
|
||||||
this.buttonInspectionBackup.BackPictureBox = null;
|
|
||||||
this.buttonInspectionBackup.BackPictureBox1 = null;
|
|
||||||
this.buttonInspectionBackup.BackPictureBox2 = null;
|
|
||||||
this.buttonInspectionBackup.ButtonColor = System.Drawing.Color.Gray;
|
|
||||||
this.buttonInspectionBackup.ButtonImageAutoSize = true;
|
|
||||||
this.buttonInspectionBackup.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
|
||||||
this.buttonInspectionBackup.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonInspectionBackup.DisableImage")));
|
|
||||||
this.buttonInspectionBackup.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonInspectionBackup.DownImage")));
|
|
||||||
this.buttonInspectionBackup.GroupID = 0;
|
|
||||||
this.buttonInspectionBackup.InitVisible = true;
|
|
||||||
this.buttonInspectionBackup.Location = new System.Drawing.Point(219, 26);
|
|
||||||
this.buttonInspectionBackup.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
|
||||||
this.buttonInspectionBackup.Name = "buttonInspectionBackup";
|
|
||||||
this.buttonInspectionBackup.NestedClickEventPrevent = false;
|
|
||||||
this.buttonInspectionBackup.OutlinePixel = 1;
|
|
||||||
this.buttonInspectionBackup.RepeatInterval = 200;
|
|
||||||
this.buttonInspectionBackup.RepeatIntervalAccelerate = null;
|
|
||||||
this.buttonInspectionBackup.SafeInterval = 200;
|
|
||||||
this.buttonInspectionBackup.Size = new System.Drawing.Size(100, 50);
|
|
||||||
this.buttonInspectionBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
|
||||||
this.buttonInspectionBackup.TabIndex = 1;
|
|
||||||
this.buttonInspectionBackup.TextColor = System.Drawing.Color.Black;
|
|
||||||
this.buttonInspectionBackup.TextDownColor = System.Drawing.Color.White;
|
|
||||||
this.buttonInspectionBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
|
||||||
this.buttonInspectionBackup.TextLocation = new System.Drawing.Point(0, 0);
|
|
||||||
this.buttonInspectionBackup.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
|
||||||
this.buttonInspectionBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonInspectionBackup.UpImage")));
|
|
||||||
this.buttonInspectionBackup.Click += new System.EventHandler(this.buttonInspectionBackupEncryption_Click);
|
|
||||||
//
|
|
||||||
// labelInspectionFileCount
|
// labelInspectionFileCount
|
||||||
//
|
//
|
||||||
this.labelInspectionFileCount.BackPictureBox = null;
|
this.labelInspectionFileCount.BackPictureBox = null;
|
||||||
|
|
@ -231,37 +169,6 @@
|
||||||
this.treeViewHistory.TabIndex = 3;
|
this.treeViewHistory.TabIndex = 3;
|
||||||
this.treeViewHistory.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewHistory_AfterSelect);
|
this.treeViewHistory.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewHistory_AfterSelect);
|
||||||
//
|
//
|
||||||
// buttonHistoryBackup
|
|
||||||
//
|
|
||||||
this.buttonHistoryBackup.BackPictureBox = null;
|
|
||||||
this.buttonHistoryBackup.BackPictureBox1 = null;
|
|
||||||
this.buttonHistoryBackup.BackPictureBox2 = null;
|
|
||||||
this.buttonHistoryBackup.ButtonColor = System.Drawing.Color.Gray;
|
|
||||||
this.buttonHistoryBackup.ButtonImageAutoSize = true;
|
|
||||||
this.buttonHistoryBackup.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
|
||||||
this.buttonHistoryBackup.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonHistoryBackup.DisableImage")));
|
|
||||||
this.buttonHistoryBackup.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonHistoryBackup.DownImage")));
|
|
||||||
this.buttonHistoryBackup.GroupID = 0;
|
|
||||||
this.buttonHistoryBackup.InitVisible = true;
|
|
||||||
this.buttonHistoryBackup.Location = new System.Drawing.Point(219, 26);
|
|
||||||
this.buttonHistoryBackup.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
|
||||||
this.buttonHistoryBackup.Name = "buttonHistoryBackup";
|
|
||||||
this.buttonHistoryBackup.NestedClickEventPrevent = false;
|
|
||||||
this.buttonHistoryBackup.OutlinePixel = 1;
|
|
||||||
this.buttonHistoryBackup.RepeatInterval = 200;
|
|
||||||
this.buttonHistoryBackup.RepeatIntervalAccelerate = null;
|
|
||||||
this.buttonHistoryBackup.SafeInterval = 200;
|
|
||||||
this.buttonHistoryBackup.Size = new System.Drawing.Size(100, 50);
|
|
||||||
this.buttonHistoryBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
|
||||||
this.buttonHistoryBackup.TabIndex = 2;
|
|
||||||
this.buttonHistoryBackup.TextColor = System.Drawing.Color.Black;
|
|
||||||
this.buttonHistoryBackup.TextDownColor = System.Drawing.Color.White;
|
|
||||||
this.buttonHistoryBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
|
||||||
this.buttonHistoryBackup.TextLocation = new System.Drawing.Point(0, 0);
|
|
||||||
this.buttonHistoryBackup.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
|
||||||
this.buttonHistoryBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonHistoryBackup.UpImage")));
|
|
||||||
this.buttonHistoryBackup.Click += new System.EventHandler(this.buttonHistoryBackupEncryption_Click);
|
|
||||||
//
|
|
||||||
// labelHistoryFileCount
|
// labelHistoryFileCount
|
||||||
//
|
//
|
||||||
this.labelHistoryFileCount.BackPictureBox = null;
|
this.labelHistoryFileCount.BackPictureBox = null;
|
||||||
|
|
@ -329,8 +236,8 @@
|
||||||
//
|
//
|
||||||
this.smartGroupBox3.BackPictureBox = null;
|
this.smartGroupBox3.BackPictureBox = null;
|
||||||
this.smartGroupBox3.BackPictureBox1 = null;
|
this.smartGroupBox3.BackPictureBox1 = null;
|
||||||
this.smartGroupBox3.Controls.Add(this.listBoxOther);
|
|
||||||
this.smartGroupBox3.Controls.Add(this.buttonOtherBackup);
|
this.smartGroupBox3.Controls.Add(this.buttonOtherBackup);
|
||||||
|
this.smartGroupBox3.Controls.Add(this.listBoxOther);
|
||||||
this.smartGroupBox3.Controls.Add(this.labelOtherFileCount);
|
this.smartGroupBox3.Controls.Add(this.labelOtherFileCount);
|
||||||
this.smartGroupBox3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
this.smartGroupBox3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||||
this.smartGroupBox3.FrameLineColor1 = System.Drawing.Color.Black;
|
this.smartGroupBox3.FrameLineColor1 = System.Drawing.Color.Black;
|
||||||
|
|
@ -354,6 +261,25 @@
|
||||||
this.listBoxOther.Size = new System.Drawing.Size(300, 482);
|
this.listBoxOther.Size = new System.Drawing.Size(300, 482);
|
||||||
this.listBoxOther.TabIndex = 25;
|
this.listBoxOther.TabIndex = 25;
|
||||||
//
|
//
|
||||||
|
// labelOtherFileCount
|
||||||
|
//
|
||||||
|
this.labelOtherFileCount.BackPictureBox = null;
|
||||||
|
this.labelOtherFileCount.BackPictureBox1 = null;
|
||||||
|
this.labelOtherFileCount.BackPictureBox2 = null;
|
||||||
|
this.labelOtherFileCount.BorderColor = System.Drawing.Color.Black;
|
||||||
|
this.labelOtherFileCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||||
|
this.labelOtherFileCount.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
|
||||||
|
this.labelOtherFileCount.InitVisible = true;
|
||||||
|
this.labelOtherFileCount.LineSpacing = 0F;
|
||||||
|
this.labelOtherFileCount.Location = new System.Drawing.Point(46, 26);
|
||||||
|
this.labelOtherFileCount.Name = "labelOtherFileCount";
|
||||||
|
this.labelOtherFileCount.Size = new System.Drawing.Size(70, 50);
|
||||||
|
this.labelOtherFileCount.TabIndex = 1;
|
||||||
|
this.labelOtherFileCount.Text = "00";
|
||||||
|
this.labelOtherFileCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||||
|
this.labelOtherFileCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
|
this.labelOtherFileCount.Wordwrap = false;
|
||||||
|
//
|
||||||
// buttonOtherBackup
|
// buttonOtherBackup
|
||||||
//
|
//
|
||||||
this.buttonOtherBackup.BackPictureBox = null;
|
this.buttonOtherBackup.BackPictureBox = null;
|
||||||
|
|
@ -376,7 +302,7 @@
|
||||||
this.buttonOtherBackup.SafeInterval = 200;
|
this.buttonOtherBackup.SafeInterval = 200;
|
||||||
this.buttonOtherBackup.Size = new System.Drawing.Size(100, 50);
|
this.buttonOtherBackup.Size = new System.Drawing.Size(100, 50);
|
||||||
this.buttonOtherBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
this.buttonOtherBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||||
this.buttonOtherBackup.TabIndex = 2;
|
this.buttonOtherBackup.TabIndex = 12;
|
||||||
this.buttonOtherBackup.TextColor = System.Drawing.Color.Black;
|
this.buttonOtherBackup.TextColor = System.Drawing.Color.Black;
|
||||||
this.buttonOtherBackup.TextDownColor = System.Drawing.Color.White;
|
this.buttonOtherBackup.TextDownColor = System.Drawing.Color.White;
|
||||||
this.buttonOtherBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
this.buttonOtherBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||||
|
|
@ -385,24 +311,98 @@
|
||||||
this.buttonOtherBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonOtherBackup.UpImage")));
|
this.buttonOtherBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonOtherBackup.UpImage")));
|
||||||
this.buttonOtherBackup.Click += new System.EventHandler(this.buttonOtherBackup_Click);
|
this.buttonOtherBackup.Click += new System.EventHandler(this.buttonOtherBackup_Click);
|
||||||
//
|
//
|
||||||
// labelOtherFileCount
|
// buttonInspectionBackup
|
||||||
//
|
//
|
||||||
this.labelOtherFileCount.BackPictureBox = null;
|
this.buttonInspectionBackup.BackPictureBox = null;
|
||||||
this.labelOtherFileCount.BackPictureBox1 = null;
|
this.buttonInspectionBackup.BackPictureBox1 = null;
|
||||||
this.labelOtherFileCount.BackPictureBox2 = null;
|
this.buttonInspectionBackup.BackPictureBox2 = null;
|
||||||
this.labelOtherFileCount.BorderColor = System.Drawing.Color.Black;
|
this.buttonInspectionBackup.ButtonColor = System.Drawing.Color.Gray;
|
||||||
this.labelOtherFileCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
this.buttonInspectionBackup.ButtonImageAutoSize = true;
|
||||||
this.labelOtherFileCount.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
|
this.buttonInspectionBackup.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||||
this.labelOtherFileCount.InitVisible = true;
|
this.buttonInspectionBackup.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonInspectionBackup.DisableImage")));
|
||||||
this.labelOtherFileCount.LineSpacing = 0F;
|
this.buttonInspectionBackup.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonInspectionBackup.DownImage")));
|
||||||
this.labelOtherFileCount.Location = new System.Drawing.Point(46, 26);
|
this.buttonInspectionBackup.GroupID = 0;
|
||||||
this.labelOtherFileCount.Name = "labelOtherFileCount";
|
this.buttonInspectionBackup.InitVisible = true;
|
||||||
this.labelOtherFileCount.Size = new System.Drawing.Size(70, 50);
|
this.buttonInspectionBackup.Location = new System.Drawing.Point(219, 26);
|
||||||
this.labelOtherFileCount.TabIndex = 1;
|
this.buttonInspectionBackup.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||||
this.labelOtherFileCount.Text = "00";
|
this.buttonInspectionBackup.Name = "buttonInspectionBackup";
|
||||||
this.labelOtherFileCount.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
this.buttonInspectionBackup.NestedClickEventPrevent = false;
|
||||||
this.labelOtherFileCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.buttonInspectionBackup.OutlinePixel = 1;
|
||||||
this.labelOtherFileCount.Wordwrap = false;
|
this.buttonInspectionBackup.RepeatInterval = 200;
|
||||||
|
this.buttonInspectionBackup.RepeatIntervalAccelerate = null;
|
||||||
|
this.buttonInspectionBackup.SafeInterval = 200;
|
||||||
|
this.buttonInspectionBackup.Size = new System.Drawing.Size(100, 50);
|
||||||
|
this.buttonInspectionBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||||
|
this.buttonInspectionBackup.TabIndex = 9;
|
||||||
|
this.buttonInspectionBackup.TextColor = System.Drawing.Color.Black;
|
||||||
|
this.buttonInspectionBackup.TextDownColor = System.Drawing.Color.White;
|
||||||
|
this.buttonInspectionBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||||
|
this.buttonInspectionBackup.TextLocation = new System.Drawing.Point(0, 0);
|
||||||
|
this.buttonInspectionBackup.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||||
|
this.buttonInspectionBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonInspectionBackup.UpImage")));
|
||||||
|
this.buttonInspectionBackup.Click += new System.EventHandler(this.buttonInspectionBackupEncryption_Click);
|
||||||
|
//
|
||||||
|
// buttonBack
|
||||||
|
//
|
||||||
|
this.buttonBack.BackPictureBox = null;
|
||||||
|
this.buttonBack.BackPictureBox1 = null;
|
||||||
|
this.buttonBack.BackPictureBox2 = null;
|
||||||
|
this.buttonBack.ButtonColor = System.Drawing.Color.Gray;
|
||||||
|
this.buttonBack.ButtonImageAutoSize = true;
|
||||||
|
this.buttonBack.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||||
|
this.buttonBack.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.DisableImage")));
|
||||||
|
this.buttonBack.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.DownImage")));
|
||||||
|
this.buttonBack.GroupID = 0;
|
||||||
|
this.buttonBack.InitVisible = true;
|
||||||
|
this.buttonBack.Location = new System.Drawing.Point(924, 666);
|
||||||
|
this.buttonBack.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||||
|
this.buttonBack.Name = "buttonBack";
|
||||||
|
this.buttonBack.NestedClickEventPrevent = false;
|
||||||
|
this.buttonBack.OutlinePixel = 1;
|
||||||
|
this.buttonBack.RepeatInterval = 200;
|
||||||
|
this.buttonBack.RepeatIntervalAccelerate = null;
|
||||||
|
this.buttonBack.SafeInterval = 200;
|
||||||
|
this.buttonBack.Size = new System.Drawing.Size(84, 87);
|
||||||
|
this.buttonBack.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||||
|
this.buttonBack.TabIndex = 11;
|
||||||
|
this.buttonBack.TextColor = System.Drawing.Color.Black;
|
||||||
|
this.buttonBack.TextDownColor = System.Drawing.Color.White;
|
||||||
|
this.buttonBack.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||||
|
this.buttonBack.TextLocation = new System.Drawing.Point(0, 0);
|
||||||
|
this.buttonBack.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||||
|
this.buttonBack.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonBack.UpImage")));
|
||||||
|
this.buttonBack.Click += new System.EventHandler(this.buttonBack_Click);
|
||||||
|
//
|
||||||
|
// buttonHistoryBackup
|
||||||
|
//
|
||||||
|
this.buttonHistoryBackup.BackPictureBox = null;
|
||||||
|
this.buttonHistoryBackup.BackPictureBox1 = null;
|
||||||
|
this.buttonHistoryBackup.BackPictureBox2 = null;
|
||||||
|
this.buttonHistoryBackup.ButtonColor = System.Drawing.Color.Gray;
|
||||||
|
this.buttonHistoryBackup.ButtonImageAutoSize = true;
|
||||||
|
this.buttonHistoryBackup.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||||
|
this.buttonHistoryBackup.DisableImage = ((System.Drawing.Image)(resources.GetObject("buttonHistoryBackup.DisableImage")));
|
||||||
|
this.buttonHistoryBackup.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonHistoryBackup.DownImage")));
|
||||||
|
this.buttonHistoryBackup.GroupID = 0;
|
||||||
|
this.buttonHistoryBackup.InitVisible = true;
|
||||||
|
this.buttonHistoryBackup.Location = new System.Drawing.Point(219, 26);
|
||||||
|
this.buttonHistoryBackup.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||||
|
this.buttonHistoryBackup.Name = "buttonHistoryBackup";
|
||||||
|
this.buttonHistoryBackup.NestedClickEventPrevent = false;
|
||||||
|
this.buttonHistoryBackup.OutlinePixel = 1;
|
||||||
|
this.buttonHistoryBackup.RepeatInterval = 200;
|
||||||
|
this.buttonHistoryBackup.RepeatIntervalAccelerate = null;
|
||||||
|
this.buttonHistoryBackup.SafeInterval = 200;
|
||||||
|
this.buttonHistoryBackup.Size = new System.Drawing.Size(100, 50);
|
||||||
|
this.buttonHistoryBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||||
|
this.buttonHistoryBackup.TabIndex = 10;
|
||||||
|
this.buttonHistoryBackup.TextColor = System.Drawing.Color.Black;
|
||||||
|
this.buttonHistoryBackup.TextDownColor = System.Drawing.Color.White;
|
||||||
|
this.buttonHistoryBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||||
|
this.buttonHistoryBackup.TextLocation = new System.Drawing.Point(0, 0);
|
||||||
|
this.buttonHistoryBackup.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||||
|
this.buttonHistoryBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonHistoryBackup.UpImage")));
|
||||||
|
this.buttonHistoryBackup.Click += new System.EventHandler(this.buttonHistoryBackupEncryption_Click);
|
||||||
//
|
//
|
||||||
// FormDataBackup_Part11
|
// FormDataBackup_Part11
|
||||||
//
|
//
|
||||||
|
|
@ -410,12 +410,12 @@
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||||
this.AutoScroll = true;
|
this.AutoScroll = true;
|
||||||
this.ClientSize = new System.Drawing.Size(1024, 768);
|
this.ClientSize = new System.Drawing.Size(1024, 768);
|
||||||
|
this.Controls.Add(this.buttonBack);
|
||||||
this.Controls.Add(this.smartGroupBox3);
|
this.Controls.Add(this.smartGroupBox3);
|
||||||
this.Controls.Add(this.labelPercentage);
|
this.Controls.Add(this.labelPercentage);
|
||||||
this.Controls.Add(this.labelFileName);
|
this.Controls.Add(this.labelFileName);
|
||||||
this.Controls.Add(this.smartGroupBox2);
|
this.Controls.Add(this.smartGroupBox2);
|
||||||
this.Controls.Add(this.smartGroupBox1);
|
this.Controls.Add(this.smartGroupBox1);
|
||||||
this.Controls.Add(this.buttonBack);
|
|
||||||
this.Controls.Add(this.labelTitle);
|
this.Controls.Add(this.labelTitle);
|
||||||
this.Controls.Add(this.smartForm1);
|
this.Controls.Add(this.smartForm1);
|
||||||
this.Name = "FormDataBackup_Part11";
|
this.Name = "FormDataBackup_Part11";
|
||||||
|
|
@ -432,13 +432,10 @@
|
||||||
|
|
||||||
private SmartX.SmartForm smartForm1;
|
private SmartX.SmartForm smartForm1;
|
||||||
private SmartX.SmartLabel labelTitle;
|
private SmartX.SmartLabel labelTitle;
|
||||||
private SmartX.SmartButton buttonBack;
|
|
||||||
private SmartX.SmartGroupBox smartGroupBox1;
|
private SmartX.SmartGroupBox smartGroupBox1;
|
||||||
private SmartX.SmartGroupBox smartGroupBox2;
|
private SmartX.SmartGroupBox smartGroupBox2;
|
||||||
private SmartX.SmartLabel labelInspectionFileCount;
|
private SmartX.SmartLabel labelInspectionFileCount;
|
||||||
private SmartX.SmartButton buttonInspectionBackup;
|
|
||||||
private SmartX.SmartLabel labelHistoryFileCount;
|
private SmartX.SmartLabel labelHistoryFileCount;
|
||||||
private SmartX.SmartButton buttonHistoryBackup;
|
|
||||||
private System.Windows.Forms.TreeView treeViewInspection;
|
private System.Windows.Forms.TreeView treeViewInspection;
|
||||||
private System.Windows.Forms.TreeView treeViewHistory;
|
private System.Windows.Forms.TreeView treeViewHistory;
|
||||||
private SmartX.SmartLabel labelFileName;
|
private SmartX.SmartLabel labelFileName;
|
||||||
|
|
@ -446,8 +443,11 @@
|
||||||
private System.Windows.Forms.Timer timerEncryption;
|
private System.Windows.Forms.Timer timerEncryption;
|
||||||
private System.Windows.Forms.Timer timerFileCopy;
|
private System.Windows.Forms.Timer timerFileCopy;
|
||||||
private SmartX.SmartGroupBox smartGroupBox3;
|
private SmartX.SmartGroupBox smartGroupBox3;
|
||||||
private SmartX.SmartButton buttonOtherBackup;
|
|
||||||
private SmartX.SmartLabel labelOtherFileCount;
|
private SmartX.SmartLabel labelOtherFileCount;
|
||||||
private System.Windows.Forms.ListBox listBoxOther;
|
private System.Windows.Forms.ListBox listBoxOther;
|
||||||
|
private SmartX.SmartButton buttonOtherBackup;
|
||||||
|
private SmartX.SmartButton buttonInspectionBackup;
|
||||||
|
private SmartX.SmartButton buttonBack;
|
||||||
|
private SmartX.SmartButton buttonHistoryBackup;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -44,6 +44,7 @@
|
||||||
this.timerEmergencyStop = new System.Windows.Forms.Timer();
|
this.timerEmergencyStop = new System.Windows.Forms.Timer();
|
||||||
this.timerEquipmentStatus = new System.Windows.Forms.Timer();
|
this.timerEquipmentStatus = new System.Windows.Forms.Timer();
|
||||||
this.timerLeakSampling = new System.Windows.Forms.Timer();
|
this.timerLeakSampling = new System.Windows.Forms.Timer();
|
||||||
|
this.timerUserList = new System.Windows.Forms.Timer();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.smartForm)).BeginInit();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
|
|
@ -125,6 +126,11 @@
|
||||||
//
|
//
|
||||||
this.timerLeakSampling.Tick += new System.EventHandler(this.timerLeakSampling_Tick);
|
this.timerLeakSampling.Tick += new System.EventHandler(this.timerLeakSampling_Tick);
|
||||||
//
|
//
|
||||||
|
// timerUserList
|
||||||
|
//
|
||||||
|
this.timerUserList.Interval = 1000;
|
||||||
|
this.timerUserList.Tick += new System.EventHandler(this.timerUserList_Tick);
|
||||||
|
//
|
||||||
// FormMain
|
// FormMain
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
|
|
@ -156,5 +162,6 @@
|
||||||
private System.Windows.Forms.Timer timerEmergencyStop;
|
private System.Windows.Forms.Timer timerEmergencyStop;
|
||||||
private System.Windows.Forms.Timer timerEquipmentStatus;
|
private System.Windows.Forms.Timer timerEquipmentStatus;
|
||||||
public System.Windows.Forms.Timer timerLeakSampling;
|
public System.Windows.Forms.Timer timerLeakSampling;
|
||||||
|
private System.Windows.Forms.Timer timerUserList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -1026,6 +1026,10 @@ namespace INT63DC_2C.Forms
|
||||||
if (this.ChildFormSystemSetting != null)
|
if (this.ChildFormSystemSetting != null)
|
||||||
this.ChildFormSystemSetting.UpdateEquipmentStatusDisplay(this.EquipmentStatus);
|
this.ChildFormSystemSetting.UpdateEquipmentStatusDisplay(this.EquipmentStatus);
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.SetTrackingHistoryData(DataStore.TrackingOperation.EquipmentStart, "");
|
||||||
|
|
||||||
// 비상정지시 장비 정지상태로 변환
|
// 비상정지시 장비 정지상태로 변환
|
||||||
if (this.IsServoOrigin == true)
|
if (this.IsServoOrigin == true)
|
||||||
{
|
{
|
||||||
|
|
@ -1044,6 +1048,10 @@ namespace INT63DC_2C.Forms
|
||||||
data.IsStart = false;
|
data.IsStart = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Part 11
|
||||||
|
if (this.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.SetTrackingHistoryData(DataStore.TrackingOperation.EquipmentStop, "");
|
||||||
|
|
||||||
// Respone
|
// Respone
|
||||||
this.CurrentComRespone.Initialization();
|
this.CurrentComRespone.Initialization();
|
||||||
|
|
||||||
|
|
@ -5310,6 +5318,41 @@ namespace INT63DC_2C.Forms
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Backup
|
#region Backup
|
||||||
|
public List<string> GetSeletedNodeList(TreeView tree)
|
||||||
|
{
|
||||||
|
int yearCNT, monthCNT, dayCNT;
|
||||||
|
List<string> listSelectedFile = new List<string>();
|
||||||
|
|
||||||
|
yearCNT = tree.Nodes.Count;
|
||||||
|
if (yearCNT != 0)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < yearCNT; i++)
|
||||||
|
{
|
||||||
|
monthCNT = tree.Nodes[i].Nodes.Count;
|
||||||
|
if (monthCNT != 0)
|
||||||
|
{
|
||||||
|
for (int j = 0; j < monthCNT; j++)
|
||||||
|
{
|
||||||
|
dayCNT = tree.Nodes[i].Nodes[j].Nodes.Count;
|
||||||
|
if (dayCNT != 0)
|
||||||
|
{
|
||||||
|
for (int k = 0; k < dayCNT; k++)
|
||||||
|
{
|
||||||
|
//if (tree.Nodes[i].Nodes[j].Nodes[k].Checked == true)
|
||||||
|
//{
|
||||||
|
//listSelectedFile.Add(tree.Nodes[i].Nodes[j].Nodes[k].Text);
|
||||||
|
listSelectedFile.Add(string.Format("{0}\\{1}\\{2}", tree.Nodes[i].Text, tree.Nodes[i].Nodes[j].Text, tree.Nodes[i].Nodes[j].Nodes[k].Text));
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return listSelectedFile;
|
||||||
|
}
|
||||||
|
|
||||||
private void DeleteLogFile(string path, DataStore.E_DataType type)
|
private void DeleteLogFile(string path, DataStore.E_DataType type)
|
||||||
{
|
{
|
||||||
string dataFolderPath = "";
|
string dataFolderPath = "";
|
||||||
|
|
@ -5468,7 +5511,7 @@ namespace INT63DC_2C.Forms
|
||||||
FileInfo[] files = dir.GetFiles();
|
FileInfo[] files = dir.GetFiles();
|
||||||
foreach (FileInfo subfile in files)
|
foreach (FileInfo subfile in files)
|
||||||
{
|
{
|
||||||
if (subfile.Name.StartsWith("20")) // 날짜 비교하여 10일 지난화일은 삭제함
|
if (subfile.Name.StartsWith("20")) // 날짜 비교하여 180일 지난화일은 삭제함
|
||||||
{
|
{
|
||||||
if (subfile.Name.CompareTo(dday) < 0)
|
if (subfile.Name.CompareTo(dday) < 0)
|
||||||
{
|
{
|
||||||
|
|
@ -5661,6 +5704,27 @@ namespace INT63DC_2C.Forms
|
||||||
// 폼생성
|
// 폼생성
|
||||||
this.CreateForm();
|
this.CreateForm();
|
||||||
|
|
||||||
|
// UserManager 초기화
|
||||||
|
if (this.SystemConfig.IsLogin == true)
|
||||||
|
{
|
||||||
|
this.InitializeUserManager();
|
||||||
|
this.SystemConfig.CurrentUser.Group = DataStore.UserGroup.LogOut;
|
||||||
|
|
||||||
|
if (this.SystemConfig.IsOptPart11 == false)
|
||||||
|
UserManager.UserManager_AutoLogoutTimeoutPause();
|
||||||
|
|
||||||
|
// UserManager_GetUserListName
|
||||||
|
this.timerUserList.Enabled = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
this.SystemConfig.CurrentUser.Group = DataStore.UserGroup.NotLogin;
|
||||||
|
// Encryption 초기화
|
||||||
|
if (this.SystemConfig.IsOptPart11 == true)
|
||||||
|
{
|
||||||
|
this.InitializeAES();
|
||||||
|
this.SetTrackingHistoryData(DataStore.TrackingOperation.PowerOn, "");
|
||||||
|
}
|
||||||
|
|
||||||
this.SmartSplashProgramLoad.Finish();
|
this.SmartSplashProgramLoad.Finish();
|
||||||
|
|
||||||
this.smartForm.Show((int)DataStore.FormStore.FormMainDisplay);
|
this.smartForm.Show((int)DataStore.FormStore.FormMainDisplay);
|
||||||
|
|
@ -5769,7 +5833,11 @@ namespace INT63DC_2C.Forms
|
||||||
this.timerLeakSampling.Enabled = false;
|
this.timerLeakSampling.Enabled = false;
|
||||||
this.TransferData(CommunicationCommand.LeakSamplingSignal, CommunicationID.MainBoard);
|
this.TransferData(CommunicationCommand.LeakSamplingSignal, CommunicationID.MainBoard);
|
||||||
}
|
}
|
||||||
|
private void timerUserList_Tick(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
this.timerUserList.Enabled = false;
|
||||||
|
UserManager.UserManager_GetUserListName();
|
||||||
|
}
|
||||||
|
|
||||||
#region UserManagerEvent
|
#region UserManagerEvent
|
||||||
private void UserManager_UserListLogoutDataEvent(int status)
|
private void UserManager_UserListLogoutDataEvent(int status)
|
||||||
|
|
|
||||||
|
|
@ -159,6 +159,9 @@
|
||||||
<metadata name="timerLeakSampling.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="timerLeakSampling.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>622, 56</value>
|
<value>622, 56</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="timerUserList.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>784, 61</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||||
<value>WEBPAD</value>
|
<value>WEBPAD</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
|
||||||
|
|
@ -1616,7 +1616,7 @@
|
||||||
this.labelSorter1RunTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
this.labelSorter1RunTime.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||||
this.labelSorter1RunTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelSorter1RunTime.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelSorter1RunTime.Wordwrap = false;
|
this.labelSorter1RunTime.Wordwrap = false;
|
||||||
this.labelSorter1RunTime.Click += new System.EventHandler(this.labelSorterRunTime_Click);
|
this.labelSorter1RunTime.Click += new System.EventHandler(this.labelSorter1RunTime_Click);
|
||||||
//
|
//
|
||||||
// labelStaticSorter1RunTime
|
// labelStaticSorter1RunTime
|
||||||
//
|
//
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -7351,6 +7351,6 @@
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>57</value>
|
<value>40</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
</root>
|
</root>
|
||||||
|
|
@ -734,6 +734,10 @@ namespace INT63DC_2C.Forms
|
||||||
DialogFormYesNo myDlg = new DialogFormYesNo(this.ParentForm.SystemConfig.Language, 5);
|
DialogFormYesNo myDlg = new DialogFormYesNo(this.ParentForm.SystemConfig.Language, 5);
|
||||||
if (myDlg.ShowDialog() == DialogResult.Yes)
|
if (myDlg.ShowDialog() == DialogResult.Yes)
|
||||||
{
|
{
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Initialization, "");
|
||||||
|
|
||||||
((FormMain)(Owner)).smartForm.Show((int)DataStore.FormStore.FormFactory);
|
((FormMain)(Owner)).smartForm.Show((int)DataStore.FormStore.FormFactory);
|
||||||
this.ParentForm.ChildFormFactoryInitialize.timer1.Enabled = true;
|
this.ParentForm.ChildFormFactoryInitialize.timer1.Enabled = true;
|
||||||
}
|
}
|
||||||
|
|
@ -744,7 +748,13 @@ namespace INT63DC_2C.Forms
|
||||||
#region 업데이트
|
#region 업데이트
|
||||||
DialogFormYesNo myDlg = new DialogFormYesNo(this.ParentForm.SystemConfig.Language, 3);
|
DialogFormYesNo myDlg = new DialogFormYesNo(this.ParentForm.SystemConfig.Language, 3);
|
||||||
if (myDlg.ShowDialog() == DialogResult.Yes)
|
if (myDlg.ShowDialog() == DialogResult.Yes)
|
||||||
|
{
|
||||||
|
// Part 11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Update, "");
|
||||||
|
|
||||||
this.ParentForm.ChildFormProgramUpdate.DisplayRefresh();
|
this.ParentForm.ChildFormProgramUpdate.DisplayRefresh();
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
else if (button == this.buttonEquipmentSetting)
|
else if (button == this.buttonEquipmentSetting)
|
||||||
|
|
|
||||||
|
|
@ -345,15 +345,27 @@ namespace INT63DC_2C.Forms
|
||||||
this.ParentForm.TransferData(CommunicationCommand.MotorOrigin, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.MotorOrigin, CommunicationID.MainBoard);
|
||||||
this.buttonBack.Enabled = true;
|
this.buttonBack.Enabled = true;
|
||||||
this.ParentForm.IsServoOrigin = false;
|
this.ParentForm.IsServoOrigin = false;
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.Origin, "");
|
||||||
}
|
}
|
||||||
private void buttonStep_Click(object sender, EventArgs e)
|
private void buttonStep_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
this.ParentForm.TransferData(CommunicationCommand.MotorStep, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.MotorStep, CommunicationID.MainBoard);
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.OneStep, "");
|
||||||
}
|
}
|
||||||
private void buttonAlarmReset_Click(object sender, EventArgs e)
|
private void buttonAlarmReset_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
this.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.MotorAlarmReset, CommunicationID.MainBoard);
|
||||||
this.ParentForm.TransferData(CommunicationCommand.BuzzerOff, CommunicationID.MainBoard);
|
this.ParentForm.TransferData(CommunicationCommand.BuzzerOff, CommunicationID.MainBoard);
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.AlarmReset, "");
|
||||||
}
|
}
|
||||||
private void buttonEEPROM_Click(object sender, EventArgs e)
|
private void buttonEEPROM_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
@ -366,6 +378,10 @@ namespace INT63DC_2C.Forms
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ParentForm.ServoMotorWrite(1, ServoMotorParameterAddress.SaveAllParameters, ServoMotorParameterAddress.EEPROM);
|
this.ParentForm.ServoMotorWrite(1, ServoMotorParameterAddress.SaveAllParameters, ServoMotorParameterAddress.EEPROM);
|
||||||
|
|
||||||
|
// Part11
|
||||||
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingOperation.MotorValueSave, "");
|
||||||
}
|
}
|
||||||
private void buttonHidden_Click(object sender, EventArgs e)
|
private void buttonHidden_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -304,7 +304,7 @@
|
||||||
this.checkBoxNotLoginMenuViewer.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuViewer.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuViewer.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuViewer.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuViewer.InitVisible = true;
|
this.checkBoxNotLoginMenuViewer.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuViewer.Location = new System.Drawing.Point(924, 593);
|
this.checkBoxNotLoginMenuViewer.Location = new System.Drawing.Point(921, 562);
|
||||||
this.checkBoxNotLoginMenuViewer.Name = "checkBoxNotLoginMenuViewer";
|
this.checkBoxNotLoginMenuViewer.Name = "checkBoxNotLoginMenuViewer";
|
||||||
this.checkBoxNotLoginMenuViewer.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuViewer.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuViewer.TabIndex = 933;
|
this.checkBoxNotLoginMenuViewer.TabIndex = 933;
|
||||||
|
|
@ -325,7 +325,7 @@
|
||||||
this.checkBoxL3MenuViewer.ImageCheckBox = null;
|
this.checkBoxL3MenuViewer.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuViewer.ImageUnCheckBox = null;
|
this.checkBoxL3MenuViewer.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuViewer.InitVisible = true;
|
this.checkBoxL3MenuViewer.InitVisible = true;
|
||||||
this.checkBoxL3MenuViewer.Location = new System.Drawing.Point(874, 593);
|
this.checkBoxL3MenuViewer.Location = new System.Drawing.Point(871, 562);
|
||||||
this.checkBoxL3MenuViewer.Name = "checkBoxL3MenuViewer";
|
this.checkBoxL3MenuViewer.Name = "checkBoxL3MenuViewer";
|
||||||
this.checkBoxL3MenuViewer.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuViewer.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuViewer.TabIndex = 934;
|
this.checkBoxL3MenuViewer.TabIndex = 934;
|
||||||
|
|
@ -346,7 +346,7 @@
|
||||||
this.checkBoxL2MenuViewer.ImageCheckBox = null;
|
this.checkBoxL2MenuViewer.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuViewer.ImageUnCheckBox = null;
|
this.checkBoxL2MenuViewer.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuViewer.InitVisible = true;
|
this.checkBoxL2MenuViewer.InitVisible = true;
|
||||||
this.checkBoxL2MenuViewer.Location = new System.Drawing.Point(824, 593);
|
this.checkBoxL2MenuViewer.Location = new System.Drawing.Point(821, 562);
|
||||||
this.checkBoxL2MenuViewer.Name = "checkBoxL2MenuViewer";
|
this.checkBoxL2MenuViewer.Name = "checkBoxL2MenuViewer";
|
||||||
this.checkBoxL2MenuViewer.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuViewer.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuViewer.TabIndex = 935;
|
this.checkBoxL2MenuViewer.TabIndex = 935;
|
||||||
|
|
@ -367,7 +367,7 @@
|
||||||
this.checkBoxL1MenuViewer.ImageCheckBox = null;
|
this.checkBoxL1MenuViewer.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuViewer.ImageUnCheckBox = null;
|
this.checkBoxL1MenuViewer.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuViewer.InitVisible = true;
|
this.checkBoxL1MenuViewer.InitVisible = true;
|
||||||
this.checkBoxL1MenuViewer.Location = new System.Drawing.Point(774, 593);
|
this.checkBoxL1MenuViewer.Location = new System.Drawing.Point(771, 562);
|
||||||
this.checkBoxL1MenuViewer.Name = "checkBoxL1MenuViewer";
|
this.checkBoxL1MenuViewer.Name = "checkBoxL1MenuViewer";
|
||||||
this.checkBoxL1MenuViewer.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuViewer.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuViewer.TabIndex = 932;
|
this.checkBoxL1MenuViewer.TabIndex = 932;
|
||||||
|
|
@ -388,11 +388,12 @@
|
||||||
this.checkBoxNotLoginMenuCommunication.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuCommunication.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuCommunication.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuCommunication.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuCommunication.InitVisible = true;
|
this.checkBoxNotLoginMenuCommunication.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuCommunication.Location = new System.Drawing.Point(424, 469);
|
this.checkBoxNotLoginMenuCommunication.Location = new System.Drawing.Point(422, 687);
|
||||||
this.checkBoxNotLoginMenuCommunication.Name = "checkBoxNotLoginMenuCommunication";
|
this.checkBoxNotLoginMenuCommunication.Name = "checkBoxNotLoginMenuCommunication";
|
||||||
this.checkBoxNotLoginMenuCommunication.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuCommunication.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuCommunication.TabIndex = 930;
|
this.checkBoxNotLoginMenuCommunication.TabIndex = 930;
|
||||||
this.checkBoxNotLoginMenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
this.checkBoxNotLoginMenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
||||||
|
this.checkBoxNotLoginMenuCommunication.Visible = false;
|
||||||
//
|
//
|
||||||
// checkBoxL3MenuCommunication
|
// checkBoxL3MenuCommunication
|
||||||
//
|
//
|
||||||
|
|
@ -408,11 +409,12 @@
|
||||||
this.checkBoxL3MenuCommunication.ImageCheckBox = null;
|
this.checkBoxL3MenuCommunication.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuCommunication.ImageUnCheckBox = null;
|
this.checkBoxL3MenuCommunication.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuCommunication.InitVisible = true;
|
this.checkBoxL3MenuCommunication.InitVisible = true;
|
||||||
this.checkBoxL3MenuCommunication.Location = new System.Drawing.Point(374, 469);
|
this.checkBoxL3MenuCommunication.Location = new System.Drawing.Point(372, 687);
|
||||||
this.checkBoxL3MenuCommunication.Name = "checkBoxL3MenuCommunication";
|
this.checkBoxL3MenuCommunication.Name = "checkBoxL3MenuCommunication";
|
||||||
this.checkBoxL3MenuCommunication.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuCommunication.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuCommunication.TabIndex = 928;
|
this.checkBoxL3MenuCommunication.TabIndex = 928;
|
||||||
this.checkBoxL3MenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
this.checkBoxL3MenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
||||||
|
this.checkBoxL3MenuCommunication.Visible = false;
|
||||||
//
|
//
|
||||||
// checkBoxL2MenuCommunication
|
// checkBoxL2MenuCommunication
|
||||||
//
|
//
|
||||||
|
|
@ -428,11 +430,12 @@
|
||||||
this.checkBoxL2MenuCommunication.ImageCheckBox = null;
|
this.checkBoxL2MenuCommunication.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuCommunication.ImageUnCheckBox = null;
|
this.checkBoxL2MenuCommunication.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuCommunication.InitVisible = true;
|
this.checkBoxL2MenuCommunication.InitVisible = true;
|
||||||
this.checkBoxL2MenuCommunication.Location = new System.Drawing.Point(324, 469);
|
this.checkBoxL2MenuCommunication.Location = new System.Drawing.Point(322, 687);
|
||||||
this.checkBoxL2MenuCommunication.Name = "checkBoxL2MenuCommunication";
|
this.checkBoxL2MenuCommunication.Name = "checkBoxL2MenuCommunication";
|
||||||
this.checkBoxL2MenuCommunication.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuCommunication.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuCommunication.TabIndex = 929;
|
this.checkBoxL2MenuCommunication.TabIndex = 929;
|
||||||
this.checkBoxL2MenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
this.checkBoxL2MenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
||||||
|
this.checkBoxL2MenuCommunication.Visible = false;
|
||||||
//
|
//
|
||||||
// checkBoxL1MenuCommunication
|
// checkBoxL1MenuCommunication
|
||||||
//
|
//
|
||||||
|
|
@ -448,11 +451,12 @@
|
||||||
this.checkBoxL1MenuCommunication.ImageCheckBox = null;
|
this.checkBoxL1MenuCommunication.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuCommunication.ImageUnCheckBox = null;
|
this.checkBoxL1MenuCommunication.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuCommunication.InitVisible = true;
|
this.checkBoxL1MenuCommunication.InitVisible = true;
|
||||||
this.checkBoxL1MenuCommunication.Location = new System.Drawing.Point(274, 469);
|
this.checkBoxL1MenuCommunication.Location = new System.Drawing.Point(272, 687);
|
||||||
this.checkBoxL1MenuCommunication.Name = "checkBoxL1MenuCommunication";
|
this.checkBoxL1MenuCommunication.Name = "checkBoxL1MenuCommunication";
|
||||||
this.checkBoxL1MenuCommunication.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuCommunication.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuCommunication.TabIndex = 931;
|
this.checkBoxL1MenuCommunication.TabIndex = 931;
|
||||||
this.checkBoxL1MenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
this.checkBoxL1MenuCommunication.TextVAlign = SmartX.SmartCheckBox.TextVerAlign.Middle;
|
||||||
|
this.checkBoxL1MenuCommunication.Visible = false;
|
||||||
//
|
//
|
||||||
// checkBoxNotLoginMenuStatistics
|
// checkBoxNotLoginMenuStatistics
|
||||||
//
|
//
|
||||||
|
|
@ -468,7 +472,7 @@
|
||||||
this.checkBoxNotLoginMenuStatistics.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuStatistics.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuStatistics.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuStatistics.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuStatistics.InitVisible = true;
|
this.checkBoxNotLoginMenuStatistics.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuStatistics.Location = new System.Drawing.Point(924, 562);
|
this.checkBoxNotLoginMenuStatistics.Location = new System.Drawing.Point(921, 531);
|
||||||
this.checkBoxNotLoginMenuStatistics.Name = "checkBoxNotLoginMenuStatistics";
|
this.checkBoxNotLoginMenuStatistics.Name = "checkBoxNotLoginMenuStatistics";
|
||||||
this.checkBoxNotLoginMenuStatistics.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuStatistics.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuStatistics.TabIndex = 925;
|
this.checkBoxNotLoginMenuStatistics.TabIndex = 925;
|
||||||
|
|
@ -489,7 +493,7 @@
|
||||||
this.checkBoxL3MenuStatistics.ImageCheckBox = null;
|
this.checkBoxL3MenuStatistics.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuStatistics.ImageUnCheckBox = null;
|
this.checkBoxL3MenuStatistics.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuStatistics.InitVisible = true;
|
this.checkBoxL3MenuStatistics.InitVisible = true;
|
||||||
this.checkBoxL3MenuStatistics.Location = new System.Drawing.Point(874, 562);
|
this.checkBoxL3MenuStatistics.Location = new System.Drawing.Point(871, 531);
|
||||||
this.checkBoxL3MenuStatistics.Name = "checkBoxL3MenuStatistics";
|
this.checkBoxL3MenuStatistics.Name = "checkBoxL3MenuStatistics";
|
||||||
this.checkBoxL3MenuStatistics.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuStatistics.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuStatistics.TabIndex = 926;
|
this.checkBoxL3MenuStatistics.TabIndex = 926;
|
||||||
|
|
@ -510,7 +514,7 @@
|
||||||
this.checkBoxL2MenuStatistics.ImageCheckBox = null;
|
this.checkBoxL2MenuStatistics.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuStatistics.ImageUnCheckBox = null;
|
this.checkBoxL2MenuStatistics.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuStatistics.InitVisible = true;
|
this.checkBoxL2MenuStatistics.InitVisible = true;
|
||||||
this.checkBoxL2MenuStatistics.Location = new System.Drawing.Point(824, 562);
|
this.checkBoxL2MenuStatistics.Location = new System.Drawing.Point(821, 531);
|
||||||
this.checkBoxL2MenuStatistics.Name = "checkBoxL2MenuStatistics";
|
this.checkBoxL2MenuStatistics.Name = "checkBoxL2MenuStatistics";
|
||||||
this.checkBoxL2MenuStatistics.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuStatistics.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuStatistics.TabIndex = 927;
|
this.checkBoxL2MenuStatistics.TabIndex = 927;
|
||||||
|
|
@ -531,7 +535,7 @@
|
||||||
this.checkBoxL1MenuStatistics.ImageCheckBox = null;
|
this.checkBoxL1MenuStatistics.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuStatistics.ImageUnCheckBox = null;
|
this.checkBoxL1MenuStatistics.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuStatistics.InitVisible = true;
|
this.checkBoxL1MenuStatistics.InitVisible = true;
|
||||||
this.checkBoxL1MenuStatistics.Location = new System.Drawing.Point(774, 562);
|
this.checkBoxL1MenuStatistics.Location = new System.Drawing.Point(771, 531);
|
||||||
this.checkBoxL1MenuStatistics.Name = "checkBoxL1MenuStatistics";
|
this.checkBoxL1MenuStatistics.Name = "checkBoxL1MenuStatistics";
|
||||||
this.checkBoxL1MenuStatistics.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuStatistics.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuStatistics.TabIndex = 924;
|
this.checkBoxL1MenuStatistics.TabIndex = 924;
|
||||||
|
|
@ -552,7 +556,7 @@
|
||||||
this.checkBoxNotLoginMenuCalibration.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuCalibration.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuCalibration.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuCalibration.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuCalibration.InitVisible = true;
|
this.checkBoxNotLoginMenuCalibration.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuCalibration.Location = new System.Drawing.Point(424, 500);
|
this.checkBoxNotLoginMenuCalibration.Location = new System.Drawing.Point(424, 469);
|
||||||
this.checkBoxNotLoginMenuCalibration.Name = "checkBoxNotLoginMenuCalibration";
|
this.checkBoxNotLoginMenuCalibration.Name = "checkBoxNotLoginMenuCalibration";
|
||||||
this.checkBoxNotLoginMenuCalibration.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuCalibration.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuCalibration.TabIndex = 901;
|
this.checkBoxNotLoginMenuCalibration.TabIndex = 901;
|
||||||
|
|
@ -572,7 +576,7 @@
|
||||||
this.checkBoxL3MenuCalibration.ImageCheckBox = null;
|
this.checkBoxL3MenuCalibration.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuCalibration.ImageUnCheckBox = null;
|
this.checkBoxL3MenuCalibration.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuCalibration.InitVisible = true;
|
this.checkBoxL3MenuCalibration.InitVisible = true;
|
||||||
this.checkBoxL3MenuCalibration.Location = new System.Drawing.Point(374, 500);
|
this.checkBoxL3MenuCalibration.Location = new System.Drawing.Point(374, 469);
|
||||||
this.checkBoxL3MenuCalibration.Name = "checkBoxL3MenuCalibration";
|
this.checkBoxL3MenuCalibration.Name = "checkBoxL3MenuCalibration";
|
||||||
this.checkBoxL3MenuCalibration.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuCalibration.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuCalibration.TabIndex = 902;
|
this.checkBoxL3MenuCalibration.TabIndex = 902;
|
||||||
|
|
@ -632,7 +636,7 @@
|
||||||
this.checkBoxL2MenuCalibration.ImageCheckBox = null;
|
this.checkBoxL2MenuCalibration.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuCalibration.ImageUnCheckBox = null;
|
this.checkBoxL2MenuCalibration.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuCalibration.InitVisible = true;
|
this.checkBoxL2MenuCalibration.InitVisible = true;
|
||||||
this.checkBoxL2MenuCalibration.Location = new System.Drawing.Point(324, 500);
|
this.checkBoxL2MenuCalibration.Location = new System.Drawing.Point(324, 469);
|
||||||
this.checkBoxL2MenuCalibration.Name = "checkBoxL2MenuCalibration";
|
this.checkBoxL2MenuCalibration.Name = "checkBoxL2MenuCalibration";
|
||||||
this.checkBoxL2MenuCalibration.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuCalibration.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuCalibration.TabIndex = 899;
|
this.checkBoxL2MenuCalibration.TabIndex = 899;
|
||||||
|
|
@ -672,7 +676,7 @@
|
||||||
this.checkBoxL1MenuCalibration.ImageCheckBox = null;
|
this.checkBoxL1MenuCalibration.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuCalibration.ImageUnCheckBox = null;
|
this.checkBoxL1MenuCalibration.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuCalibration.InitVisible = true;
|
this.checkBoxL1MenuCalibration.InitVisible = true;
|
||||||
this.checkBoxL1MenuCalibration.Location = new System.Drawing.Point(274, 500);
|
this.checkBoxL1MenuCalibration.Location = new System.Drawing.Point(274, 469);
|
||||||
this.checkBoxL1MenuCalibration.Name = "checkBoxL1MenuCalibration";
|
this.checkBoxL1MenuCalibration.Name = "checkBoxL1MenuCalibration";
|
||||||
this.checkBoxL1MenuCalibration.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuCalibration.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuCalibration.TabIndex = 907;
|
this.checkBoxL1MenuCalibration.TabIndex = 907;
|
||||||
|
|
@ -712,7 +716,7 @@
|
||||||
this.checkBoxNotLoginMenuEquipment.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuEquipment.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuEquipment.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuEquipment.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuEquipment.InitVisible = true;
|
this.checkBoxNotLoginMenuEquipment.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuEquipment.Location = new System.Drawing.Point(924, 500);
|
this.checkBoxNotLoginMenuEquipment.Location = new System.Drawing.Point(921, 469);
|
||||||
this.checkBoxNotLoginMenuEquipment.Name = "checkBoxNotLoginMenuEquipment";
|
this.checkBoxNotLoginMenuEquipment.Name = "checkBoxNotLoginMenuEquipment";
|
||||||
this.checkBoxNotLoginMenuEquipment.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuEquipment.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuEquipment.TabIndex = 903;
|
this.checkBoxNotLoginMenuEquipment.TabIndex = 903;
|
||||||
|
|
@ -733,7 +737,7 @@
|
||||||
this.checkBoxL3MenuEquipment.ImageCheckBox = null;
|
this.checkBoxL3MenuEquipment.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuEquipment.ImageUnCheckBox = null;
|
this.checkBoxL3MenuEquipment.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuEquipment.InitVisible = true;
|
this.checkBoxL3MenuEquipment.InitVisible = true;
|
||||||
this.checkBoxL3MenuEquipment.Location = new System.Drawing.Point(874, 500);
|
this.checkBoxL3MenuEquipment.Location = new System.Drawing.Point(871, 469);
|
||||||
this.checkBoxL3MenuEquipment.Name = "checkBoxL3MenuEquipment";
|
this.checkBoxL3MenuEquipment.Name = "checkBoxL3MenuEquipment";
|
||||||
this.checkBoxL3MenuEquipment.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuEquipment.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuEquipment.TabIndex = 904;
|
this.checkBoxL3MenuEquipment.TabIndex = 904;
|
||||||
|
|
@ -753,7 +757,7 @@
|
||||||
this.checkBoxNotLoginMenuUpdate.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuUpdate.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuUpdate.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuUpdate.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuUpdate.InitVisible = true;
|
this.checkBoxNotLoginMenuUpdate.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuUpdate.Location = new System.Drawing.Point(924, 407);
|
this.checkBoxNotLoginMenuUpdate.Location = new System.Drawing.Point(424, 593);
|
||||||
this.checkBoxNotLoginMenuUpdate.Name = "checkBoxNotLoginMenuUpdate";
|
this.checkBoxNotLoginMenuUpdate.Name = "checkBoxNotLoginMenuUpdate";
|
||||||
this.checkBoxNotLoginMenuUpdate.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuUpdate.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuUpdate.TabIndex = 897;
|
this.checkBoxNotLoginMenuUpdate.TabIndex = 897;
|
||||||
|
|
@ -773,7 +777,7 @@
|
||||||
this.checkBoxL3MenuUpdate.ImageCheckBox = null;
|
this.checkBoxL3MenuUpdate.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuUpdate.ImageUnCheckBox = null;
|
this.checkBoxL3MenuUpdate.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuUpdate.InitVisible = true;
|
this.checkBoxL3MenuUpdate.InitVisible = true;
|
||||||
this.checkBoxL3MenuUpdate.Location = new System.Drawing.Point(874, 407);
|
this.checkBoxL3MenuUpdate.Location = new System.Drawing.Point(374, 593);
|
||||||
this.checkBoxL3MenuUpdate.Name = "checkBoxL3MenuUpdate";
|
this.checkBoxL3MenuUpdate.Name = "checkBoxL3MenuUpdate";
|
||||||
this.checkBoxL3MenuUpdate.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuUpdate.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuUpdate.TabIndex = 890;
|
this.checkBoxL3MenuUpdate.TabIndex = 890;
|
||||||
|
|
@ -873,7 +877,7 @@
|
||||||
this.checkBoxL2MenuEquipment.ImageCheckBox = null;
|
this.checkBoxL2MenuEquipment.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuEquipment.ImageUnCheckBox = null;
|
this.checkBoxL2MenuEquipment.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuEquipment.InitVisible = true;
|
this.checkBoxL2MenuEquipment.InitVisible = true;
|
||||||
this.checkBoxL2MenuEquipment.Location = new System.Drawing.Point(824, 500);
|
this.checkBoxL2MenuEquipment.Location = new System.Drawing.Point(821, 469);
|
||||||
this.checkBoxL2MenuEquipment.Name = "checkBoxL2MenuEquipment";
|
this.checkBoxL2MenuEquipment.Name = "checkBoxL2MenuEquipment";
|
||||||
this.checkBoxL2MenuEquipment.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuEquipment.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuEquipment.TabIndex = 895;
|
this.checkBoxL2MenuEquipment.TabIndex = 895;
|
||||||
|
|
@ -893,7 +897,7 @@
|
||||||
this.checkBoxL2MenuUpdate.ImageCheckBox = null;
|
this.checkBoxL2MenuUpdate.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuUpdate.ImageUnCheckBox = null;
|
this.checkBoxL2MenuUpdate.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuUpdate.InitVisible = true;
|
this.checkBoxL2MenuUpdate.InitVisible = true;
|
||||||
this.checkBoxL2MenuUpdate.Location = new System.Drawing.Point(824, 407);
|
this.checkBoxL2MenuUpdate.Location = new System.Drawing.Point(324, 593);
|
||||||
this.checkBoxL2MenuUpdate.Name = "checkBoxL2MenuUpdate";
|
this.checkBoxL2MenuUpdate.Name = "checkBoxL2MenuUpdate";
|
||||||
this.checkBoxL2MenuUpdate.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuUpdate.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuUpdate.TabIndex = 896;
|
this.checkBoxL2MenuUpdate.TabIndex = 896;
|
||||||
|
|
@ -953,7 +957,7 @@
|
||||||
this.checkBoxL1MenuEquipment.ImageCheckBox = null;
|
this.checkBoxL1MenuEquipment.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuEquipment.ImageUnCheckBox = null;
|
this.checkBoxL1MenuEquipment.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuEquipment.InitVisible = true;
|
this.checkBoxL1MenuEquipment.InitVisible = true;
|
||||||
this.checkBoxL1MenuEquipment.Location = new System.Drawing.Point(774, 500);
|
this.checkBoxL1MenuEquipment.Location = new System.Drawing.Point(771, 469);
|
||||||
this.checkBoxL1MenuEquipment.Name = "checkBoxL1MenuEquipment";
|
this.checkBoxL1MenuEquipment.Name = "checkBoxL1MenuEquipment";
|
||||||
this.checkBoxL1MenuEquipment.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuEquipment.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuEquipment.TabIndex = 893;
|
this.checkBoxL1MenuEquipment.TabIndex = 893;
|
||||||
|
|
@ -973,7 +977,7 @@
|
||||||
this.checkBoxL1MenuUpdate.ImageCheckBox = null;
|
this.checkBoxL1MenuUpdate.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuUpdate.ImageUnCheckBox = null;
|
this.checkBoxL1MenuUpdate.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuUpdate.InitVisible = true;
|
this.checkBoxL1MenuUpdate.InitVisible = true;
|
||||||
this.checkBoxL1MenuUpdate.Location = new System.Drawing.Point(774, 407);
|
this.checkBoxL1MenuUpdate.Location = new System.Drawing.Point(274, 593);
|
||||||
this.checkBoxL1MenuUpdate.Name = "checkBoxL1MenuUpdate";
|
this.checkBoxL1MenuUpdate.Name = "checkBoxL1MenuUpdate";
|
||||||
this.checkBoxL1MenuUpdate.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuUpdate.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuUpdate.TabIndex = 908;
|
this.checkBoxL1MenuUpdate.TabIndex = 908;
|
||||||
|
|
@ -1033,7 +1037,7 @@
|
||||||
this.checkBoxNotLoginMenuIOTest.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuIOTest.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuIOTest.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuIOTest.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuIOTest.InitVisible = true;
|
this.checkBoxNotLoginMenuIOTest.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuIOTest.Location = new System.Drawing.Point(424, 593);
|
this.checkBoxNotLoginMenuIOTest.Location = new System.Drawing.Point(424, 562);
|
||||||
this.checkBoxNotLoginMenuIOTest.Name = "checkBoxNotLoginMenuIOTest";
|
this.checkBoxNotLoginMenuIOTest.Name = "checkBoxNotLoginMenuIOTest";
|
||||||
this.checkBoxNotLoginMenuIOTest.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuIOTest.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuIOTest.TabIndex = 917;
|
this.checkBoxNotLoginMenuIOTest.TabIndex = 917;
|
||||||
|
|
@ -1053,7 +1057,7 @@
|
||||||
this.checkBoxL3MenuIOTest.ImageCheckBox = null;
|
this.checkBoxL3MenuIOTest.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuIOTest.ImageUnCheckBox = null;
|
this.checkBoxL3MenuIOTest.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuIOTest.InitVisible = true;
|
this.checkBoxL3MenuIOTest.InitVisible = true;
|
||||||
this.checkBoxL3MenuIOTest.Location = new System.Drawing.Point(374, 593);
|
this.checkBoxL3MenuIOTest.Location = new System.Drawing.Point(374, 562);
|
||||||
this.checkBoxL3MenuIOTest.Name = "checkBoxL3MenuIOTest";
|
this.checkBoxL3MenuIOTest.Name = "checkBoxL3MenuIOTest";
|
||||||
this.checkBoxL3MenuIOTest.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuIOTest.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuIOTest.TabIndex = 922;
|
this.checkBoxL3MenuIOTest.TabIndex = 922;
|
||||||
|
|
@ -1073,7 +1077,7 @@
|
||||||
this.checkBoxNotLoginMenuDataBackup.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuDataBackup.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuDataBackup.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuDataBackup.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuDataBackup.InitVisible = true;
|
this.checkBoxNotLoginMenuDataBackup.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuDataBackup.Location = new System.Drawing.Point(924, 469);
|
this.checkBoxNotLoginMenuDataBackup.Location = new System.Drawing.Point(921, 438);
|
||||||
this.checkBoxNotLoginMenuDataBackup.Name = "checkBoxNotLoginMenuDataBackup";
|
this.checkBoxNotLoginMenuDataBackup.Name = "checkBoxNotLoginMenuDataBackup";
|
||||||
this.checkBoxNotLoginMenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuDataBackup.TabIndex = 923;
|
this.checkBoxNotLoginMenuDataBackup.TabIndex = 923;
|
||||||
|
|
@ -1093,7 +1097,7 @@
|
||||||
this.checkBoxL3MenuDataBackup.ImageCheckBox = null;
|
this.checkBoxL3MenuDataBackup.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuDataBackup.ImageUnCheckBox = null;
|
this.checkBoxL3MenuDataBackup.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuDataBackup.InitVisible = true;
|
this.checkBoxL3MenuDataBackup.InitVisible = true;
|
||||||
this.checkBoxL3MenuDataBackup.Location = new System.Drawing.Point(874, 469);
|
this.checkBoxL3MenuDataBackup.Location = new System.Drawing.Point(871, 438);
|
||||||
this.checkBoxL3MenuDataBackup.Name = "checkBoxL3MenuDataBackup";
|
this.checkBoxL3MenuDataBackup.Name = "checkBoxL3MenuDataBackup";
|
||||||
this.checkBoxL3MenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuDataBackup.TabIndex = 921;
|
this.checkBoxL3MenuDataBackup.TabIndex = 921;
|
||||||
|
|
@ -1113,7 +1117,7 @@
|
||||||
this.checkBoxL2MenuIOTest.ImageCheckBox = null;
|
this.checkBoxL2MenuIOTest.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuIOTest.ImageUnCheckBox = null;
|
this.checkBoxL2MenuIOTest.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuIOTest.InitVisible = true;
|
this.checkBoxL2MenuIOTest.InitVisible = true;
|
||||||
this.checkBoxL2MenuIOTest.Location = new System.Drawing.Point(324, 593);
|
this.checkBoxL2MenuIOTest.Location = new System.Drawing.Point(324, 562);
|
||||||
this.checkBoxL2MenuIOTest.Name = "checkBoxL2MenuIOTest";
|
this.checkBoxL2MenuIOTest.Name = "checkBoxL2MenuIOTest";
|
||||||
this.checkBoxL2MenuIOTest.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuIOTest.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuIOTest.TabIndex = 920;
|
this.checkBoxL2MenuIOTest.TabIndex = 920;
|
||||||
|
|
@ -1133,7 +1137,7 @@
|
||||||
this.checkBoxL2MenuDataBackup.ImageCheckBox = null;
|
this.checkBoxL2MenuDataBackup.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuDataBackup.ImageUnCheckBox = null;
|
this.checkBoxL2MenuDataBackup.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuDataBackup.InitVisible = true;
|
this.checkBoxL2MenuDataBackup.InitVisible = true;
|
||||||
this.checkBoxL2MenuDataBackup.Location = new System.Drawing.Point(824, 469);
|
this.checkBoxL2MenuDataBackup.Location = new System.Drawing.Point(821, 438);
|
||||||
this.checkBoxL2MenuDataBackup.Name = "checkBoxL2MenuDataBackup";
|
this.checkBoxL2MenuDataBackup.Name = "checkBoxL2MenuDataBackup";
|
||||||
this.checkBoxL2MenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuDataBackup.TabIndex = 916;
|
this.checkBoxL2MenuDataBackup.TabIndex = 916;
|
||||||
|
|
@ -1153,7 +1157,7 @@
|
||||||
this.checkBoxL1MenuIOTest.ImageCheckBox = null;
|
this.checkBoxL1MenuIOTest.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuIOTest.ImageUnCheckBox = null;
|
this.checkBoxL1MenuIOTest.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuIOTest.InitVisible = true;
|
this.checkBoxL1MenuIOTest.InitVisible = true;
|
||||||
this.checkBoxL1MenuIOTest.Location = new System.Drawing.Point(274, 593);
|
this.checkBoxL1MenuIOTest.Location = new System.Drawing.Point(274, 562);
|
||||||
this.checkBoxL1MenuIOTest.Name = "checkBoxL1MenuIOTest";
|
this.checkBoxL1MenuIOTest.Name = "checkBoxL1MenuIOTest";
|
||||||
this.checkBoxL1MenuIOTest.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuIOTest.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuIOTest.TabIndex = 910;
|
this.checkBoxL1MenuIOTest.TabIndex = 910;
|
||||||
|
|
@ -1173,7 +1177,7 @@
|
||||||
this.checkBoxL1MenuDataBackup.ImageCheckBox = null;
|
this.checkBoxL1MenuDataBackup.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuDataBackup.ImageUnCheckBox = null;
|
this.checkBoxL1MenuDataBackup.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuDataBackup.InitVisible = true;
|
this.checkBoxL1MenuDataBackup.InitVisible = true;
|
||||||
this.checkBoxL1MenuDataBackup.Location = new System.Drawing.Point(774, 469);
|
this.checkBoxL1MenuDataBackup.Location = new System.Drawing.Point(771, 438);
|
||||||
this.checkBoxL1MenuDataBackup.Name = "checkBoxL1MenuDataBackup";
|
this.checkBoxL1MenuDataBackup.Name = "checkBoxL1MenuDataBackup";
|
||||||
this.checkBoxL1MenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuDataBackup.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuDataBackup.TabIndex = 909;
|
this.checkBoxL1MenuDataBackup.TabIndex = 909;
|
||||||
|
|
@ -1193,7 +1197,7 @@
|
||||||
this.checkBoxNotLoginMenuMotor.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuMotor.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuMotor.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuMotor.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuMotor.InitVisible = true;
|
this.checkBoxNotLoginMenuMotor.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuMotor.Location = new System.Drawing.Point(424, 562);
|
this.checkBoxNotLoginMenuMotor.Location = new System.Drawing.Point(424, 531);
|
||||||
this.checkBoxNotLoginMenuMotor.Name = "checkBoxNotLoginMenuMotor";
|
this.checkBoxNotLoginMenuMotor.Name = "checkBoxNotLoginMenuMotor";
|
||||||
this.checkBoxNotLoginMenuMotor.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuMotor.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuMotor.TabIndex = 914;
|
this.checkBoxNotLoginMenuMotor.TabIndex = 914;
|
||||||
|
|
@ -1213,7 +1217,7 @@
|
||||||
this.checkBoxL3MenuMotor.ImageCheckBox = null;
|
this.checkBoxL3MenuMotor.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuMotor.ImageUnCheckBox = null;
|
this.checkBoxL3MenuMotor.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuMotor.InitVisible = true;
|
this.checkBoxL3MenuMotor.InitVisible = true;
|
||||||
this.checkBoxL3MenuMotor.Location = new System.Drawing.Point(374, 562);
|
this.checkBoxL3MenuMotor.Location = new System.Drawing.Point(374, 531);
|
||||||
this.checkBoxL3MenuMotor.Name = "checkBoxL3MenuMotor";
|
this.checkBoxL3MenuMotor.Name = "checkBoxL3MenuMotor";
|
||||||
this.checkBoxL3MenuMotor.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuMotor.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuMotor.TabIndex = 915;
|
this.checkBoxL3MenuMotor.TabIndex = 915;
|
||||||
|
|
@ -1313,7 +1317,7 @@
|
||||||
this.checkBoxL2MenuMotor.ImageCheckBox = null;
|
this.checkBoxL2MenuMotor.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuMotor.ImageUnCheckBox = null;
|
this.checkBoxL2MenuMotor.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuMotor.InitVisible = true;
|
this.checkBoxL2MenuMotor.InitVisible = true;
|
||||||
this.checkBoxL2MenuMotor.Location = new System.Drawing.Point(324, 562);
|
this.checkBoxL2MenuMotor.Location = new System.Drawing.Point(324, 531);
|
||||||
this.checkBoxL2MenuMotor.Name = "checkBoxL2MenuMotor";
|
this.checkBoxL2MenuMotor.Name = "checkBoxL2MenuMotor";
|
||||||
this.checkBoxL2MenuMotor.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuMotor.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuMotor.TabIndex = 870;
|
this.checkBoxL2MenuMotor.TabIndex = 870;
|
||||||
|
|
@ -1373,7 +1377,7 @@
|
||||||
this.checkBoxL1MenuMotor.ImageCheckBox = null;
|
this.checkBoxL1MenuMotor.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuMotor.ImageUnCheckBox = null;
|
this.checkBoxL1MenuMotor.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuMotor.InitVisible = true;
|
this.checkBoxL1MenuMotor.InitVisible = true;
|
||||||
this.checkBoxL1MenuMotor.Location = new System.Drawing.Point(274, 562);
|
this.checkBoxL1MenuMotor.Location = new System.Drawing.Point(274, 531);
|
||||||
this.checkBoxL1MenuMotor.Name = "checkBoxL1MenuMotor";
|
this.checkBoxL1MenuMotor.Name = "checkBoxL1MenuMotor";
|
||||||
this.checkBoxL1MenuMotor.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuMotor.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuMotor.TabIndex = 866;
|
this.checkBoxL1MenuMotor.TabIndex = 866;
|
||||||
|
|
@ -1433,7 +1437,7 @@
|
||||||
this.checkBoxNotLoginMenuInitialization.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuInitialization.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuInitialization.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuInitialization.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuInitialization.InitVisible = true;
|
this.checkBoxNotLoginMenuInitialization.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuInitialization.Location = new System.Drawing.Point(924, 438);
|
this.checkBoxNotLoginMenuInitialization.Location = new System.Drawing.Point(921, 407);
|
||||||
this.checkBoxNotLoginMenuInitialization.Name = "checkBoxNotLoginMenuInitialization";
|
this.checkBoxNotLoginMenuInitialization.Name = "checkBoxNotLoginMenuInitialization";
|
||||||
this.checkBoxNotLoginMenuInitialization.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuInitialization.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuInitialization.TabIndex = 869;
|
this.checkBoxNotLoginMenuInitialization.TabIndex = 869;
|
||||||
|
|
@ -1453,7 +1457,7 @@
|
||||||
this.checkBoxL3MenuInitialization.ImageCheckBox = null;
|
this.checkBoxL3MenuInitialization.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuInitialization.ImageUnCheckBox = null;
|
this.checkBoxL3MenuInitialization.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuInitialization.InitVisible = true;
|
this.checkBoxL3MenuInitialization.InitVisible = true;
|
||||||
this.checkBoxL3MenuInitialization.Location = new System.Drawing.Point(874, 438);
|
this.checkBoxL3MenuInitialization.Location = new System.Drawing.Point(871, 407);
|
||||||
this.checkBoxL3MenuInitialization.Name = "checkBoxL3MenuInitialization";
|
this.checkBoxL3MenuInitialization.Name = "checkBoxL3MenuInitialization";
|
||||||
this.checkBoxL3MenuInitialization.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuInitialization.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuInitialization.TabIndex = 868;
|
this.checkBoxL3MenuInitialization.TabIndex = 868;
|
||||||
|
|
@ -1473,7 +1477,7 @@
|
||||||
this.checkBoxNotLoginMenuSystem.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuSystem.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuSystem.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuSystem.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuSystem.InitVisible = true;
|
this.checkBoxNotLoginMenuSystem.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuSystem.Location = new System.Drawing.Point(424, 531);
|
this.checkBoxNotLoginMenuSystem.Location = new System.Drawing.Point(424, 500);
|
||||||
this.checkBoxNotLoginMenuSystem.Name = "checkBoxNotLoginMenuSystem";
|
this.checkBoxNotLoginMenuSystem.Name = "checkBoxNotLoginMenuSystem";
|
||||||
this.checkBoxNotLoginMenuSystem.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuSystem.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuSystem.TabIndex = 867;
|
this.checkBoxNotLoginMenuSystem.TabIndex = 867;
|
||||||
|
|
@ -1493,7 +1497,7 @@
|
||||||
this.checkBoxL3MenuSystem.ImageCheckBox = null;
|
this.checkBoxL3MenuSystem.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuSystem.ImageUnCheckBox = null;
|
this.checkBoxL3MenuSystem.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuSystem.InitVisible = true;
|
this.checkBoxL3MenuSystem.InitVisible = true;
|
||||||
this.checkBoxL3MenuSystem.Location = new System.Drawing.Point(374, 531);
|
this.checkBoxL3MenuSystem.Location = new System.Drawing.Point(374, 500);
|
||||||
this.checkBoxL3MenuSystem.Name = "checkBoxL3MenuSystem";
|
this.checkBoxL3MenuSystem.Name = "checkBoxL3MenuSystem";
|
||||||
this.checkBoxL3MenuSystem.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuSystem.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuSystem.TabIndex = 874;
|
this.checkBoxL3MenuSystem.TabIndex = 874;
|
||||||
|
|
@ -1513,7 +1517,7 @@
|
||||||
this.checkBoxNotLoginMenuTime.ImageCheckBox = null;
|
this.checkBoxNotLoginMenuTime.ImageCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuTime.ImageUnCheckBox = null;
|
this.checkBoxNotLoginMenuTime.ImageUnCheckBox = null;
|
||||||
this.checkBoxNotLoginMenuTime.InitVisible = true;
|
this.checkBoxNotLoginMenuTime.InitVisible = true;
|
||||||
this.checkBoxNotLoginMenuTime.Location = new System.Drawing.Point(924, 531);
|
this.checkBoxNotLoginMenuTime.Location = new System.Drawing.Point(921, 500);
|
||||||
this.checkBoxNotLoginMenuTime.Name = "checkBoxNotLoginMenuTime";
|
this.checkBoxNotLoginMenuTime.Name = "checkBoxNotLoginMenuTime";
|
||||||
this.checkBoxNotLoginMenuTime.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxNotLoginMenuTime.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxNotLoginMenuTime.TabIndex = 883;
|
this.checkBoxNotLoginMenuTime.TabIndex = 883;
|
||||||
|
|
@ -1534,7 +1538,7 @@
|
||||||
this.checkBoxL3MenuTime.ImageCheckBox = null;
|
this.checkBoxL3MenuTime.ImageCheckBox = null;
|
||||||
this.checkBoxL3MenuTime.ImageUnCheckBox = null;
|
this.checkBoxL3MenuTime.ImageUnCheckBox = null;
|
||||||
this.checkBoxL3MenuTime.InitVisible = true;
|
this.checkBoxL3MenuTime.InitVisible = true;
|
||||||
this.checkBoxL3MenuTime.Location = new System.Drawing.Point(874, 531);
|
this.checkBoxL3MenuTime.Location = new System.Drawing.Point(871, 500);
|
||||||
this.checkBoxL3MenuTime.Name = "checkBoxL3MenuTime";
|
this.checkBoxL3MenuTime.Name = "checkBoxL3MenuTime";
|
||||||
this.checkBoxL3MenuTime.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL3MenuTime.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL3MenuTime.TabIndex = 882;
|
this.checkBoxL3MenuTime.TabIndex = 882;
|
||||||
|
|
@ -1594,7 +1598,7 @@
|
||||||
this.checkBoxL2MenuInitialization.ImageCheckBox = null;
|
this.checkBoxL2MenuInitialization.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuInitialization.ImageUnCheckBox = null;
|
this.checkBoxL2MenuInitialization.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuInitialization.InitVisible = true;
|
this.checkBoxL2MenuInitialization.InitVisible = true;
|
||||||
this.checkBoxL2MenuInitialization.Location = new System.Drawing.Point(824, 438);
|
this.checkBoxL2MenuInitialization.Location = new System.Drawing.Point(821, 407);
|
||||||
this.checkBoxL2MenuInitialization.Name = "checkBoxL2MenuInitialization";
|
this.checkBoxL2MenuInitialization.Name = "checkBoxL2MenuInitialization";
|
||||||
this.checkBoxL2MenuInitialization.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuInitialization.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuInitialization.TabIndex = 885;
|
this.checkBoxL2MenuInitialization.TabIndex = 885;
|
||||||
|
|
@ -1614,7 +1618,7 @@
|
||||||
this.checkBoxL2MenuSystem.ImageCheckBox = null;
|
this.checkBoxL2MenuSystem.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuSystem.ImageUnCheckBox = null;
|
this.checkBoxL2MenuSystem.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuSystem.InitVisible = true;
|
this.checkBoxL2MenuSystem.InitVisible = true;
|
||||||
this.checkBoxL2MenuSystem.Location = new System.Drawing.Point(324, 531);
|
this.checkBoxL2MenuSystem.Location = new System.Drawing.Point(324, 500);
|
||||||
this.checkBoxL2MenuSystem.Name = "checkBoxL2MenuSystem";
|
this.checkBoxL2MenuSystem.Name = "checkBoxL2MenuSystem";
|
||||||
this.checkBoxL2MenuSystem.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuSystem.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuSystem.TabIndex = 884;
|
this.checkBoxL2MenuSystem.TabIndex = 884;
|
||||||
|
|
@ -1634,7 +1638,7 @@
|
||||||
this.checkBoxL2MenuTime.ImageCheckBox = null;
|
this.checkBoxL2MenuTime.ImageCheckBox = null;
|
||||||
this.checkBoxL2MenuTime.ImageUnCheckBox = null;
|
this.checkBoxL2MenuTime.ImageUnCheckBox = null;
|
||||||
this.checkBoxL2MenuTime.InitVisible = true;
|
this.checkBoxL2MenuTime.InitVisible = true;
|
||||||
this.checkBoxL2MenuTime.Location = new System.Drawing.Point(824, 531);
|
this.checkBoxL2MenuTime.Location = new System.Drawing.Point(821, 500);
|
||||||
this.checkBoxL2MenuTime.Name = "checkBoxL2MenuTime";
|
this.checkBoxL2MenuTime.Name = "checkBoxL2MenuTime";
|
||||||
this.checkBoxL2MenuTime.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL2MenuTime.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL2MenuTime.TabIndex = 877;
|
this.checkBoxL2MenuTime.TabIndex = 877;
|
||||||
|
|
@ -1674,7 +1678,7 @@
|
||||||
this.checkBoxL1MenuInitialization.ImageCheckBox = null;
|
this.checkBoxL1MenuInitialization.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuInitialization.ImageUnCheckBox = null;
|
this.checkBoxL1MenuInitialization.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuInitialization.InitVisible = true;
|
this.checkBoxL1MenuInitialization.InitVisible = true;
|
||||||
this.checkBoxL1MenuInitialization.Location = new System.Drawing.Point(774, 438);
|
this.checkBoxL1MenuInitialization.Location = new System.Drawing.Point(771, 407);
|
||||||
this.checkBoxL1MenuInitialization.Name = "checkBoxL1MenuInitialization";
|
this.checkBoxL1MenuInitialization.Name = "checkBoxL1MenuInitialization";
|
||||||
this.checkBoxL1MenuInitialization.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuInitialization.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuInitialization.TabIndex = 875;
|
this.checkBoxL1MenuInitialization.TabIndex = 875;
|
||||||
|
|
@ -1694,7 +1698,7 @@
|
||||||
this.checkBoxL1MenuSystem.ImageCheckBox = null;
|
this.checkBoxL1MenuSystem.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuSystem.ImageUnCheckBox = null;
|
this.checkBoxL1MenuSystem.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuSystem.InitVisible = true;
|
this.checkBoxL1MenuSystem.InitVisible = true;
|
||||||
this.checkBoxL1MenuSystem.Location = new System.Drawing.Point(274, 531);
|
this.checkBoxL1MenuSystem.Location = new System.Drawing.Point(274, 500);
|
||||||
this.checkBoxL1MenuSystem.Name = "checkBoxL1MenuSystem";
|
this.checkBoxL1MenuSystem.Name = "checkBoxL1MenuSystem";
|
||||||
this.checkBoxL1MenuSystem.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuSystem.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuSystem.TabIndex = 880;
|
this.checkBoxL1MenuSystem.TabIndex = 880;
|
||||||
|
|
@ -1714,7 +1718,7 @@
|
||||||
this.checkBoxL1MenuTime.ImageCheckBox = null;
|
this.checkBoxL1MenuTime.ImageCheckBox = null;
|
||||||
this.checkBoxL1MenuTime.ImageUnCheckBox = null;
|
this.checkBoxL1MenuTime.ImageUnCheckBox = null;
|
||||||
this.checkBoxL1MenuTime.InitVisible = true;
|
this.checkBoxL1MenuTime.InitVisible = true;
|
||||||
this.checkBoxL1MenuTime.Location = new System.Drawing.Point(774, 531);
|
this.checkBoxL1MenuTime.Location = new System.Drawing.Point(771, 500);
|
||||||
this.checkBoxL1MenuTime.Name = "checkBoxL1MenuTime";
|
this.checkBoxL1MenuTime.Name = "checkBoxL1MenuTime";
|
||||||
this.checkBoxL1MenuTime.Size = new System.Drawing.Size(29, 30);
|
this.checkBoxL1MenuTime.Size = new System.Drawing.Size(29, 30);
|
||||||
this.checkBoxL1MenuTime.TabIndex = 879;
|
this.checkBoxL1MenuTime.TabIndex = 879;
|
||||||
|
|
@ -1879,7 +1883,7 @@
|
||||||
this.labelTitleViewer.ForeColor = System.Drawing.Color.Black;
|
this.labelTitleViewer.ForeColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleViewer.InitVisible = true;
|
this.labelTitleViewer.InitVisible = true;
|
||||||
this.labelTitleViewer.LineSpacing = 0F;
|
this.labelTitleViewer.LineSpacing = 0F;
|
||||||
this.labelTitleViewer.Location = new System.Drawing.Point(535, 593);
|
this.labelTitleViewer.Location = new System.Drawing.Point(532, 562);
|
||||||
this.labelTitleViewer.Name = "labelTitleViewer";
|
this.labelTitleViewer.Name = "labelTitleViewer";
|
||||||
this.labelTitleViewer.Size = new System.Drawing.Size(200, 30);
|
this.labelTitleViewer.Size = new System.Drawing.Size(200, 30);
|
||||||
this.labelTitleViewer.TabIndex = 852;
|
this.labelTitleViewer.TabIndex = 852;
|
||||||
|
|
@ -1900,13 +1904,14 @@
|
||||||
this.labelTitleCommunication.ForeColor = System.Drawing.Color.Black;
|
this.labelTitleCommunication.ForeColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleCommunication.InitVisible = true;
|
this.labelTitleCommunication.InitVisible = true;
|
||||||
this.labelTitleCommunication.LineSpacing = 0F;
|
this.labelTitleCommunication.LineSpacing = 0F;
|
||||||
this.labelTitleCommunication.Location = new System.Drawing.Point(35, 469);
|
this.labelTitleCommunication.Location = new System.Drawing.Point(33, 687);
|
||||||
this.labelTitleCommunication.Name = "labelTitleCommunication";
|
this.labelTitleCommunication.Name = "labelTitleCommunication";
|
||||||
this.labelTitleCommunication.Size = new System.Drawing.Size(200, 30);
|
this.labelTitleCommunication.Size = new System.Drawing.Size(200, 30);
|
||||||
this.labelTitleCommunication.TabIndex = 847;
|
this.labelTitleCommunication.TabIndex = 847;
|
||||||
this.labelTitleCommunication.Text = "Communication";
|
this.labelTitleCommunication.Text = "Communication";
|
||||||
this.labelTitleCommunication.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
this.labelTitleCommunication.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||||
this.labelTitleCommunication.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelTitleCommunication.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
|
this.labelTitleCommunication.Visible = false;
|
||||||
this.labelTitleCommunication.Wordwrap = false;
|
this.labelTitleCommunication.Wordwrap = false;
|
||||||
//
|
//
|
||||||
// smartLabel26
|
// smartLabel26
|
||||||
|
|
@ -2105,7 +2110,7 @@
|
||||||
this.labelTitleStatistics.ForeColor = System.Drawing.Color.Black;
|
this.labelTitleStatistics.ForeColor = System.Drawing.Color.Black;
|
||||||
this.labelTitleStatistics.InitVisible = true;
|
this.labelTitleStatistics.InitVisible = true;
|
||||||
this.labelTitleStatistics.LineSpacing = 0F;
|
this.labelTitleStatistics.LineSpacing = 0F;
|
||||||
this.labelTitleStatistics.Location = new System.Drawing.Point(535, 562);
|
this.labelTitleStatistics.Location = new System.Drawing.Point(532, 531);
|
||||||
this.labelTitleStatistics.Name = "labelTitleStatistics";
|
this.labelTitleStatistics.Name = "labelTitleStatistics";
|
||||||
this.labelTitleStatistics.Size = new System.Drawing.Size(200, 30);
|
this.labelTitleStatistics.Size = new System.Drawing.Size(200, 30);
|
||||||
this.labelTitleStatistics.TabIndex = 628;
|
this.labelTitleStatistics.TabIndex = 628;
|
||||||
|
|
@ -2214,7 +2219,7 @@
|
||||||
this.smartLabel21.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel21.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel21.InitVisible = true;
|
this.smartLabel21.InitVisible = true;
|
||||||
this.smartLabel21.LineSpacing = 0F;
|
this.smartLabel21.LineSpacing = 0F;
|
||||||
this.smartLabel21.Location = new System.Drawing.Point(535, 500);
|
this.smartLabel21.Location = new System.Drawing.Point(532, 469);
|
||||||
this.smartLabel21.Name = "smartLabel21";
|
this.smartLabel21.Name = "smartLabel21";
|
||||||
this.smartLabel21.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel21.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel21.TabIndex = 555;
|
this.smartLabel21.TabIndex = 555;
|
||||||
|
|
@ -2234,7 +2239,7 @@
|
||||||
this.smartLabel18.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel18.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel18.InitVisible = true;
|
this.smartLabel18.InitVisible = true;
|
||||||
this.smartLabel18.LineSpacing = 0F;
|
this.smartLabel18.LineSpacing = 0F;
|
||||||
this.smartLabel18.Location = new System.Drawing.Point(535, 438);
|
this.smartLabel18.Location = new System.Drawing.Point(532, 407);
|
||||||
this.smartLabel18.Name = "smartLabel18";
|
this.smartLabel18.Name = "smartLabel18";
|
||||||
this.smartLabel18.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel18.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel18.TabIndex = 552;
|
this.smartLabel18.TabIndex = 552;
|
||||||
|
|
@ -2254,7 +2259,7 @@
|
||||||
this.smartLabel16.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel16.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel16.InitVisible = true;
|
this.smartLabel16.InitVisible = true;
|
||||||
this.smartLabel16.LineSpacing = 0F;
|
this.smartLabel16.LineSpacing = 0F;
|
||||||
this.smartLabel16.Location = new System.Drawing.Point(535, 407);
|
this.smartLabel16.Location = new System.Drawing.Point(35, 593);
|
||||||
this.smartLabel16.Name = "smartLabel16";
|
this.smartLabel16.Name = "smartLabel16";
|
||||||
this.smartLabel16.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel16.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel16.TabIndex = 551;
|
this.smartLabel16.TabIndex = 551;
|
||||||
|
|
@ -2274,7 +2279,7 @@
|
||||||
this.smartLabel15.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel15.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel15.InitVisible = true;
|
this.smartLabel15.InitVisible = true;
|
||||||
this.smartLabel15.LineSpacing = 0F;
|
this.smartLabel15.LineSpacing = 0F;
|
||||||
this.smartLabel15.Location = new System.Drawing.Point(35, 593);
|
this.smartLabel15.Location = new System.Drawing.Point(35, 562);
|
||||||
this.smartLabel15.Name = "smartLabel15";
|
this.smartLabel15.Name = "smartLabel15";
|
||||||
this.smartLabel15.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel15.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel15.TabIndex = 550;
|
this.smartLabel15.TabIndex = 550;
|
||||||
|
|
@ -2294,7 +2299,7 @@
|
||||||
this.smartLabel14.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel14.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel14.InitVisible = true;
|
this.smartLabel14.InitVisible = true;
|
||||||
this.smartLabel14.LineSpacing = 0F;
|
this.smartLabel14.LineSpacing = 0F;
|
||||||
this.smartLabel14.Location = new System.Drawing.Point(35, 562);
|
this.smartLabel14.Location = new System.Drawing.Point(35, 531);
|
||||||
this.smartLabel14.Name = "smartLabel14";
|
this.smartLabel14.Name = "smartLabel14";
|
||||||
this.smartLabel14.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel14.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel14.TabIndex = 549;
|
this.smartLabel14.TabIndex = 549;
|
||||||
|
|
@ -2314,7 +2319,7 @@
|
||||||
this.smartLabel13.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel13.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel13.InitVisible = true;
|
this.smartLabel13.InitVisible = true;
|
||||||
this.smartLabel13.LineSpacing = 0F;
|
this.smartLabel13.LineSpacing = 0F;
|
||||||
this.smartLabel13.Location = new System.Drawing.Point(35, 531);
|
this.smartLabel13.Location = new System.Drawing.Point(35, 500);
|
||||||
this.smartLabel13.Name = "smartLabel13";
|
this.smartLabel13.Name = "smartLabel13";
|
||||||
this.smartLabel13.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel13.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel13.TabIndex = 548;
|
this.smartLabel13.TabIndex = 548;
|
||||||
|
|
@ -2334,7 +2339,7 @@
|
||||||
this.smartLabel12.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel12.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel12.InitVisible = true;
|
this.smartLabel12.InitVisible = true;
|
||||||
this.smartLabel12.LineSpacing = 0F;
|
this.smartLabel12.LineSpacing = 0F;
|
||||||
this.smartLabel12.Location = new System.Drawing.Point(35, 500);
|
this.smartLabel12.Location = new System.Drawing.Point(35, 469);
|
||||||
this.smartLabel12.Name = "smartLabel12";
|
this.smartLabel12.Name = "smartLabel12";
|
||||||
this.smartLabel12.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel12.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel12.TabIndex = 547;
|
this.smartLabel12.TabIndex = 547;
|
||||||
|
|
@ -2374,7 +2379,7 @@
|
||||||
this.smartLabel10.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel10.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel10.InitVisible = true;
|
this.smartLabel10.InitVisible = true;
|
||||||
this.smartLabel10.LineSpacing = 0F;
|
this.smartLabel10.LineSpacing = 0F;
|
||||||
this.smartLabel10.Location = new System.Drawing.Point(535, 469);
|
this.smartLabel10.Location = new System.Drawing.Point(532, 438);
|
||||||
this.smartLabel10.Name = "smartLabel10";
|
this.smartLabel10.Name = "smartLabel10";
|
||||||
this.smartLabel10.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel10.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel10.TabIndex = 545;
|
this.smartLabel10.TabIndex = 545;
|
||||||
|
|
@ -2414,7 +2419,7 @@
|
||||||
this.smartLabel8.ForeColor = System.Drawing.Color.Black;
|
this.smartLabel8.ForeColor = System.Drawing.Color.Black;
|
||||||
this.smartLabel8.InitVisible = true;
|
this.smartLabel8.InitVisible = true;
|
||||||
this.smartLabel8.LineSpacing = 0F;
|
this.smartLabel8.LineSpacing = 0F;
|
||||||
this.smartLabel8.Location = new System.Drawing.Point(535, 531);
|
this.smartLabel8.Location = new System.Drawing.Point(532, 500);
|
||||||
this.smartLabel8.Name = "smartLabel8";
|
this.smartLabel8.Name = "smartLabel8";
|
||||||
this.smartLabel8.Size = new System.Drawing.Size(200, 30);
|
this.smartLabel8.Size = new System.Drawing.Size(200, 30);
|
||||||
this.smartLabel8.TabIndex = 543;
|
this.smartLabel8.TabIndex = 543;
|
||||||
|
|
|
||||||
|
|
@ -760,6 +760,10 @@
|
||||||
<DependentUpon>FormDataBackup.cs</DependentUpon>
|
<DependentUpon>FormDataBackup.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Forms\FormDataBackup_Part11.resx">
|
||||||
|
<DependentUpon>FormDataBackup_Part11.cs</DependentUpon>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Forms\FormDataStatistics.resx">
|
<EmbeddedResource Include="Forms\FormDataStatistics.resx">
|
||||||
<DependentUpon>FormDataStatistics.cs</DependentUpon>
|
<DependentUpon>FormDataStatistics.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Reference in New Issue