Merge branch 'master' of http://192.168.11.65:3000/chojy/INT69DC_7C
# Conflicts: # INT69DC_7C/Controls/ControlCalibration10.cs # INT69DC_7C/Controls/ControlCalibration12.cs # INT69DC_7C/Controls/ControlCalibration7.cs # INT69DC_7C/Controls/ControlCalibration8.csmaster
commit
c83c0bfa59
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -59,12 +59,66 @@ namespace INT69DC_7C.Controls
|
|||
this.CollLabelConstant = new Collection<SmartLabel>();
|
||||
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||
|
||||
<<<<<<< HEAD
|
||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||
=======
|
||||
this.CollButtonLane.Clear();
|
||||
this.CollLabelWeight.Clear();
|
||||
this.CollLabelADC.Clear();
|
||||
this.CollLabelConstant.Clear();
|
||||
this.CollCalStatus.Clear();
|
||||
|
||||
this.CollButtonLane.Add(this.buttonLine1);
|
||||
this.CollButtonLane.Add(this.buttonLine2);
|
||||
this.CollButtonLane.Add(this.buttonLine3);
|
||||
this.CollButtonLane.Add(this.buttonLine4);
|
||||
this.CollButtonLane.Add(this.buttonLine5);
|
||||
this.CollButtonLane.Add(this.buttonLine6);
|
||||
this.CollButtonLane.Add(this.buttonLine7);
|
||||
this.CollButtonLane.Add(this.buttonLine8);
|
||||
this.CollButtonLane.Add(this.buttonLine9);
|
||||
this.CollButtonLane.Add(this.buttonLine10);
|
||||
|
||||
this.CollLabelWeight.Add(this.labelWeight1);
|
||||
this.CollLabelWeight.Add(this.labelWeight2);
|
||||
this.CollLabelWeight.Add(this.labelWeight3);
|
||||
this.CollLabelWeight.Add(this.labelWeight4);
|
||||
this.CollLabelWeight.Add(this.labelWeight5);
|
||||
this.CollLabelWeight.Add(this.labelWeight6);
|
||||
this.CollLabelWeight.Add(this.labelWeight7);
|
||||
this.CollLabelWeight.Add(this.labelWeight8);
|
||||
this.CollLabelWeight.Add(this.labelWeight9);
|
||||
this.CollLabelWeight.Add(this.labelWeight10);
|
||||
|
||||
this.CollLabelADC.Add(this.labelADC1);
|
||||
this.CollLabelADC.Add(this.labelADC2);
|
||||
this.CollLabelADC.Add(this.labelADC3);
|
||||
this.CollLabelADC.Add(this.labelADC4);
|
||||
this.CollLabelADC.Add(this.labelADC5);
|
||||
this.CollLabelADC.Add(this.labelADC6);
|
||||
this.CollLabelADC.Add(this.labelADC7);
|
||||
this.CollLabelADC.Add(this.labelADC8);
|
||||
this.CollLabelADC.Add(this.labelADC9);
|
||||
this.CollLabelADC.Add(this.labelADC10);
|
||||
|
||||
this.CollLabelConstant.Add(this.labelConstant1);
|
||||
this.CollLabelConstant.Add(this.labelConstant2);
|
||||
this.CollLabelConstant.Add(this.labelConstant3);
|
||||
this.CollLabelConstant.Add(this.labelConstant4);
|
||||
this.CollLabelConstant.Add(this.labelConstant5);
|
||||
this.CollLabelConstant.Add(this.labelConstant6);
|
||||
this.CollLabelConstant.Add(this.labelConstant7);
|
||||
this.CollLabelConstant.Add(this.labelConstant8);
|
||||
this.CollLabelConstant.Add(this.labelConstant9);
|
||||
this.CollLabelConstant.Add(this.labelConstant10);
|
||||
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
>>>>>>> d4b927138c4f21486cd4286de805c526717e977f
|
||||
this.CollCalStatus.Add(new CalibrationStatus());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,576 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using SmartX;
|
||||
using INT69DC_7C.Forms;
|
||||
|
||||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
public partial class ControlCalibration11 : UserControl
|
||||
{
|
||||
#region Field
|
||||
private FormCalibration m_ParentForm;
|
||||
|
||||
private Color NormalColor = Color.Black;
|
||||
private Color FinishColor = Color.Blue;
|
||||
|
||||
private Collection<SmartButton> CollButtonLane;
|
||||
private Collection<SmartLabel> CollLabelWeight;
|
||||
private Collection<SmartLabel> CollLabelADC;
|
||||
private Collection<SmartLabel> CollLabelConstant;
|
||||
private Collection<CalibrationStatus> CollCalStatus;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public ControlCalibration11(FormCalibration parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.ParentForm = parent;
|
||||
|
||||
this.CreateCollection();
|
||||
this.InitilizeControls();
|
||||
this.InitializeDesign();
|
||||
this.DisplayRefresh();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Property
|
||||
public FormCalibration ParentForm
|
||||
{
|
||||
get { return this.m_ParentForm; }
|
||||
private set { this.m_ParentForm = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
private void CreateCollection()
|
||||
{
|
||||
this.CollButtonLane = new Collection<SmartButton>();
|
||||
this.CollLabelWeight = new Collection<SmartLabel>();
|
||||
this.CollLabelADC = new Collection<SmartLabel>();
|
||||
this.CollLabelConstant = new Collection<SmartLabel>();
|
||||
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||
|
||||
this.CollButtonLane.Clear();
|
||||
this.CollLabelWeight.Clear();
|
||||
this.CollLabelADC.Clear();
|
||||
this.CollLabelConstant.Clear();
|
||||
this.CollCalStatus.Clear();
|
||||
|
||||
this.CollButtonLane.Add(this.buttonLine1);
|
||||
this.CollButtonLane.Add(this.buttonLine2);
|
||||
this.CollButtonLane.Add(this.buttonLine3);
|
||||
this.CollButtonLane.Add(this.buttonLine4);
|
||||
this.CollButtonLane.Add(this.buttonLine5);
|
||||
this.CollButtonLane.Add(this.buttonLine6);
|
||||
this.CollButtonLane.Add(this.buttonLine7);
|
||||
this.CollButtonLane.Add(this.buttonLine8);
|
||||
this.CollButtonLane.Add(this.buttonLine9);
|
||||
this.CollButtonLane.Add(this.buttonLine10);
|
||||
this.CollButtonLane.Add(this.buttonLine11);
|
||||
|
||||
this.CollLabelWeight.Add(this.labelWeight1);
|
||||
this.CollLabelWeight.Add(this.labelWeight2);
|
||||
this.CollLabelWeight.Add(this.labelWeight3);
|
||||
this.CollLabelWeight.Add(this.labelWeight4);
|
||||
this.CollLabelWeight.Add(this.labelWeight5);
|
||||
this.CollLabelWeight.Add(this.labelWeight6);
|
||||
this.CollLabelWeight.Add(this.labelWeight7);
|
||||
this.CollLabelWeight.Add(this.labelWeight8);
|
||||
this.CollLabelWeight.Add(this.labelWeight9);
|
||||
this.CollLabelWeight.Add(this.labelWeight10);
|
||||
this.CollLabelWeight.Add(this.labelWeight11);
|
||||
|
||||
this.CollLabelADC.Add(this.labelADC1);
|
||||
this.CollLabelADC.Add(this.labelADC2);
|
||||
this.CollLabelADC.Add(this.labelADC3);
|
||||
this.CollLabelADC.Add(this.labelADC4);
|
||||
this.CollLabelADC.Add(this.labelADC5);
|
||||
this.CollLabelADC.Add(this.labelADC6);
|
||||
this.CollLabelADC.Add(this.labelADC7);
|
||||
this.CollLabelADC.Add(this.labelADC8);
|
||||
this.CollLabelADC.Add(this.labelADC9);
|
||||
this.CollLabelADC.Add(this.labelADC10);
|
||||
this.CollLabelADC.Add(this.labelADC11);
|
||||
|
||||
this.CollLabelConstant.Add(this.labelConstant1);
|
||||
this.CollLabelConstant.Add(this.labelConstant2);
|
||||
this.CollLabelConstant.Add(this.labelConstant3);
|
||||
this.CollLabelConstant.Add(this.labelConstant4);
|
||||
this.CollLabelConstant.Add(this.labelConstant5);
|
||||
this.CollLabelConstant.Add(this.labelConstant6);
|
||||
this.CollLabelConstant.Add(this.labelConstant7);
|
||||
this.CollLabelConstant.Add(this.labelConstant8);
|
||||
this.CollLabelConstant.Add(this.labelConstant9);
|
||||
this.CollLabelConstant.Add(this.labelConstant10);
|
||||
this.CollLabelConstant.Add(this.labelConstant11);
|
||||
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.CollCalStatus.Add(new CalibrationStatus());
|
||||
}
|
||||
private void InitilizeControls()
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
this.CollLabelWeight[i].Text = "0.0";
|
||||
this.CollLabelADC[i].Text = "0.0";
|
||||
this.CollLabelConstant[i].Text = "0.0";
|
||||
}
|
||||
}
|
||||
private void InitializeDesign()
|
||||
{
|
||||
}
|
||||
|
||||
public void DisplayRefresh()
|
||||
{
|
||||
if (this.CollButtonLane == null || this.CollButtonLane.Count == 0)
|
||||
return;
|
||||
|
||||
for (int i = 0; i < this.CollButtonLane.Count; i++)
|
||||
{
|
||||
this.CollButtonLane[i].ButtonUp();
|
||||
this.CollCalStatus[i].Initialize();
|
||||
}
|
||||
}
|
||||
|
||||
public void CalibrationBalance()
|
||||
{
|
||||
string detail = "";
|
||||
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("분동 계산중 입니다");
|
||||
this.ParentForm.listBoxHelp.Items.Add("잠시만 기다리세요");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Caculating...");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Wait a minute.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("计算...");
|
||||
this.ParentForm.listBoxHelp.Items.Add("请稍等");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("výpočet...");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Vyčkejte.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Gewichtsüberprüfung,");
|
||||
this.ParentForm.listBoxHelp.Items.Add("bitte warten");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
for (int i = 0; i < this.CollButtonLane.Count; i++)
|
||||
{
|
||||
if (this.CollButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationBalance, this.CollButtonLane[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);
|
||||
}
|
||||
public void CalibrationStart()
|
||||
{
|
||||
string detail = "";
|
||||
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("중량조정을 시작합니다.");
|
||||
this.ParentForm.listBoxHelp.Items.Add("잠시만 기다리세요.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Calibration start.");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Wait a minute.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("校准开始按钮");
|
||||
this.ParentForm.listBoxHelp.Items.Add("请稍等");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("START kalibrace");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Vyčkejte.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Kalibrierungsstart");
|
||||
this.ParentForm.listBoxHelp.Items.Add("bitte warten");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
for (int i = 0; i < this.CollButtonLane.Count; i++)
|
||||
{
|
||||
if (this.CollButtonLane[i].ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationStart, this.CollButtonLane[i].Tag.ToString());
|
||||
|
||||
// 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.CollButtonLane[i].Enabled = false;
|
||||
}
|
||||
|
||||
this.ParentForm.CalibrationButtonEnable(false, false, false);
|
||||
}
|
||||
public void CalibrationCancel()
|
||||
{
|
||||
string detail = "";
|
||||
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("중량조정을 취소합니다");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Cancel the Calibration");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("取消校准");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Zrušení Kalibrace");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Brechen Sie die ");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Kalibrierung ab");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
for (int i = 0; i < this.CollButtonLane.Count; i++)
|
||||
{
|
||||
if (this.CollButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
this.ParentForm.ParentForm.TransferData(CommunicationCommand.CalibrationCancel, this.CollButtonLane[i].Tag.ToString());
|
||||
|
||||
// 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.CollButtonLane[i].Enabled = true;
|
||||
}
|
||||
|
||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||
}
|
||||
|
||||
public void UpdateConfiguration(DataStore.EquipmentStatus status, CalibrationItem config)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant1.Trim(), 6);
|
||||
if (this.labelConstant1.Text != value)
|
||||
this.labelConstant1.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant2.Trim(), 6);
|
||||
if (this.labelConstant2.Text != value)
|
||||
this.labelConstant2.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant3.Trim(), 6);
|
||||
if (this.labelConstant3.Text != value)
|
||||
this.labelConstant3.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant4.Trim(), 6);
|
||||
if (this.labelConstant4.Text != value)
|
||||
this.labelConstant4.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant5.Trim(), 6);
|
||||
if (this.labelConstant5.Text != value)
|
||||
this.labelConstant5.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant6.Trim(), 6);
|
||||
if (this.labelConstant6.Text != value)
|
||||
this.labelConstant6.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant7.Trim(), 6);
|
||||
if (this.labelConstant7.Text != value)
|
||||
this.labelConstant7.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant8.Trim(), 6);
|
||||
if (this.labelConstant8.Text != value)
|
||||
this.labelConstant8.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant9.Trim(), 6);
|
||||
if (this.labelConstant9.Text != value)
|
||||
this.labelConstant9.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant10.Trim(), 6);
|
||||
if (this.labelConstant10.Text != value)
|
||||
this.labelConstant10.Text = value;
|
||||
|
||||
value = Helper.StringToDecimalPlaces(config.Constant11.Trim(), 6);
|
||||
if (this.labelConstant11.Text != value)
|
||||
this.labelConstant11.Text = value;
|
||||
}
|
||||
public void UpdateWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weights)
|
||||
{
|
||||
if (this.CollLabelWeight == null || weights.Count < this.CollLabelWeight.Count || status == DataStore.EquipmentStatus.Start)
|
||||
return;
|
||||
|
||||
for (int i = 0; i < weights.Count; i++)
|
||||
{
|
||||
if (this.CollButtonLane[i].ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
this.UpdateLabelWeight(i, this.CollButtonLane[i], this.CollLabelWeight[i], this.CollLabelADC[i], weights[i], true);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.UpdateLabelWeight(i, this.CollButtonLane[i], this.CollLabelWeight[i], this.CollLabelADC[i], weights[i], false);
|
||||
}
|
||||
}
|
||||
}
|
||||
private void UpdateLabelWeight(int index, SmartButton buttonLane, SmartLabel labelWeight, SmartLabel labelADC, WeightData weightData, bool rbChecked)
|
||||
{
|
||||
string detail = "";
|
||||
|
||||
switch (weightData.Status)
|
||||
{
|
||||
case DataStore.WeightStatus.CalNomal:
|
||||
labelWeight.Text = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
labelWeight.ForeColor = this.NormalColor;
|
||||
labelADC.Text = weightData.ADCValue;
|
||||
break;
|
||||
case DataStore.WeightStatus.CalStandby:
|
||||
if (rbChecked == true)
|
||||
{
|
||||
// 분동중량 표시
|
||||
labelWeight.Text = string.Format("-{0}", this.ParentForm.labelBalanceWeight.Text);
|
||||
labelWeight.ForeColor = this.NormalColor;
|
||||
labelADC.Text = weightData.ADCValue;
|
||||
this.ParentForm.ClearListBox();
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("분동을 올려주세요.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Put the balance.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("放平衡重");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Položit vyvážení hmotnosti.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Gewicht auf den Förderer legen");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
this.ParentForm.CalibrationButtonEnable(false, true, true);
|
||||
}
|
||||
break;
|
||||
case DataStore.WeightStatus.CalBalans:
|
||||
if (rbChecked == true)
|
||||
{
|
||||
// 분동중량표시
|
||||
labelWeight.Text = string.Format("-{0}", this.ParentForm.labelBalanceWeight.Text);
|
||||
labelWeight.ForeColor = this.NormalColor;
|
||||
labelADC.Text = weightData.ADCValue;
|
||||
this.ParentForm.CalibrationButtonEnable(false, false, true);
|
||||
}
|
||||
break;
|
||||
case DataStore.WeightStatus.CalFinish:
|
||||
if (rbChecked == true)
|
||||
{
|
||||
this.ParentForm.ClearListBox();
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("중량조정이 완료 되었습니다.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Finished.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("完");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Ukončený.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Die Kalibrierung ist abgeschlossen.");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||
foreach (SmartX.SmartButton bt in this.CollButtonLane)
|
||||
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.ForeColor = this.FinishColor;
|
||||
labelADC.Text = weightData.ADCValue;
|
||||
break;
|
||||
case DataStore.WeightStatus.CalError:
|
||||
if (rbChecked == true)
|
||||
{
|
||||
this.ParentForm.ClearListBox();
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("중량조정 에러");
|
||||
this.ParentForm.listBoxHelp.Items.Add("다시 시도해 주세요");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Calibration error.");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Please try again.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("错误发生,重试");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Kalibrace chyba.");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Zkuste znovu.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Fehler!");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Bitte noch einmal versuchen");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||
foreach (SmartX.SmartButton bt in this.CollButtonLane)
|
||||
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.ForeColor = this.NormalColor;
|
||||
labelADC.Text = weightData.ADCValue;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Event Handler
|
||||
private void buttonLine_Click(object sender, EventArgs e)
|
||||
{
|
||||
SmartButton bt = sender as SmartButton;
|
||||
|
||||
if (bt == null)
|
||||
return;
|
||||
|
||||
this.ParentForm.ClearListBox();
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("중량조정");
|
||||
this.ParentForm.listBoxHelp.Items.Add("LANE을 선택 후");
|
||||
this.ParentForm.listBoxHelp.Items.Add("시작을 누르세요");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Calibration");
|
||||
this.ParentForm.listBoxHelp.Items.Add("After selecting line, ");
|
||||
this.ParentForm.listBoxHelp.Items.Add("push the [Start] button.");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("校准");
|
||||
this.ParentForm.listBoxHelp.Items.Add("选择线后,按[开始]按钮。");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Kalibrace");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Po výběru řádku, ");
|
||||
this.ParentForm.listBoxHelp.Items.Add("stiskněte tlačítko [Start].");
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.ParentForm.listBoxHelp.Items.Add("Kalibrierung");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Drücken Sie nach der Auswahl der");
|
||||
this.ParentForm.listBoxHelp.Items.Add("Zeile die Taste [Start].");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
this.ParentForm.CalibrationButtonEnable(true, false, false);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -59,12 +59,74 @@ namespace INT69DC_7C.Controls
|
|||
this.CollLabelConstant = new Collection<SmartLabel>();
|
||||
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||
|
||||
<<<<<<< HEAD
|
||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||
=======
|
||||
this.CollButtonLane.Clear();
|
||||
this.CollLabelWeight.Clear();
|
||||
this.CollLabelADC.Clear();
|
||||
this.CollLabelConstant.Clear();
|
||||
this.CollCalStatus.Clear();
|
||||
|
||||
this.CollButtonLane.Add(this.buttonLine1);
|
||||
this.CollButtonLane.Add(this.buttonLine2);
|
||||
this.CollButtonLane.Add(this.buttonLine3);
|
||||
this.CollButtonLane.Add(this.buttonLine4);
|
||||
this.CollButtonLane.Add(this.buttonLine5);
|
||||
this.CollButtonLane.Add(this.buttonLine6);
|
||||
this.CollButtonLane.Add(this.buttonLine7);
|
||||
this.CollButtonLane.Add(this.buttonLine8);
|
||||
this.CollButtonLane.Add(this.buttonLine9);
|
||||
this.CollButtonLane.Add(this.buttonLine10);
|
||||
this.CollButtonLane.Add(this.buttonLine11);
|
||||
this.CollButtonLane.Add(this.buttonLine12);
|
||||
|
||||
this.CollLabelWeight.Add(this.labelWeight1);
|
||||
this.CollLabelWeight.Add(this.labelWeight2);
|
||||
this.CollLabelWeight.Add(this.labelWeight3);
|
||||
this.CollLabelWeight.Add(this.labelWeight4);
|
||||
this.CollLabelWeight.Add(this.labelWeight5);
|
||||
this.CollLabelWeight.Add(this.labelWeight6);
|
||||
this.CollLabelWeight.Add(this.labelWeight7);
|
||||
this.CollLabelWeight.Add(this.labelWeight8);
|
||||
this.CollLabelWeight.Add(this.labelWeight9);
|
||||
this.CollLabelWeight.Add(this.labelWeight10);
|
||||
this.CollLabelWeight.Add(this.labelWeight11);
|
||||
this.CollLabelWeight.Add(this.labelWeight12);
|
||||
|
||||
this.CollLabelADC.Add(this.labelADC1);
|
||||
this.CollLabelADC.Add(this.labelADC2);
|
||||
this.CollLabelADC.Add(this.labelADC3);
|
||||
this.CollLabelADC.Add(this.labelADC4);
|
||||
this.CollLabelADC.Add(this.labelADC5);
|
||||
this.CollLabelADC.Add(this.labelADC6);
|
||||
this.CollLabelADC.Add(this.labelADC7);
|
||||
this.CollLabelADC.Add(this.labelADC8);
|
||||
this.CollLabelADC.Add(this.labelADC9);
|
||||
this.CollLabelADC.Add(this.labelADC10);
|
||||
this.CollLabelADC.Add(this.labelADC11);
|
||||
this.CollLabelADC.Add(this.labelADC12);
|
||||
|
||||
this.CollLabelConstant.Add(this.labelConstant1);
|
||||
this.CollLabelConstant.Add(this.labelConstant2);
|
||||
this.CollLabelConstant.Add(this.labelConstant3);
|
||||
this.CollLabelConstant.Add(this.labelConstant4);
|
||||
this.CollLabelConstant.Add(this.labelConstant5);
|
||||
this.CollLabelConstant.Add(this.labelConstant6);
|
||||
this.CollLabelConstant.Add(this.labelConstant7);
|
||||
this.CollLabelConstant.Add(this.labelConstant8);
|
||||
this.CollLabelConstant.Add(this.labelConstant9);
|
||||
this.CollLabelConstant.Add(this.labelConstant10);
|
||||
this.CollLabelConstant.Add(this.labelConstant11);
|
||||
this.CollLabelConstant.Add(this.labelConstant12);
|
||||
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
>>>>>>> d4b927138c4f21486cd4286de805c526717e977f
|
||||
this.CollCalStatus.Add(new CalibrationStatus());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,12 +59,54 @@ namespace INT69DC_7C.Controls
|
|||
this.CollLabelConstant = new Collection<SmartLabel>();
|
||||
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||
|
||||
<<<<<<< HEAD
|
||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||
=======
|
||||
this.CollButtonLane.Clear();
|
||||
this.CollLabelWeight.Clear();
|
||||
this.CollLabelADC.Clear();
|
||||
this.CollLabelConstant.Clear();
|
||||
this.CollCalStatus.Clear();
|
||||
|
||||
this.CollButtonLane.Add(this.buttonLane1);
|
||||
this.CollButtonLane.Add(this.buttonLane2);
|
||||
this.CollButtonLane.Add(this.buttonLane3);
|
||||
this.CollButtonLane.Add(this.buttonLane4);
|
||||
this.CollButtonLane.Add(this.buttonLane5);
|
||||
this.CollButtonLane.Add(this.buttonLane6);
|
||||
this.CollButtonLane.Add(this.buttonLane7);
|
||||
|
||||
this.CollLabelWeight.Add(this.labelWeight1);
|
||||
this.CollLabelWeight.Add(this.labelWeight2);
|
||||
this.CollLabelWeight.Add(this.labelWeight3);
|
||||
this.CollLabelWeight.Add(this.labelWeight4);
|
||||
this.CollLabelWeight.Add(this.labelWeight5);
|
||||
this.CollLabelWeight.Add(this.labelWeight6);
|
||||
this.CollLabelWeight.Add(this.labelWeight7);
|
||||
|
||||
this.CollLabelADC.Add(this.labelADC1);
|
||||
this.CollLabelADC.Add(this.labelADC2);
|
||||
this.CollLabelADC.Add(this.labelADC3);
|
||||
this.CollLabelADC.Add(this.labelADC4);
|
||||
this.CollLabelADC.Add(this.labelADC5);
|
||||
this.CollLabelADC.Add(this.labelADC6);
|
||||
this.CollLabelADC.Add(this.labelADC7);
|
||||
|
||||
this.CollLabelConstant.Add(this.labelConstant1);
|
||||
this.CollLabelConstant.Add(this.labelConstant2);
|
||||
this.CollLabelConstant.Add(this.labelConstant3);
|
||||
this.CollLabelConstant.Add(this.labelConstant4);
|
||||
this.CollLabelConstant.Add(this.labelConstant5);
|
||||
this.CollLabelConstant.Add(this.labelConstant6);
|
||||
this.CollLabelConstant.Add(this.labelConstant7);
|
||||
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
>>>>>>> d4b927138c4f21486cd4286de805c526717e977f
|
||||
this.CollCalStatus.Add(new CalibrationStatus());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -59,12 +59,58 @@ namespace INT69DC_7C.Controls
|
|||
this.CollLabelConstant = new Collection<SmartLabel>();
|
||||
this.CollCalStatus = new Collection<CalibrationStatus>();
|
||||
|
||||
<<<<<<< HEAD
|
||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
||||
=======
|
||||
this.CollButtonLane.Clear();
|
||||
this.CollLabelWeight.Clear();
|
||||
this.CollLabelADC.Clear();
|
||||
this.CollLabelConstant.Clear();
|
||||
this.CollCalStatus.Clear();
|
||||
|
||||
this.CollButtonLane.Add(this.buttonLine1);
|
||||
this.CollButtonLane.Add(this.buttonLine2);
|
||||
this.CollButtonLane.Add(this.buttonLine3);
|
||||
this.CollButtonLane.Add(this.buttonLine4);
|
||||
this.CollButtonLane.Add(this.buttonLine5);
|
||||
this.CollButtonLane.Add(this.buttonLine6);
|
||||
this.CollButtonLane.Add(this.buttonLine7);
|
||||
this.CollButtonLane.Add(this.buttonLine8);
|
||||
|
||||
this.CollLabelWeight.Add(this.labelWeight1);
|
||||
this.CollLabelWeight.Add(this.labelWeight2);
|
||||
this.CollLabelWeight.Add(this.labelWeight3);
|
||||
this.CollLabelWeight.Add(this.labelWeight4);
|
||||
this.CollLabelWeight.Add(this.labelWeight5);
|
||||
this.CollLabelWeight.Add(this.labelWeight6);
|
||||
this.CollLabelWeight.Add(this.labelWeight7);
|
||||
this.CollLabelWeight.Add(this.labelWeight8);
|
||||
|
||||
this.CollLabelADC.Add(this.labelADC1);
|
||||
this.CollLabelADC.Add(this.labelADC2);
|
||||
this.CollLabelADC.Add(this.labelADC3);
|
||||
this.CollLabelADC.Add(this.labelADC4);
|
||||
this.CollLabelADC.Add(this.labelADC5);
|
||||
this.CollLabelADC.Add(this.labelADC6);
|
||||
this.CollLabelADC.Add(this.labelADC7);
|
||||
this.CollLabelADC.Add(this.labelADC8);
|
||||
|
||||
this.CollLabelConstant.Add(this.labelConstant1);
|
||||
this.CollLabelConstant.Add(this.labelConstant2);
|
||||
this.CollLabelConstant.Add(this.labelConstant3);
|
||||
this.CollLabelConstant.Add(this.labelConstant4);
|
||||
this.CollLabelConstant.Add(this.labelConstant5);
|
||||
this.CollLabelConstant.Add(this.labelConstant6);
|
||||
this.CollLabelConstant.Add(this.labelConstant7);
|
||||
this.CollLabelConstant.Add(this.labelConstant8);
|
||||
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
>>>>>>> d4b927138c4f21486cd4286de805c526717e977f
|
||||
this.CollCalStatus.Add(new CalibrationStatus());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,37 +0,0 @@
|
|||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
partial class ControlCommunicationModbus
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
components = new System.ComponentModel.Container();
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
public partial class ControlCommunicationModbus : UserControl
|
||||
{
|
||||
public ControlCommunicationModbus()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,166 @@
|
|||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
partial class ControlMainDisplayAlarm
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlMainDisplayAlarm));
|
||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||
this.buttonClose = new SmartX.SmartButton();
|
||||
this.labelTitle = new SmartX.SmartLabel();
|
||||
this.listBoxMessage = new SmartX.SmartListBox();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// smartGroupBox1
|
||||
//
|
||||
this.smartGroupBox1.BackPictureBox = null;
|
||||
this.smartGroupBox1.BackPictureBox1 = null;
|
||||
this.smartGroupBox1.Controls.Add(this.listBoxMessage);
|
||||
this.smartGroupBox1.Controls.Add(this.labelTitle);
|
||||
this.smartGroupBox1.Controls.Add(this.buttonClose);
|
||||
this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineThickness = 1;
|
||||
this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.None;
|
||||
this.smartGroupBox1.Image = ((System.Drawing.Image)(resources.GetObject("smartGroupBox1.Image")));
|
||||
this.smartGroupBox1.InitVisible = true;
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(0, 0);
|
||||
this.smartGroupBox1.Name = "smartGroupBox1";
|
||||
this.smartGroupBox1.RoundRadius = 5;
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(450, 300);
|
||||
this.smartGroupBox1.TabIndex = 0;
|
||||
this.smartGroupBox1.Text = "smartGroupBox1";
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// buttonClose
|
||||
//
|
||||
this.buttonClose.BackPictureBox = null;
|
||||
this.buttonClose.BackPictureBox1 = null;
|
||||
this.buttonClose.BackPictureBox2 = null;
|
||||
this.buttonClose.ButtonColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.buttonClose.ButtonImageAutoSize = true;
|
||||
this.buttonClose.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonClose.DisableImage = null;
|
||||
this.buttonClose.DownImage = null;
|
||||
this.buttonClose.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonClose.GroupID = 0;
|
||||
this.buttonClose.InitVisible = true;
|
||||
this.buttonClose.Location = new System.Drawing.Point(335, 264);
|
||||
this.buttonClose.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonClose.Name = "buttonClose";
|
||||
this.buttonClose.NestedClickEventPrevent = false;
|
||||
this.buttonClose.OutlinePixel = 1;
|
||||
this.buttonClose.RepeatInterval = 200;
|
||||
this.buttonClose.RepeatIntervalAccelerate = null;
|
||||
this.buttonClose.SafeInterval = 200;
|
||||
this.buttonClose.Size = new System.Drawing.Size(100, 25);
|
||||
this.buttonClose.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonClose.TabIndex = 0;
|
||||
this.buttonClose.Text = "Close";
|
||||
this.buttonClose.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonClose.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonClose.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonClose.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonClose.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonClose.UpImage = null;
|
||||
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
||||
//
|
||||
// labelTitle
|
||||
//
|
||||
this.labelTitle.BackColor = System.Drawing.Color.Gainsboro;
|
||||
this.labelTitle.BackPictureBox = null;
|
||||
this.labelTitle.BackPictureBox1 = null;
|
||||
this.labelTitle.BackPictureBox2 = null;
|
||||
this.labelTitle.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitle.InitVisible = true;
|
||||
this.labelTitle.LineSpacing = 0F;
|
||||
this.labelTitle.Location = new System.Drawing.Point(12, 3);
|
||||
this.labelTitle.Name = "labelTitle";
|
||||
this.labelTitle.Size = new System.Drawing.Size(435, 31);
|
||||
this.labelTitle.TabIndex = 1;
|
||||
this.labelTitle.Text = " Alarm";
|
||||
this.labelTitle.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitle.Wordwrap = false;
|
||||
//
|
||||
// listBoxMessage
|
||||
//
|
||||
this.listBoxMessage.BackColor = System.Drawing.Color.White;
|
||||
this.listBoxMessage.BackPictureBox = null;
|
||||
this.listBoxMessage.BackPictureBox1 = null;
|
||||
this.listBoxMessage.BackPictureBox2 = null;
|
||||
this.listBoxMessage.ColumnAlign = SmartX.SmartListBox.COLUMNALIGNS.CENTER;
|
||||
this.listBoxMessage.ColumnDelimiter = '\0';
|
||||
this.listBoxMessage.ColumnOffsets = null;
|
||||
this.listBoxMessage.Enabled = false;
|
||||
this.listBoxMessage.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.listBoxMessage.FontColor = System.Drawing.Color.Black;
|
||||
this.listBoxMessage.InitVisible = true;
|
||||
this.listBoxMessage.ItemAddOrder = SmartX.SmartListBox.ITEMADDORDERS.BOTTOMADD;
|
||||
this.listBoxMessage.ItemOffsetGap = 5;
|
||||
this.listBoxMessage.ItemOffsetX = 2;
|
||||
this.listBoxMessage.ItemOffsetY = 2;
|
||||
this.listBoxMessage.Location = new System.Drawing.Point(19, 40);
|
||||
this.listBoxMessage.MouseMoveEventSpace = 3;
|
||||
this.listBoxMessage.MouseMoveSpace = 10;
|
||||
this.listBoxMessage.Name = "listBoxMessage";
|
||||
this.listBoxMessage.OutLineColor = System.Drawing.SystemColors.ControlText;
|
||||
this.listBoxMessage.SelectColor = System.Drawing.Color.Blue;
|
||||
this.listBoxMessage.SelectFilled = true;
|
||||
this.listBoxMessage.SelectFontColor = System.Drawing.Color.White;
|
||||
this.listBoxMessage.SelectItemIndex = -1;
|
||||
this.listBoxMessage.SeparationlineColor1 = System.Drawing.Color.Gray;
|
||||
this.listBoxMessage.SeparationlineColor2 = System.Drawing.Color.LightGray;
|
||||
this.listBoxMessage.SeparationLineStyle = SmartX.SmartListBox.SEPARATIONLINETYPES.None;
|
||||
this.listBoxMessage.SeparationlineVisibleBottom = true;
|
||||
this.listBoxMessage.SeparationlineVisibleTop = true;
|
||||
this.listBoxMessage.Size = new System.Drawing.Size(416, 212);
|
||||
this.listBoxMessage.TabIndex = 2;
|
||||
this.listBoxMessage.Text = "smartListBox1";
|
||||
//
|
||||
// ControlMainDisplayAlarm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.smartGroupBox1);
|
||||
this.Name = "ControlMainDisplayAlarm";
|
||||
this.Size = new System.Drawing.Size(450, 300);
|
||||
this.smartGroupBox1.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private SmartX.SmartGroupBox smartGroupBox1;
|
||||
private SmartX.SmartButton buttonClose;
|
||||
private SmartX.SmartLabel labelTitle;
|
||||
public SmartX.SmartListBox listBoxMessage;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using INT69DC_7C.Forms;
|
||||
|
||||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
public partial class ControlMainDisplayAlarm : UserControl
|
||||
{
|
||||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public ControlMainDisplayAlarm(FormMainDisplay parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.ParentForm = parent;
|
||||
|
||||
this.InitializeDesign();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Property
|
||||
public FormMainDisplay ParentForm
|
||||
{
|
||||
get { return this.m_ParentForm; }
|
||||
private set { this.m_ParentForm = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
|
||||
private void InitializeDesign()
|
||||
{
|
||||
if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Korean)
|
||||
{
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||
{
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Chinese)
|
||||
{
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.Czech)
|
||||
{
|
||||
}
|
||||
else if (this.ParentForm.ParentForm.SystemConfig.Language == DataStore.LanguageID.German)
|
||||
{
|
||||
this.labelTitle.Text = " Alarm";
|
||||
this.buttonClose.Text = "Schließen";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public void DisplayRefresh()
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Event Handler
|
||||
private void buttonClose_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Visible = false;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,194 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="smartGroupBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
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
|
||||
1Q9LPOudBIuBVQAAAABJRU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
<value>WEBPAD</value>
|
||||
</metadata>
|
||||
</root>
|
||||
|
|
@ -0,0 +1,885 @@
|
|||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
partial class ControlMainDisplayDotGraph11
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Component Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlMainDisplayDotGraph11));
|
||||
this.draw10 = new SmartX.SmartDraw();
|
||||
this.draw9 = new SmartX.SmartDraw();
|
||||
this.draw8 = new SmartX.SmartDraw();
|
||||
this.draw7 = new SmartX.SmartDraw();
|
||||
this.draw6 = new SmartX.SmartDraw();
|
||||
this.draw5 = new SmartX.SmartDraw();
|
||||
this.draw4 = new SmartX.SmartDraw();
|
||||
this.draw3 = new SmartX.SmartDraw();
|
||||
this.draw2 = new SmartX.SmartDraw();
|
||||
this.draw1 = new SmartX.SmartDraw();
|
||||
this.pictureBox11 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox10 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox9 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox8 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox7 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox6 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox5 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox4 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox3 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.button11 = new SmartX.SmartButton();
|
||||
this.button10 = new SmartX.SmartButton();
|
||||
this.button9 = new SmartX.SmartButton();
|
||||
this.button8 = new SmartX.SmartButton();
|
||||
this.button7 = new SmartX.SmartButton();
|
||||
this.button6 = new SmartX.SmartButton();
|
||||
this.button5 = new SmartX.SmartButton();
|
||||
this.button4 = new SmartX.SmartButton();
|
||||
this.button3 = new SmartX.SmartButton();
|
||||
this.button2 = new SmartX.SmartButton();
|
||||
this.button1 = new SmartX.SmartButton();
|
||||
this.draw11 = new SmartX.SmartDraw();
|
||||
this.pictureBoxBypass1 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass2 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass3 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass4 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass5 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass6 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass7 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass8 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass9 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass10 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxBypass11 = new System.Windows.Forms.PictureBox();
|
||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// draw10
|
||||
//
|
||||
this.draw10.AnimationGIFFrameInterval = 0;
|
||||
this.draw10.BackPictureBox = null;
|
||||
this.draw10.BackPictureBox1 = null;
|
||||
this.draw10.ChartChannelPenStyle = null;
|
||||
this.draw10.ChartDrawStep = 1;
|
||||
this.draw10.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw10.InitVisible = true;
|
||||
this.draw10.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw10.Name = "draw10";
|
||||
this.draw10.SetBackimage = null;
|
||||
this.draw10.SetBackImageAutoSize = true;
|
||||
this.draw10.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw10.TabIndex = 50;
|
||||
this.draw10.Text = "Lane10";
|
||||
//
|
||||
// draw9
|
||||
//
|
||||
this.draw9.AnimationGIFFrameInterval = 0;
|
||||
this.draw9.BackPictureBox = null;
|
||||
this.draw9.BackPictureBox1 = null;
|
||||
this.draw9.ChartChannelPenStyle = null;
|
||||
this.draw9.ChartDrawStep = 1;
|
||||
this.draw9.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw9.InitVisible = true;
|
||||
this.draw9.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw9.Name = "draw9";
|
||||
this.draw9.SetBackimage = null;
|
||||
this.draw9.SetBackImageAutoSize = true;
|
||||
this.draw9.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw9.TabIndex = 47;
|
||||
this.draw9.Text = "Lane9";
|
||||
//
|
||||
// draw8
|
||||
//
|
||||
this.draw8.AnimationGIFFrameInterval = 0;
|
||||
this.draw8.BackPictureBox = null;
|
||||
this.draw8.BackPictureBox1 = null;
|
||||
this.draw8.ChartChannelPenStyle = null;
|
||||
this.draw8.ChartDrawStep = 1;
|
||||
this.draw8.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw8.InitVisible = true;
|
||||
this.draw8.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw8.Name = "draw8";
|
||||
this.draw8.SetBackimage = null;
|
||||
this.draw8.SetBackImageAutoSize = true;
|
||||
this.draw8.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw8.TabIndex = 46;
|
||||
this.draw8.Text = "Lane8";
|
||||
//
|
||||
// draw7
|
||||
//
|
||||
this.draw7.AnimationGIFFrameInterval = 0;
|
||||
this.draw7.BackPictureBox = null;
|
||||
this.draw7.BackPictureBox1 = null;
|
||||
this.draw7.ChartChannelPenStyle = null;
|
||||
this.draw7.ChartDrawStep = 1;
|
||||
this.draw7.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw7.InitVisible = true;
|
||||
this.draw7.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw7.Name = "draw7";
|
||||
this.draw7.SetBackimage = null;
|
||||
this.draw7.SetBackImageAutoSize = true;
|
||||
this.draw7.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw7.TabIndex = 43;
|
||||
this.draw7.Text = "Lane7";
|
||||
//
|
||||
// draw6
|
||||
//
|
||||
this.draw6.AnimationGIFFrameInterval = 0;
|
||||
this.draw6.BackPictureBox = null;
|
||||
this.draw6.BackPictureBox1 = null;
|
||||
this.draw6.ChartChannelPenStyle = null;
|
||||
this.draw6.ChartDrawStep = 1;
|
||||
this.draw6.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw6.InitVisible = true;
|
||||
this.draw6.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw6.Name = "draw6";
|
||||
this.draw6.SetBackimage = null;
|
||||
this.draw6.SetBackImageAutoSize = true;
|
||||
this.draw6.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw6.TabIndex = 42;
|
||||
this.draw6.Text = "Lane6";
|
||||
//
|
||||
// draw5
|
||||
//
|
||||
this.draw5.AnimationGIFFrameInterval = 0;
|
||||
this.draw5.BackPictureBox = null;
|
||||
this.draw5.BackPictureBox1 = null;
|
||||
this.draw5.ChartChannelPenStyle = null;
|
||||
this.draw5.ChartDrawStep = 1;
|
||||
this.draw5.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw5.InitVisible = true;
|
||||
this.draw5.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw5.Name = "draw5";
|
||||
this.draw5.SetBackimage = null;
|
||||
this.draw5.SetBackImageAutoSize = true;
|
||||
this.draw5.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw5.TabIndex = 39;
|
||||
this.draw5.Text = "Lane5";
|
||||
//
|
||||
// draw4
|
||||
//
|
||||
this.draw4.AnimationGIFFrameInterval = 0;
|
||||
this.draw4.BackPictureBox = null;
|
||||
this.draw4.BackPictureBox1 = null;
|
||||
this.draw4.ChartChannelPenStyle = null;
|
||||
this.draw4.ChartDrawStep = 1;
|
||||
this.draw4.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw4.InitVisible = true;
|
||||
this.draw4.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw4.Name = "draw4";
|
||||
this.draw4.SetBackimage = null;
|
||||
this.draw4.SetBackImageAutoSize = true;
|
||||
this.draw4.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw4.TabIndex = 37;
|
||||
this.draw4.Text = "Lane4";
|
||||
//
|
||||
// draw3
|
||||
//
|
||||
this.draw3.AnimationGIFFrameInterval = 0;
|
||||
this.draw3.BackPictureBox = null;
|
||||
this.draw3.BackPictureBox1 = null;
|
||||
this.draw3.ChartChannelPenStyle = null;
|
||||
this.draw3.ChartDrawStep = 1;
|
||||
this.draw3.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw3.InitVisible = true;
|
||||
this.draw3.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw3.Name = "draw3";
|
||||
this.draw3.SetBackimage = null;
|
||||
this.draw3.SetBackImageAutoSize = true;
|
||||
this.draw3.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw3.TabIndex = 36;
|
||||
this.draw3.Text = "Lane3";
|
||||
//
|
||||
// draw2
|
||||
//
|
||||
this.draw2.AnimationGIFFrameInterval = 0;
|
||||
this.draw2.BackPictureBox = null;
|
||||
this.draw2.BackPictureBox1 = null;
|
||||
this.draw2.ChartChannelPenStyle = null;
|
||||
this.draw2.ChartDrawStep = 1;
|
||||
this.draw2.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw2.InitVisible = true;
|
||||
this.draw2.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw2.Name = "draw2";
|
||||
this.draw2.SetBackimage = null;
|
||||
this.draw2.SetBackImageAutoSize = true;
|
||||
this.draw2.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw2.TabIndex = 33;
|
||||
this.draw2.Text = "Lane2";
|
||||
//
|
||||
// draw1
|
||||
//
|
||||
this.draw1.AnimationGIFFrameInterval = 0;
|
||||
this.draw1.BackPictureBox = null;
|
||||
this.draw1.BackPictureBox1 = null;
|
||||
this.draw1.ChartChannelPenStyle = null;
|
||||
this.draw1.ChartDrawStep = 1;
|
||||
this.draw1.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw1.InitVisible = true;
|
||||
this.draw1.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw1.Name = "draw1";
|
||||
this.draw1.SetBackimage = null;
|
||||
this.draw1.SetBackImageAutoSize = true;
|
||||
this.draw1.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw1.TabIndex = 31;
|
||||
this.draw1.Text = "Lane1";
|
||||
//
|
||||
// pictureBox11
|
||||
//
|
||||
this.pictureBox11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox11.Image")));
|
||||
this.pictureBox11.Location = new System.Drawing.Point(880, 420);
|
||||
this.pictureBox11.Name = "pictureBox11";
|
||||
this.pictureBox11.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox10
|
||||
//
|
||||
this.pictureBox10.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox10.Image")));
|
||||
this.pictureBox10.Location = new System.Drawing.Point(799, 420);
|
||||
this.pictureBox10.Name = "pictureBox10";
|
||||
this.pictureBox10.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox9
|
||||
//
|
||||
this.pictureBox9.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox9.Image")));
|
||||
this.pictureBox9.Location = new System.Drawing.Point(718, 420);
|
||||
this.pictureBox9.Name = "pictureBox9";
|
||||
this.pictureBox9.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox8
|
||||
//
|
||||
this.pictureBox8.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox8.Image")));
|
||||
this.pictureBox8.Location = new System.Drawing.Point(637, 420);
|
||||
this.pictureBox8.Name = "pictureBox8";
|
||||
this.pictureBox8.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox7
|
||||
//
|
||||
this.pictureBox7.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox7.Image")));
|
||||
this.pictureBox7.Location = new System.Drawing.Point(556, 420);
|
||||
this.pictureBox7.Name = "pictureBox7";
|
||||
this.pictureBox7.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox6
|
||||
//
|
||||
this.pictureBox6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
|
||||
this.pictureBox6.Location = new System.Drawing.Point(475, 420);
|
||||
this.pictureBox6.Name = "pictureBox6";
|
||||
this.pictureBox6.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox5
|
||||
//
|
||||
this.pictureBox5.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
|
||||
this.pictureBox5.Location = new System.Drawing.Point(394, 420);
|
||||
this.pictureBox5.Name = "pictureBox5";
|
||||
this.pictureBox5.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox4
|
||||
//
|
||||
this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
|
||||
this.pictureBox4.Location = new System.Drawing.Point(313, 420);
|
||||
this.pictureBox4.Name = "pictureBox4";
|
||||
this.pictureBox4.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
|
||||
this.pictureBox3.Location = new System.Drawing.Point(232, 420);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
this.pictureBox3.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
|
||||
this.pictureBox2.Location = new System.Drawing.Point(151, 420);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(70, 420);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// button11
|
||||
//
|
||||
this.button11.BackPictureBox = null;
|
||||
this.button11.BackPictureBox1 = null;
|
||||
this.button11.BackPictureBox2 = null;
|
||||
this.button11.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button11.ButtonImageAutoSize = true;
|
||||
this.button11.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button11.DisableImage = null;
|
||||
this.button11.DownImage = ((System.Drawing.Image)(resources.GetObject("button11.DownImage")));
|
||||
this.button11.GroupID = 0;
|
||||
this.button11.InitVisible = true;
|
||||
this.button11.Location = new System.Drawing.Point(877, 425);
|
||||
this.button11.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button11.Name = "button11";
|
||||
this.button11.NestedClickEventPrevent = false;
|
||||
this.button11.OutlinePixel = 1;
|
||||
this.button11.RepeatInterval = 200;
|
||||
this.button11.RepeatIntervalAccelerate = null;
|
||||
this.button11.SafeInterval = 200;
|
||||
this.button11.Size = new System.Drawing.Size(80, 52);
|
||||
this.button11.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button11.TabIndex = 78;
|
||||
this.button11.TextColor = System.Drawing.Color.Black;
|
||||
this.button11.TextDownColor = System.Drawing.Color.White;
|
||||
this.button11.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button11.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button11.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button11.UpImage = ((System.Drawing.Image)(resources.GetObject("button11.UpImage")));
|
||||
this.button11.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button10
|
||||
//
|
||||
this.button10.BackPictureBox = null;
|
||||
this.button10.BackPictureBox1 = null;
|
||||
this.button10.BackPictureBox2 = null;
|
||||
this.button10.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button10.ButtonImageAutoSize = true;
|
||||
this.button10.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button10.DisableImage = null;
|
||||
this.button10.DownImage = ((System.Drawing.Image)(resources.GetObject("button10.DownImage")));
|
||||
this.button10.GroupID = 0;
|
||||
this.button10.InitVisible = true;
|
||||
this.button10.Location = new System.Drawing.Point(796, 425);
|
||||
this.button10.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button10.Name = "button10";
|
||||
this.button10.NestedClickEventPrevent = false;
|
||||
this.button10.OutlinePixel = 1;
|
||||
this.button10.RepeatInterval = 200;
|
||||
this.button10.RepeatIntervalAccelerate = null;
|
||||
this.button10.SafeInterval = 200;
|
||||
this.button10.Size = new System.Drawing.Size(80, 52);
|
||||
this.button10.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button10.TabIndex = 77;
|
||||
this.button10.TextColor = System.Drawing.Color.Black;
|
||||
this.button10.TextDownColor = System.Drawing.Color.White;
|
||||
this.button10.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button10.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button10.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button10.UpImage = ((System.Drawing.Image)(resources.GetObject("button10.UpImage")));
|
||||
this.button10.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button9
|
||||
//
|
||||
this.button9.BackPictureBox = null;
|
||||
this.button9.BackPictureBox1 = null;
|
||||
this.button9.BackPictureBox2 = null;
|
||||
this.button9.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button9.ButtonImageAutoSize = true;
|
||||
this.button9.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button9.DisableImage = null;
|
||||
this.button9.DownImage = ((System.Drawing.Image)(resources.GetObject("button9.DownImage")));
|
||||
this.button9.GroupID = 0;
|
||||
this.button9.InitVisible = true;
|
||||
this.button9.Location = new System.Drawing.Point(715, 425);
|
||||
this.button9.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button9.Name = "button9";
|
||||
this.button9.NestedClickEventPrevent = false;
|
||||
this.button9.OutlinePixel = 1;
|
||||
this.button9.RepeatInterval = 200;
|
||||
this.button9.RepeatIntervalAccelerate = null;
|
||||
this.button9.SafeInterval = 200;
|
||||
this.button9.Size = new System.Drawing.Size(80, 52);
|
||||
this.button9.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button9.TabIndex = 80;
|
||||
this.button9.TextColor = System.Drawing.Color.Black;
|
||||
this.button9.TextDownColor = System.Drawing.Color.White;
|
||||
this.button9.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button9.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button9.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button9.UpImage = ((System.Drawing.Image)(resources.GetObject("button9.UpImage")));
|
||||
this.button9.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button8
|
||||
//
|
||||
this.button8.BackPictureBox = null;
|
||||
this.button8.BackPictureBox1 = null;
|
||||
this.button8.BackPictureBox2 = null;
|
||||
this.button8.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button8.ButtonImageAutoSize = true;
|
||||
this.button8.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button8.DisableImage = null;
|
||||
this.button8.DownImage = ((System.Drawing.Image)(resources.GetObject("button8.DownImage")));
|
||||
this.button8.GroupID = 0;
|
||||
this.button8.InitVisible = true;
|
||||
this.button8.Location = new System.Drawing.Point(634, 425);
|
||||
this.button8.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button8.Name = "button8";
|
||||
this.button8.NestedClickEventPrevent = false;
|
||||
this.button8.OutlinePixel = 1;
|
||||
this.button8.RepeatInterval = 200;
|
||||
this.button8.RepeatIntervalAccelerate = null;
|
||||
this.button8.SafeInterval = 200;
|
||||
this.button8.Size = new System.Drawing.Size(80, 52);
|
||||
this.button8.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button8.TabIndex = 76;
|
||||
this.button8.TextColor = System.Drawing.Color.Black;
|
||||
this.button8.TextDownColor = System.Drawing.Color.White;
|
||||
this.button8.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button8.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button8.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button8.UpImage = ((System.Drawing.Image)(resources.GetObject("button8.UpImage")));
|
||||
this.button8.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button7
|
||||
//
|
||||
this.button7.BackPictureBox = null;
|
||||
this.button7.BackPictureBox1 = null;
|
||||
this.button7.BackPictureBox2 = null;
|
||||
this.button7.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button7.ButtonImageAutoSize = true;
|
||||
this.button7.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button7.DisableImage = null;
|
||||
this.button7.DownImage = ((System.Drawing.Image)(resources.GetObject("button7.DownImage")));
|
||||
this.button7.GroupID = 0;
|
||||
this.button7.InitVisible = true;
|
||||
this.button7.Location = new System.Drawing.Point(553, 425);
|
||||
this.button7.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button7.Name = "button7";
|
||||
this.button7.NestedClickEventPrevent = false;
|
||||
this.button7.OutlinePixel = 1;
|
||||
this.button7.RepeatInterval = 200;
|
||||
this.button7.RepeatIntervalAccelerate = null;
|
||||
this.button7.SafeInterval = 200;
|
||||
this.button7.Size = new System.Drawing.Size(80, 52);
|
||||
this.button7.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button7.TabIndex = 74;
|
||||
this.button7.TextColor = System.Drawing.Color.Black;
|
||||
this.button7.TextDownColor = System.Drawing.Color.White;
|
||||
this.button7.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button7.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button7.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button7.UpImage = ((System.Drawing.Image)(resources.GetObject("button7.UpImage")));
|
||||
this.button7.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button6
|
||||
//
|
||||
this.button6.BackPictureBox = null;
|
||||
this.button6.BackPictureBox1 = null;
|
||||
this.button6.BackPictureBox2 = null;
|
||||
this.button6.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button6.ButtonImageAutoSize = true;
|
||||
this.button6.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button6.DisableImage = null;
|
||||
this.button6.DownImage = ((System.Drawing.Image)(resources.GetObject("button6.DownImage")));
|
||||
this.button6.GroupID = 0;
|
||||
this.button6.InitVisible = true;
|
||||
this.button6.Location = new System.Drawing.Point(472, 425);
|
||||
this.button6.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button6.Name = "button6";
|
||||
this.button6.NestedClickEventPrevent = false;
|
||||
this.button6.OutlinePixel = 1;
|
||||
this.button6.RepeatInterval = 200;
|
||||
this.button6.RepeatIntervalAccelerate = null;
|
||||
this.button6.SafeInterval = 200;
|
||||
this.button6.Size = new System.Drawing.Size(80, 52);
|
||||
this.button6.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button6.TabIndex = 75;
|
||||
this.button6.TextColor = System.Drawing.Color.Black;
|
||||
this.button6.TextDownColor = System.Drawing.Color.White;
|
||||
this.button6.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button6.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button6.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button6.UpImage = ((System.Drawing.Image)(resources.GetObject("button6.UpImage")));
|
||||
this.button6.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button5
|
||||
//
|
||||
this.button5.BackPictureBox = null;
|
||||
this.button5.BackPictureBox1 = null;
|
||||
this.button5.BackPictureBox2 = null;
|
||||
this.button5.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button5.ButtonImageAutoSize = true;
|
||||
this.button5.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button5.DisableImage = null;
|
||||
this.button5.DownImage = ((System.Drawing.Image)(resources.GetObject("button5.DownImage")));
|
||||
this.button5.GroupID = 0;
|
||||
this.button5.InitVisible = true;
|
||||
this.button5.Location = new System.Drawing.Point(391, 425);
|
||||
this.button5.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button5.Name = "button5";
|
||||
this.button5.NestedClickEventPrevent = false;
|
||||
this.button5.OutlinePixel = 1;
|
||||
this.button5.RepeatInterval = 200;
|
||||
this.button5.RepeatIntervalAccelerate = null;
|
||||
this.button5.SafeInterval = 200;
|
||||
this.button5.Size = new System.Drawing.Size(80, 52);
|
||||
this.button5.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button5.TabIndex = 84;
|
||||
this.button5.TextColor = System.Drawing.Color.Black;
|
||||
this.button5.TextDownColor = System.Drawing.Color.White;
|
||||
this.button5.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button5.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button5.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button5.UpImage = ((System.Drawing.Image)(resources.GetObject("button5.UpImage")));
|
||||
this.button5.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button4
|
||||
//
|
||||
this.button4.BackPictureBox = null;
|
||||
this.button4.BackPictureBox1 = null;
|
||||
this.button4.BackPictureBox2 = null;
|
||||
this.button4.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button4.ButtonImageAutoSize = true;
|
||||
this.button4.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button4.DisableImage = null;
|
||||
this.button4.DownImage = ((System.Drawing.Image)(resources.GetObject("button4.DownImage")));
|
||||
this.button4.GroupID = 0;
|
||||
this.button4.InitVisible = true;
|
||||
this.button4.Location = new System.Drawing.Point(310, 425);
|
||||
this.button4.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button4.Name = "button4";
|
||||
this.button4.NestedClickEventPrevent = false;
|
||||
this.button4.OutlinePixel = 1;
|
||||
this.button4.RepeatInterval = 200;
|
||||
this.button4.RepeatIntervalAccelerate = null;
|
||||
this.button4.SafeInterval = 200;
|
||||
this.button4.Size = new System.Drawing.Size(80, 52);
|
||||
this.button4.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button4.TabIndex = 85;
|
||||
this.button4.TextColor = System.Drawing.Color.Black;
|
||||
this.button4.TextDownColor = System.Drawing.Color.White;
|
||||
this.button4.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button4.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button4.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button4.UpImage = ((System.Drawing.Image)(resources.GetObject("button4.UpImage")));
|
||||
this.button4.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button3
|
||||
//
|
||||
this.button3.BackPictureBox = null;
|
||||
this.button3.BackPictureBox1 = null;
|
||||
this.button3.BackPictureBox2 = null;
|
||||
this.button3.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button3.ButtonImageAutoSize = true;
|
||||
this.button3.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button3.DisableImage = null;
|
||||
this.button3.DownImage = ((System.Drawing.Image)(resources.GetObject("button3.DownImage")));
|
||||
this.button3.GroupID = 0;
|
||||
this.button3.InitVisible = true;
|
||||
this.button3.Location = new System.Drawing.Point(229, 425);
|
||||
this.button3.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button3.Name = "button3";
|
||||
this.button3.NestedClickEventPrevent = false;
|
||||
this.button3.OutlinePixel = 1;
|
||||
this.button3.RepeatInterval = 200;
|
||||
this.button3.RepeatIntervalAccelerate = null;
|
||||
this.button3.SafeInterval = 200;
|
||||
this.button3.Size = new System.Drawing.Size(80, 52);
|
||||
this.button3.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button3.TabIndex = 83;
|
||||
this.button3.TextColor = System.Drawing.Color.Black;
|
||||
this.button3.TextDownColor = System.Drawing.Color.White;
|
||||
this.button3.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button3.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button3.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button3.UpImage = ((System.Drawing.Image)(resources.GetObject("button3.UpImage")));
|
||||
this.button3.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.BackPictureBox = null;
|
||||
this.button2.BackPictureBox1 = null;
|
||||
this.button2.BackPictureBox2 = null;
|
||||
this.button2.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button2.ButtonImageAutoSize = true;
|
||||
this.button2.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button2.DisableImage = null;
|
||||
this.button2.DownImage = ((System.Drawing.Image)(resources.GetObject("button2.DownImage")));
|
||||
this.button2.GroupID = 0;
|
||||
this.button2.InitVisible = true;
|
||||
this.button2.Location = new System.Drawing.Point(148, 425);
|
||||
this.button2.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button2.Name = "button2";
|
||||
this.button2.NestedClickEventPrevent = false;
|
||||
this.button2.OutlinePixel = 1;
|
||||
this.button2.RepeatInterval = 200;
|
||||
this.button2.RepeatIntervalAccelerate = null;
|
||||
this.button2.SafeInterval = 200;
|
||||
this.button2.Size = new System.Drawing.Size(80, 52);
|
||||
this.button2.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button2.TabIndex = 81;
|
||||
this.button2.TextColor = System.Drawing.Color.Black;
|
||||
this.button2.TextDownColor = System.Drawing.Color.White;
|
||||
this.button2.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button2.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button2.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button2.UpImage = ((System.Drawing.Image)(resources.GetObject("button2.UpImage")));
|
||||
this.button2.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.BackPictureBox = null;
|
||||
this.button1.BackPictureBox1 = null;
|
||||
this.button1.BackPictureBox2 = null;
|
||||
this.button1.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.button1.ButtonImageAutoSize = true;
|
||||
this.button1.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.button1.DisableImage = null;
|
||||
this.button1.DownImage = ((System.Drawing.Image)(resources.GetObject("button1.DownImage")));
|
||||
this.button1.GroupID = 0;
|
||||
this.button1.InitVisible = true;
|
||||
this.button1.Location = new System.Drawing.Point(67, 425);
|
||||
this.button1.Mode = SmartX.SmartButton.BUTTONMODE.RADIO;
|
||||
this.button1.Name = "button1";
|
||||
this.button1.NestedClickEventPrevent = false;
|
||||
this.button1.OutlinePixel = 1;
|
||||
this.button1.RepeatInterval = 200;
|
||||
this.button1.RepeatIntervalAccelerate = null;
|
||||
this.button1.SafeInterval = 200;
|
||||
this.button1.Size = new System.Drawing.Size(80, 52);
|
||||
this.button1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.button1.TabIndex = 82;
|
||||
this.button1.TextColor = System.Drawing.Color.Black;
|
||||
this.button1.TextDownColor = System.Drawing.Color.White;
|
||||
this.button1.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.button1.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.button1.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.button1.UpImage = ((System.Drawing.Image)(resources.GetObject("button1.UpImage")));
|
||||
this.button1.Click += new System.EventHandler(this.buttonSelectDraw_Click);
|
||||
//
|
||||
// draw11
|
||||
//
|
||||
this.draw11.AnimationGIFFrameInterval = 0;
|
||||
this.draw11.BackPictureBox = null;
|
||||
this.draw11.BackPictureBox1 = null;
|
||||
this.draw11.ChartChannelPenStyle = null;
|
||||
this.draw11.ChartDrawStep = 1;
|
||||
this.draw11.ImageListIndexIncType = SmartX.SmartDraw.IMAGELISTINDEXCOUNT.RINGCOUNT;
|
||||
this.draw11.InitVisible = true;
|
||||
this.draw11.Location = new System.Drawing.Point(17, 7);
|
||||
this.draw11.Name = "draw11";
|
||||
this.draw11.SetBackimage = null;
|
||||
this.draw11.SetBackImageAutoSize = true;
|
||||
this.draw11.Size = new System.Drawing.Size(988, 408);
|
||||
this.draw11.TabIndex = 87;
|
||||
this.draw11.Text = "Lane11";
|
||||
//
|
||||
// pictureBoxBypass1
|
||||
//
|
||||
this.pictureBoxBypass1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass1.Image")));
|
||||
this.pictureBoxBypass1.Location = new System.Drawing.Point(70, 475);
|
||||
this.pictureBoxBypass1.Name = "pictureBoxBypass1";
|
||||
this.pictureBoxBypass1.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass2
|
||||
//
|
||||
this.pictureBoxBypass2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass2.Image")));
|
||||
this.pictureBoxBypass2.Location = new System.Drawing.Point(151, 475);
|
||||
this.pictureBoxBypass2.Name = "pictureBoxBypass2";
|
||||
this.pictureBoxBypass2.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass3
|
||||
//
|
||||
this.pictureBoxBypass3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass3.Image")));
|
||||
this.pictureBoxBypass3.Location = new System.Drawing.Point(232, 475);
|
||||
this.pictureBoxBypass3.Name = "pictureBoxBypass3";
|
||||
this.pictureBoxBypass3.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass4
|
||||
//
|
||||
this.pictureBoxBypass4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass4.Image")));
|
||||
this.pictureBoxBypass4.Location = new System.Drawing.Point(313, 475);
|
||||
this.pictureBoxBypass4.Name = "pictureBoxBypass4";
|
||||
this.pictureBoxBypass4.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass5
|
||||
//
|
||||
this.pictureBoxBypass5.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass5.Image")));
|
||||
this.pictureBoxBypass5.Location = new System.Drawing.Point(394, 475);
|
||||
this.pictureBoxBypass5.Name = "pictureBoxBypass5";
|
||||
this.pictureBoxBypass5.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass6
|
||||
//
|
||||
this.pictureBoxBypass6.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass6.Image")));
|
||||
this.pictureBoxBypass6.Location = new System.Drawing.Point(475, 475);
|
||||
this.pictureBoxBypass6.Name = "pictureBoxBypass6";
|
||||
this.pictureBoxBypass6.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass7
|
||||
//
|
||||
this.pictureBoxBypass7.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass7.Image")));
|
||||
this.pictureBoxBypass7.Location = new System.Drawing.Point(556, 475);
|
||||
this.pictureBoxBypass7.Name = "pictureBoxBypass7";
|
||||
this.pictureBoxBypass7.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass8
|
||||
//
|
||||
this.pictureBoxBypass8.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass8.Image")));
|
||||
this.pictureBoxBypass8.Location = new System.Drawing.Point(637, 475);
|
||||
this.pictureBoxBypass8.Name = "pictureBoxBypass8";
|
||||
this.pictureBoxBypass8.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass9
|
||||
//
|
||||
this.pictureBoxBypass9.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass9.Image")));
|
||||
this.pictureBoxBypass9.Location = new System.Drawing.Point(718, 475);
|
||||
this.pictureBoxBypass9.Name = "pictureBoxBypass9";
|
||||
this.pictureBoxBypass9.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass10
|
||||
//
|
||||
this.pictureBoxBypass10.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass10.Image")));
|
||||
this.pictureBoxBypass10.Location = new System.Drawing.Point(799, 475);
|
||||
this.pictureBoxBypass10.Name = "pictureBoxBypass10";
|
||||
this.pictureBoxBypass10.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// pictureBoxBypass11
|
||||
//
|
||||
this.pictureBoxBypass11.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxBypass11.Image")));
|
||||
this.pictureBoxBypass11.Location = new System.Drawing.Point(880, 475);
|
||||
this.pictureBoxBypass11.Name = "pictureBoxBypass11";
|
||||
this.pictureBoxBypass11.Size = new System.Drawing.Size(74, 7);
|
||||
//
|
||||
// smartGroupBox1
|
||||
//
|
||||
this.smartGroupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(151)))), ((int)(((byte)(151)))));
|
||||
this.smartGroupBox1.BackPictureBox = null;
|
||||
this.smartGroupBox1.BackPictureBox1 = null;
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass11);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass10);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass9);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass8);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass7);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass6);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass5);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass4);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass3);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass2);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBoxBypass1);
|
||||
this.smartGroupBox1.Controls.Add(this.draw11);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox11);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox10);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox9);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox8);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox7);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox6);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox5);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox4);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox3);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox2);
|
||||
this.smartGroupBox1.Controls.Add(this.pictureBox1);
|
||||
this.smartGroupBox1.Controls.Add(this.button11);
|
||||
this.smartGroupBox1.Controls.Add(this.button10);
|
||||
this.smartGroupBox1.Controls.Add(this.button9);
|
||||
this.smartGroupBox1.Controls.Add(this.button8);
|
||||
this.smartGroupBox1.Controls.Add(this.button7);
|
||||
this.smartGroupBox1.Controls.Add(this.button6);
|
||||
this.smartGroupBox1.Controls.Add(this.button5);
|
||||
this.smartGroupBox1.Controls.Add(this.button4);
|
||||
this.smartGroupBox1.Controls.Add(this.button3);
|
||||
this.smartGroupBox1.Controls.Add(this.button2);
|
||||
this.smartGroupBox1.Controls.Add(this.button1);
|
||||
this.smartGroupBox1.Controls.Add(this.draw10);
|
||||
this.smartGroupBox1.Controls.Add(this.draw9);
|
||||
this.smartGroupBox1.Controls.Add(this.draw8);
|
||||
this.smartGroupBox1.Controls.Add(this.draw7);
|
||||
this.smartGroupBox1.Controls.Add(this.draw6);
|
||||
this.smartGroupBox1.Controls.Add(this.draw5);
|
||||
this.smartGroupBox1.Controls.Add(this.draw4);
|
||||
this.smartGroupBox1.Controls.Add(this.draw3);
|
||||
this.smartGroupBox1.Controls.Add(this.draw2);
|
||||
this.smartGroupBox1.Controls.Add(this.draw1);
|
||||
this.smartGroupBox1.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.smartGroupBox1.FrameLineThickness = 1;
|
||||
this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.None;
|
||||
this.smartGroupBox1.Image = null;
|
||||
this.smartGroupBox1.InitVisible = true;
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(0, 0);
|
||||
this.smartGroupBox1.Name = "smartGroupBox1";
|
||||
this.smartGroupBox1.RoundRadius = 5;
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(1023, 484);
|
||||
this.smartGroupBox1.TabIndex = 101;
|
||||
this.smartGroupBox1.Text = "smartGroupBox1";
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
//
|
||||
// ControlMainDisplayDotGraph11
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.Controls.Add(this.smartGroupBox1);
|
||||
this.Name = "ControlMainDisplayDotGraph11";
|
||||
this.Size = new System.Drawing.Size(1024, 485);
|
||||
this.smartGroupBox1.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private SmartX.SmartDraw draw10;
|
||||
private SmartX.SmartDraw draw9;
|
||||
private SmartX.SmartDraw draw8;
|
||||
private SmartX.SmartDraw draw7;
|
||||
private SmartX.SmartDraw draw6;
|
||||
private SmartX.SmartDraw draw5;
|
||||
private SmartX.SmartDraw draw4;
|
||||
private SmartX.SmartDraw draw3;
|
||||
private SmartX.SmartDraw draw2;
|
||||
private SmartX.SmartDraw draw1;
|
||||
private System.Windows.Forms.PictureBox pictureBox11;
|
||||
private System.Windows.Forms.PictureBox pictureBox10;
|
||||
private System.Windows.Forms.PictureBox pictureBox9;
|
||||
private System.Windows.Forms.PictureBox pictureBox8;
|
||||
private System.Windows.Forms.PictureBox pictureBox7;
|
||||
private System.Windows.Forms.PictureBox pictureBox6;
|
||||
private System.Windows.Forms.PictureBox pictureBox5;
|
||||
private System.Windows.Forms.PictureBox pictureBox4;
|
||||
private System.Windows.Forms.PictureBox pictureBox3;
|
||||
private System.Windows.Forms.PictureBox pictureBox2;
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private SmartX.SmartButton button11;
|
||||
private SmartX.SmartButton button10;
|
||||
private SmartX.SmartButton button9;
|
||||
private SmartX.SmartButton button8;
|
||||
private SmartX.SmartButton button7;
|
||||
private SmartX.SmartButton button6;
|
||||
private SmartX.SmartButton button5;
|
||||
private SmartX.SmartButton button4;
|
||||
private SmartX.SmartButton button3;
|
||||
private SmartX.SmartButton button2;
|
||||
private SmartX.SmartButton button1;
|
||||
private SmartX.SmartDraw draw11;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass1;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass2;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass3;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass4;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass5;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass6;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass7;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass8;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass9;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass10;
|
||||
private System.Windows.Forms.PictureBox pictureBoxBypass11;
|
||||
private SmartX.SmartGroupBox smartGroupBox1;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,336 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using SmartX;
|
||||
using INT69DC_7C.Forms;
|
||||
|
||||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
public partial class ControlMainDisplayDotGraph11 : UserControl
|
||||
{
|
||||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private string CurrentUnderWeight;
|
||||
private string CurrentOverWeight;
|
||||
private int CurrentDecimalPlaces;
|
||||
|
||||
private Collection<PictureBox> CollectionPictureBoxZero;
|
||||
private Collection<SmartDraw> CollectionDraw;
|
||||
private Collection<PictureBox> CollectionPictureBoxBypass;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public ControlMainDisplayDotGraph11(FormMainDisplay parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.ParentForm = parent;
|
||||
|
||||
this.CreateCollection();
|
||||
this.InitializeControl();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Property
|
||||
public FormMainDisplay ParentForm
|
||||
{
|
||||
get { return this.m_ParentForm; }
|
||||
private set { this.m_ParentForm = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
private void CreateCollection()
|
||||
{
|
||||
// PictureBoxZero
|
||||
this.CollectionPictureBoxZero = new Collection<PictureBox>();
|
||||
this.CollectionPictureBoxZero.Clear();
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox1);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox2);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox3);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox4);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox5);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox6);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox7);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox8);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox9);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox10);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox11);
|
||||
|
||||
// SmartDraw
|
||||
this.CollectionDraw = new Collection<SmartDraw>();
|
||||
this.CollectionDraw.Clear();
|
||||
this.CollectionDraw.Add(this.draw1);
|
||||
this.CollectionDraw.Add(this.draw2);
|
||||
this.CollectionDraw.Add(this.draw3);
|
||||
this.CollectionDraw.Add(this.draw4);
|
||||
this.CollectionDraw.Add(this.draw5);
|
||||
this.CollectionDraw.Add(this.draw6);
|
||||
this.CollectionDraw.Add(this.draw7);
|
||||
this.CollectionDraw.Add(this.draw8);
|
||||
this.CollectionDraw.Add(this.draw9);
|
||||
this.CollectionDraw.Add(this.draw10);
|
||||
this.CollectionDraw.Add(this.draw11);
|
||||
|
||||
// PictureBoxBypass
|
||||
this.CollectionPictureBoxBypass = new Collection<PictureBox>();
|
||||
this.CollectionPictureBoxBypass.Clear();
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass1);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass2);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass3);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass4);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass5);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass6);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass7);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass8);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass9);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass10);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass11);
|
||||
}
|
||||
private void InitializeControl()
|
||||
{
|
||||
foreach (PictureBox picture in this.CollectionPictureBoxZero)
|
||||
picture.Visible = false;
|
||||
|
||||
foreach (PictureBox picture in this.CollectionPictureBoxBypass)
|
||||
picture.Visible = false;
|
||||
|
||||
this.InitialzeDraws();
|
||||
this.draw1.BringToFront();
|
||||
this.button1.ButtonDown();
|
||||
}
|
||||
private void InitialzeDraws()
|
||||
{
|
||||
this.CurrentOverWeight = this.ParentForm.ParentForm.CurrentProductItem.OverRange;
|
||||
this.CurrentUnderWeight = this.ParentForm.ParentForm.CurrentProductItem.UnderRange;
|
||||
this.CurrentDecimalPlaces = this.ParentForm.ParentForm.SystemConfig.DecimalPlaces;
|
||||
|
||||
foreach (SmartDraw draw in this.CollectionDraw)
|
||||
this.InitializeDraw(draw, this.ParentForm.ParentForm.CurrentProductItem, this.ParentForm.ParentForm.SystemConfig);
|
||||
}
|
||||
private void InitializeDraw(SmartDraw draw, ProductItem pItem, SystemConfigurationItem sItem)
|
||||
{
|
||||
draw.BackDraw.SetPenStyle(Color.Blue, 3);
|
||||
|
||||
draw.BackDraw.Line(100, 20, 100, 380);
|
||||
draw.BackDraw.Line(100, 380, 968, 380);
|
||||
|
||||
draw.BackDraw.SetPenStyle(Color.Gray, 1);
|
||||
|
||||
draw.BackDraw.SetFontCfg(25, Color.Red);
|
||||
draw.BackDraw.TextOut(880, 2, draw.Text);
|
||||
draw.BackDraw.SetFontCfg(30, Color.White);
|
||||
|
||||
// Chart의 가로 그리드 그리기
|
||||
draw.BackDraw.Line(103, 380 - (1 * 127) + 7, 968, 380 - (1 * 127) + 7);
|
||||
draw.BackDraw.TextOut(15, 365 - (1 * 127) + 7, Helper.StringToDecimalPlaces(pItem.UnderRange, sItem.DecimalPlaces));
|
||||
|
||||
draw.BackDraw.Line(103, 380 - (2 * 127) + 14, 968, 380 - (2 * 127) + 14);
|
||||
draw.BackDraw.TextOut(15, 365 - (2 * 127) + 14, Helper.StringToDecimalPlaces(pItem.OverRange, sItem.DecimalPlaces));
|
||||
|
||||
SmartX.SmartDraw.CHARTPENSTYLE[] chartchPenStyle = new SmartX.SmartDraw.CHARTPENSTYLE[1];
|
||||
chartchPenStyle[0].m_chColor = Color.Yellow;
|
||||
chartchPenStyle[0].m_iPenWidth = 2;
|
||||
|
||||
draw.SetChartCfg(103, 380, 865, 360, 16, SmartX.SmartDraw.CHARTREFRESH.LEFTSCROLL, 1);
|
||||
draw.ChartChannelPenStyle = chartchPenStyle;
|
||||
}
|
||||
|
||||
public void RescaleControl()
|
||||
{
|
||||
foreach (SmartDraw draw in this.CollectionDraw)
|
||||
{
|
||||
draw.BackDraw.BackErase(Color.Black);
|
||||
draw.Erase();
|
||||
draw.PutDataAllClear();
|
||||
}
|
||||
this.InitialzeDraws();
|
||||
}
|
||||
public void Clear()
|
||||
{
|
||||
foreach (SmartX.SmartDraw draw in this.CollectionDraw)
|
||||
draw.PutDataAllClear();
|
||||
}
|
||||
|
||||
private void UpdateDraw(SmartDraw draw, WeightData weightData)
|
||||
{
|
||||
int iValue = 0, gap = 0, startingPoint = 0;
|
||||
double scale = 0.0, value = 0.0;
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
// 스케일 계산
|
||||
gap = int.Parse(this.ParentForm.ParentForm.CurrentProductItem.OverRange)
|
||||
- int.Parse(this.ParentForm.ParentForm.CurrentProductItem.UnderRange);
|
||||
scale = 120.0 / gap;
|
||||
startingPoint = int.Parse(this.ParentForm.ParentForm.CurrentProductItem.UnderRange) - gap;
|
||||
|
||||
try
|
||||
{
|
||||
value = (int.Parse(weightData.WeightString) - startingPoint) * scale;
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
value = 0;
|
||||
}
|
||||
|
||||
// 그래프를 스케일을 넘어가면 Max값 적용
|
||||
if (value > 355)
|
||||
value = 355;
|
||||
if (value < 2)
|
||||
value = 2;
|
||||
|
||||
iValue = int.Parse(string.Format("{0:f0}", value));
|
||||
|
||||
draw.PutData(iValue);
|
||||
}
|
||||
|
||||
public void UpdateEquipmentStatusDisplay(DataStore.EquipmentStatus status)
|
||||
{
|
||||
|
||||
}
|
||||
public void UpdateCurrentProductDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
|
||||
}
|
||||
public void UpdateBypassDisplay(Collection<WeightData> weightData)
|
||||
{
|
||||
for (int i = 0; i < this.CollectionPictureBoxBypass.Count; i++)
|
||||
{
|
||||
if (weightData[i].IsBypassMode == true)
|
||||
this.CollectionPictureBoxBypass[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxBypass[i].Visible = false;
|
||||
}
|
||||
}
|
||||
public void UpdateStopWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns > weightDatas.Count)
|
||||
return;
|
||||
|
||||
if (status == DataStore.EquipmentStatus.Stop)
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
// 영점표시
|
||||
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
|
||||
this.CollectionPictureBoxZero[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxZero[i].Visible = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
// 영점표시
|
||||
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
|
||||
this.CollectionPictureBoxZero[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxZero[i].Visible = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
public void UpdateStartWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
this.UpdateStartWeightDisplay1(status, weightDatas[0]);
|
||||
this.UpdateStartWeightDisplay2(status, weightDatas[1]);
|
||||
this.UpdateStartWeightDisplay3(status, weightDatas[2]);
|
||||
this.UpdateStartWeightDisplay4(status, weightDatas[3]);
|
||||
this.UpdateStartWeightDisplay5(status, weightDatas[4]);
|
||||
this.UpdateStartWeightDisplay6(status, weightDatas[5]);
|
||||
this.UpdateStartWeightDisplay7(status, weightDatas[6]);
|
||||
this.UpdateStartWeightDisplay8(status, weightDatas[7]);
|
||||
this.UpdateStartWeightDisplay9(status, weightDatas[8]);
|
||||
this.UpdateStartWeightDisplay10(status, weightDatas[9]);
|
||||
this.UpdateStartWeightDisplay11(status, weightDatas[10]);
|
||||
}
|
||||
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[0], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[1], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[2], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[3], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[4], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[5], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[6], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[7], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay9(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[8], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay10(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[9], weightData);
|
||||
}
|
||||
public void UpdateStartWeightDisplay11(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
this.UpdateDraw(this.CollectionDraw[10], weightData);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Event Handler
|
||||
private void buttonSelectDraw_Click(object sender, EventArgs e)
|
||||
{
|
||||
SmartButton button = sender as SmartButton;
|
||||
|
||||
if (button == null)
|
||||
return;
|
||||
|
||||
if (button == this.button1)
|
||||
this.draw1.BringToFront();
|
||||
else if (button == this.button2)
|
||||
this.draw2.BringToFront();
|
||||
else if (button == this.button3)
|
||||
this.draw3.BringToFront();
|
||||
else if (button == this.button4)
|
||||
this.draw4.BringToFront();
|
||||
else if (button == this.button5)
|
||||
this.draw5.BringToFront();
|
||||
else if (button == this.button6)
|
||||
this.draw6.BringToFront();
|
||||
else if (button == this.button7)
|
||||
this.draw7.BringToFront();
|
||||
else if (button == this.button8)
|
||||
this.draw8.BringToFront();
|
||||
else if (button == this.button9)
|
||||
this.draw9.BringToFront();
|
||||
else if (button == this.button10)
|
||||
this.draw10.BringToFront();
|
||||
else if (button == this.button11)
|
||||
this.draw11.BringToFront();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,580 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using SmartX;
|
||||
using INT69DC_7C.Forms;
|
||||
|
||||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
public partial class ControlMainDisplayEachBarGraph11 : UserControl
|
||||
{
|
||||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private Collection<PictureBox> CollectionPictureBoxZero;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue;
|
||||
private Collection<SmartProgressBar> CollectionProgressBar;
|
||||
private Collection<PictureBox> CollectionPictureBoxBypass;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public ControlMainDisplayEachBarGraph11(FormMainDisplay parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.ParentForm = parent;
|
||||
|
||||
this.CreateCollection();
|
||||
this.InitializeControl();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Property
|
||||
public FormMainDisplay ParentForm
|
||||
{
|
||||
get { return this.m_ParentForm; }
|
||||
private set { this.m_ParentForm = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
private void CreateCollection()
|
||||
{
|
||||
// PictureBoxZero
|
||||
this.CollectionPictureBoxZero = new Collection<PictureBox>();
|
||||
this.CollectionPictureBoxZero.Clear();
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox1);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox2);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox3);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox4);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox5);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox6);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox7);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox8);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox9);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox10);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox11);
|
||||
|
||||
// LabelWeightValue
|
||||
this.CollectionLabelWeightValue = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue.Clear();
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue1);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue2);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue3);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue4);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue5);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue6);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue7);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue8);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue9);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue10);
|
||||
this.CollectionLabelWeightValue.Add(this.labelWeightValue11);
|
||||
|
||||
// ProgressBar
|
||||
this.CollectionProgressBar = new Collection<SmartProgressBar>();
|
||||
this.CollectionProgressBar.Clear();
|
||||
this.CollectionProgressBar.Add(this.progressBar1);
|
||||
this.CollectionProgressBar.Add(this.progressBar2);
|
||||
this.CollectionProgressBar.Add(this.progressBar3);
|
||||
this.CollectionProgressBar.Add(this.progressBar4);
|
||||
this.CollectionProgressBar.Add(this.progressBar5);
|
||||
this.CollectionProgressBar.Add(this.progressBar6);
|
||||
this.CollectionProgressBar.Add(this.progressBar7);
|
||||
this.CollectionProgressBar.Add(this.progressBar8);
|
||||
this.CollectionProgressBar.Add(this.progressBar9);
|
||||
this.CollectionProgressBar.Add(this.progressBar10);
|
||||
this.CollectionProgressBar.Add(this.progressBar11);
|
||||
|
||||
// PictureBoxBypass
|
||||
this.CollectionPictureBoxBypass = new Collection<PictureBox>();
|
||||
this.CollectionPictureBoxBypass.Clear();
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass1);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass2);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass3);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass4);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass5);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass6);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass7);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass8);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass9);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass10);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass11);
|
||||
}
|
||||
private void InitializeControl()
|
||||
{
|
||||
foreach (PictureBox picture in this.CollectionPictureBoxZero)
|
||||
picture.Visible = false;
|
||||
|
||||
foreach (SmartLabel label in this.CollectionLabelWeightValue)
|
||||
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
|
||||
foreach (SmartProgressBar bar in this.CollectionProgressBar)
|
||||
bar.Value = bar.Minimum;
|
||||
|
||||
foreach (PictureBox picture in this.CollectionPictureBoxBypass)
|
||||
picture.Visible = false;
|
||||
|
||||
this.SetCount(this.ParentForm.ParentForm.CollectionWeightData);
|
||||
}
|
||||
private void SetCount(Collection<WeightData> weightdatas)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
#region Line 1
|
||||
value = weightdatas[0].TotalNGCount.ToString();
|
||||
if (this.labelNGCount1.Text != value)
|
||||
this.labelNGCount1.Text = value;
|
||||
|
||||
value = weightdatas[0].PassCount.ToString();
|
||||
if (this.labelPassCount1.Text != value)
|
||||
this.labelPassCount1.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 2
|
||||
value = weightdatas[1].TotalNGCount.ToString();
|
||||
if (this.labelNGCount2.Text != value)
|
||||
this.labelNGCount2.Text = value;
|
||||
|
||||
value = weightdatas[1].PassCount.ToString();
|
||||
if (this.labelPassCount2.Text != value)
|
||||
this.labelPassCount2.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 3
|
||||
value = weightdatas[2].TotalNGCount.ToString();
|
||||
if (this.labelNGCount3.Text != value)
|
||||
this.labelNGCount3.Text = value;
|
||||
|
||||
value = weightdatas[2].PassCount.ToString();
|
||||
if (this.labelPassCount3.Text != value)
|
||||
this.labelPassCount3.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 4
|
||||
value = weightdatas[3].TotalNGCount.ToString();
|
||||
if (this.labelNGCount4.Text != value)
|
||||
this.labelNGCount4.Text = value;
|
||||
|
||||
value = weightdatas[3].PassCount.ToString();
|
||||
if (this.labelPassCount4.Text != value)
|
||||
this.labelPassCount4.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 5
|
||||
value = weightdatas[4].TotalNGCount.ToString();
|
||||
if (this.labelNGCount5.Text != value)
|
||||
this.labelNGCount5.Text = value;
|
||||
|
||||
value = weightdatas[4].PassCount.ToString();
|
||||
if (this.labelPassCount5.Text != value)
|
||||
this.labelPassCount5.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 6
|
||||
value = weightdatas[5].TotalNGCount.ToString();
|
||||
if (this.labelNGCount6.Text != value)
|
||||
this.labelNGCount6.Text = value;
|
||||
|
||||
value = weightdatas[5].PassCount.ToString();
|
||||
if (this.labelPassCount6.Text != value)
|
||||
this.labelPassCount6.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 7
|
||||
value = weightdatas[6].TotalNGCount.ToString();
|
||||
if (this.labelNGCount7.Text != value)
|
||||
this.labelNGCount7.Text = value;
|
||||
|
||||
value = weightdatas[6].PassCount.ToString();
|
||||
if (this.labelPassCount7.Text != value)
|
||||
this.labelPassCount7.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 8
|
||||
value = weightdatas[7].TotalNGCount.ToString();
|
||||
if (this.labelNGCount8.Text != value)
|
||||
this.labelNGCount8.Text = value;
|
||||
|
||||
value = weightdatas[7].PassCount.ToString();
|
||||
if (this.labelPassCount8.Text != value)
|
||||
this.labelPassCount8.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 9
|
||||
value = weightdatas[8].TotalNGCount.ToString();
|
||||
if (this.labelNGCount9.Text != value)
|
||||
this.labelNGCount9.Text = value;
|
||||
|
||||
value = weightdatas[8].PassCount.ToString();
|
||||
if (this.labelPassCount9.Text != value)
|
||||
this.labelPassCount9.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 10
|
||||
value = weightdatas[9].TotalNGCount.ToString();
|
||||
if (this.labelNGCount10.Text != value)
|
||||
this.labelNGCount10.Text = value;
|
||||
|
||||
value = weightdatas[9].PassCount.ToString();
|
||||
if (this.labelPassCount10.Text != value)
|
||||
this.labelPassCount10.Text = value;
|
||||
#endregion
|
||||
|
||||
#region Line 11
|
||||
value = weightdatas[10].TotalNGCount.ToString();
|
||||
if (this.labelNGCount11.Text != value)
|
||||
this.labelNGCount11.Text = value;
|
||||
|
||||
value = weightdatas[10].PassCount.ToString();
|
||||
if (this.labelPassCount11.Text != value)
|
||||
this.labelPassCount11.Text = value;
|
||||
#endregion
|
||||
|
||||
this.ParentForm.SetTotalCount();
|
||||
}
|
||||
|
||||
public void RescaleControl()
|
||||
{
|
||||
foreach (SmartProgressBar bar in this.CollectionProgressBar)
|
||||
{
|
||||
Helper.RescaleProgressBar(bar, this.ParentForm.ParentForm.CurrentProductItem.ProgressBarMaximum, this.ParentForm.ParentForm.CurrentProductItem.ProgressBarMinimum);
|
||||
bar.Value = bar.Minimum;
|
||||
}
|
||||
}
|
||||
public void Clear()
|
||||
{
|
||||
foreach (SmartX.SmartLabel label in this.CollectionLabelWeightValue)
|
||||
label.Text = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
|
||||
foreach (SmartX.SmartProgressBar bar in this.CollectionProgressBar)
|
||||
bar.Value = bar.Minimum;
|
||||
|
||||
foreach (WeightData data in this.ParentForm.ParentForm.CollectionWeightData)
|
||||
data.ClearCount();
|
||||
|
||||
this.SetCount(this.ParentForm.ParentForm.CollectionWeightData);
|
||||
|
||||
this.ParentForm.ParentForm.SaveCounterFile(this.ParentForm.ParentForm.CollectionWeightData, this.ParentForm.ParentForm.SystemConfig.ProductNumber - 1);
|
||||
}
|
||||
|
||||
public void UpdateEquipmentStatusDisplay(DataStore.EquipmentStatus status)
|
||||
{
|
||||
string temp = "";
|
||||
|
||||
foreach (SmartX.SmartLabel label in this.CollectionLabelWeightValue)
|
||||
{
|
||||
temp = Helper.StringToDecimalPlaces("0", this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (label.Text != temp)
|
||||
label.Text = temp;
|
||||
}
|
||||
|
||||
foreach (SmartProgressBar bar in this.CollectionProgressBar)
|
||||
bar.Value = bar.Minimum;
|
||||
}
|
||||
public void UpdateCurrentProductDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
foreach (SmartProgressBar bar in this.CollectionProgressBar)
|
||||
bar.Value = bar.Minimum;
|
||||
|
||||
this.SetCount(this.ParentForm.ParentForm.CollectionWeightData);
|
||||
}
|
||||
public void UpdateBypassDisplay(Collection<WeightData> weightData)
|
||||
{
|
||||
for (int i = 0; i < this.CollectionPictureBoxBypass.Count; i++)
|
||||
{
|
||||
if (weightData[i].IsBypassMode == true)
|
||||
this.CollectionPictureBoxBypass[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxBypass[i].Visible = false;
|
||||
}
|
||||
}
|
||||
public void UpdateStopWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns > weightDatas.Count)
|
||||
return;
|
||||
|
||||
if (status == DataStore.EquipmentStatus.Stop)
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
// 중량
|
||||
value = Helper.DoubleToString(weightDatas[i].Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.CollectionLabelWeightValue[i].Text != value)
|
||||
this.CollectionLabelWeightValue[i].Text = value;
|
||||
|
||||
// 영점표시
|
||||
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
|
||||
this.CollectionPictureBoxZero[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxZero[i].Visible = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
// 영점표시
|
||||
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
|
||||
this.CollectionPictureBoxZero[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxZero[i].Visible = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
public void UpdateStartWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
this.UpdateStartWeightDisplay1(status, weightDatas[0]);
|
||||
this.UpdateStartWeightDisplay2(status, weightDatas[1]);
|
||||
this.UpdateStartWeightDisplay3(status, weightDatas[2]);
|
||||
this.UpdateStartWeightDisplay4(status, weightDatas[3]);
|
||||
this.UpdateStartWeightDisplay5(status, weightDatas[4]);
|
||||
this.UpdateStartWeightDisplay6(status, weightDatas[5]);
|
||||
this.UpdateStartWeightDisplay7(status, weightDatas[6]);
|
||||
this.UpdateStartWeightDisplay8(status, weightDatas[7]);
|
||||
this.UpdateStartWeightDisplay9(status, weightDatas[8]);
|
||||
this.UpdateStartWeightDisplay10(status, weightDatas[9]);
|
||||
this.UpdateStartWeightDisplay11(status, weightDatas[10]);
|
||||
}
|
||||
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue1.Text != value)
|
||||
this.labelWeightValue1.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount1.Text != value)
|
||||
this.labelPassCount1.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount1.Text != value)
|
||||
this.labelNGCount1.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar1, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue2.Text != value)
|
||||
this.labelWeightValue2.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount2.Text != value)
|
||||
this.labelPassCount2.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount2.Text != value)
|
||||
this.labelNGCount2.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar2, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue3.Text != value)
|
||||
this.labelWeightValue3.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount3.Text != value)
|
||||
this.labelPassCount3.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount3.Text != value)
|
||||
this.labelNGCount3.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar3, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue4.Text != value)
|
||||
this.labelWeightValue4.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount4.Text != value)
|
||||
this.labelPassCount4.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount4.Text != value)
|
||||
this.labelNGCount4.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar4, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue5.Text != value)
|
||||
this.labelWeightValue5.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount5.Text != value)
|
||||
this.labelPassCount5.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount5.Text != value)
|
||||
this.labelNGCount5.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar5, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue6.Text != value)
|
||||
this.labelWeightValue6.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount6.Text != value)
|
||||
this.labelPassCount6.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount6.Text != value)
|
||||
this.labelNGCount6.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar6, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue7.Text != value)
|
||||
this.labelWeightValue7.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount7.Text != value)
|
||||
this.labelPassCount7.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount7.Text != value)
|
||||
this.labelNGCount7.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar7, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue8.Text != value)
|
||||
this.labelWeightValue8.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount8.Text != value)
|
||||
this.labelPassCount8.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount8.Text != value)
|
||||
this.labelNGCount8.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar8, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay9(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue9.Text != value)
|
||||
this.labelWeightValue9.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount9.Text != value)
|
||||
this.labelPassCount9.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount9.Text != value)
|
||||
this.labelNGCount9.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar9, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay10(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue10.Text != value)
|
||||
this.labelWeightValue10.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount10.Text != value)
|
||||
this.labelPassCount10.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount10.Text != value)
|
||||
this.labelNGCount10.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar10, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
public void UpdateStartWeightDisplay11(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
value = Helper.DoubleToString(weightData.Weight, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
if (this.labelWeightValue11.Text != value)
|
||||
this.labelWeightValue11.Text = value;
|
||||
|
||||
value = weightData.PassCount.ToString();
|
||||
if (this.labelPassCount11.Text != value)
|
||||
this.labelPassCount11.Text = value;
|
||||
|
||||
value = weightData.TotalNGCount.ToString();
|
||||
if (this.labelNGCount11.Text != value)
|
||||
this.labelNGCount11.Text = value;
|
||||
|
||||
Helper.SetProgressBarValue(this.progressBar11, weightData.Weight, weightData.JudgmentStatus, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -98,7 +98,7 @@ namespace INT69DC_7C.Controls
|
|||
// WeightStorage
|
||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||
this.CollectionWeightStorageItem.Clear();
|
||||
for (int i = 0; i < 10; i++)
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||
|
||||
#region Add Label
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,866 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Data;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using SmartX;
|
||||
using INT69DC_7C.Forms;
|
||||
|
||||
namespace INT69DC_7C.Controls
|
||||
{
|
||||
public partial class ControlMainDisplayTable11 : UserControl
|
||||
{
|
||||
#region Field
|
||||
private FormMainDisplay m_ParentForm;
|
||||
|
||||
private Color WeightOverColor = Color.Yellow;
|
||||
private Color WeightStandardColor = Color.Black;
|
||||
private Color WeightUnderColor = Color.Red;
|
||||
private Color WeightPassColor = Color.Green;
|
||||
private Color WeightExNGColor = Color.Blue;
|
||||
|
||||
/// <summary>
|
||||
/// true : total average
|
||||
/// fals : total pass average
|
||||
/// </summary>
|
||||
private bool IsTotalAverageView = true;
|
||||
|
||||
private Collection<PictureBox> CollectionPictureBoxZero;
|
||||
private Collection<PictureBox> CollectionPictureBoxBypass;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue1;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue2;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue3;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue4;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue5;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue6;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue7;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue8;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue9;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue10;
|
||||
private Collection<SmartLabel> CollectionLabelWeightValue11;
|
||||
private Collection<WeightStorageItem> CollectionWeightStorageItem;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public ControlMainDisplayTable11(FormMainDisplay parent)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
this.ParentForm = parent;
|
||||
|
||||
this.CreateCollection();
|
||||
this.InitializeControl();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Property
|
||||
public FormMainDisplay ParentForm
|
||||
{
|
||||
get { return this.m_ParentForm; }
|
||||
private set { this.m_ParentForm = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
private void CreateCollection()
|
||||
{
|
||||
// PictureBoxZero
|
||||
this.CollectionPictureBoxZero = new Collection<PictureBox>();
|
||||
this.CollectionPictureBoxZero.Clear();
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox1);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox2);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox3);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox4);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox5);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox6);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox7);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox8);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox9);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox10);
|
||||
this.CollectionPictureBoxZero.Add(this.pictureBox11);
|
||||
|
||||
// PictureBoxBypass
|
||||
this.CollectionPictureBoxBypass = new Collection<PictureBox>();
|
||||
this.CollectionPictureBoxBypass.Clear();
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass1);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass2);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass3);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass4);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass5);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass6);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass7);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass8);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass9);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass10);
|
||||
this.CollectionPictureBoxBypass.Add(this.pictureBoxBypass11);
|
||||
|
||||
// WeightStorage
|
||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||
this.CollectionWeightStorageItem.Clear();
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||
|
||||
#region Add Label
|
||||
this.CollectionLabelWeightValue1 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue1.Clear();
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col1Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col2Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col3Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col4Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col5Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col6Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col7Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col8Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col9Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col10Row);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1Col5Avg);
|
||||
this.CollectionLabelWeightValue1.Add(this.label1AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue2 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue2.Clear();
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col1Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col2Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col3Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col4Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col5Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col6Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col7Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col8Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col9Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col10Row);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2Col5Avg);
|
||||
this.CollectionLabelWeightValue2.Add(this.label2AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue3 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue3.Clear();
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col1Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col2Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col3Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col4Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col5Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col6Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col7Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col8Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col9Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col10Row);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3Col5Avg);
|
||||
this.CollectionLabelWeightValue3.Add(this.label3AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue4 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue4.Clear();
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col1Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col2Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col3Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col4Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col5Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col6Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col7Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col8Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col9Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col10Row);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4Col5Avg);
|
||||
this.CollectionLabelWeightValue4.Add(this.label4AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue5 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue5.Clear();
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col1Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col2Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col3Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col4Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col5Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col6Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col7Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col8Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col9Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col10Row);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5Col5Avg);
|
||||
this.CollectionLabelWeightValue5.Add(this.label5AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue6 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue6.Clear();
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col1Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col2Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col3Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col4Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col5Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col6Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col7Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col8Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col9Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col10Row);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6Col5Avg);
|
||||
this.CollectionLabelWeightValue6.Add(this.label6AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue7 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue7.Clear();
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col1Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col2Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col3Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col4Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col5Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col6Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col7Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col8Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col9Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col10Row);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7Col5Avg);
|
||||
this.CollectionLabelWeightValue7.Add(this.label7AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue8 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue8.Clear();
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col1Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col2Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col3Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col4Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col5Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col6Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col7Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col8Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col9Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col10Row);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8Col5Avg);
|
||||
this.CollectionLabelWeightValue8.Add(this.label8AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue9 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue9.Clear();
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col1Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col2Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col3Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col4Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col5Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col6Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col7Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col8Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col9Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col10Row);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9Col5Avg);
|
||||
this.CollectionLabelWeightValue9.Add(this.label9AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue10 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue10.Clear();
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col1Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col2Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col3Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col4Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col5Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col6Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col7Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col8Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col9Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col10Row);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10Col5Avg);
|
||||
this.CollectionLabelWeightValue10.Add(this.label10AllAvg);
|
||||
|
||||
this.CollectionLabelWeightValue11 = new Collection<SmartLabel>();
|
||||
this.CollectionLabelWeightValue11.Clear();
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col1Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col2Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col3Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col4Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col5Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col6Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col7Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col8Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col9Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col10Row);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11Col5Avg);
|
||||
this.CollectionLabelWeightValue11.Add(this.label11AllAvg);
|
||||
#endregion
|
||||
}
|
||||
private void InitializeControl()
|
||||
{
|
||||
foreach (PictureBox picture in this.CollectionPictureBoxZero)
|
||||
picture.Visible = false;
|
||||
|
||||
foreach (PictureBox picture in this.CollectionPictureBoxBypass)
|
||||
picture.Visible = false;
|
||||
|
||||
for (int i = 0; i < 12; i++)
|
||||
{
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue1[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue2[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue3[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue4[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue5[i]);
|
||||
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue6[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue7[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue8[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue9[i]);
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue10[i]);
|
||||
|
||||
this.SetLabelProperty(this.CollectionLabelWeightValue11[i]);
|
||||
}
|
||||
|
||||
this.UpdateLabelDisplay();
|
||||
}
|
||||
private void SetLabelProperty(Control label)
|
||||
{
|
||||
label.Font = new Font("Tahoma", 16, FontStyle.Bold);
|
||||
}
|
||||
private void SetLabelText(SmartLabel label, double value, bool labelTotalCNT, DataStore.JudgmentStatus judge)
|
||||
{
|
||||
string sValue = "";
|
||||
Color labelColor = Color.Black;
|
||||
|
||||
//if (value < Helper.StringToWeight(this.ParentForm.ParentForm.CurrentProductItem.UnderRange, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces))
|
||||
// labelColor = this.WeightUnderColor;
|
||||
//else if (value > Helper.StringToWeight(this.ParentForm.ParentForm.CurrentProductItem.OverRange, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces))
|
||||
// labelColor = this.WeightOverColor;
|
||||
//else
|
||||
// labelColor = this.WeightStandardColor;
|
||||
|
||||
if (judge == DataStore.JudgmentStatus.Over)
|
||||
labelColor = this.WeightOverColor;
|
||||
else if (judge == DataStore.JudgmentStatus.Under)
|
||||
labelColor = this.WeightUnderColor;
|
||||
else if (judge == DataStore.JudgmentStatus.EXNg)
|
||||
labelColor = this.WeightExNGColor;
|
||||
else
|
||||
labelColor = this.WeightStandardColor;
|
||||
|
||||
if (labelTotalCNT == true)
|
||||
{
|
||||
if (this.IsTotalAverageView == false)
|
||||
labelColor = this.WeightPassColor;
|
||||
}
|
||||
|
||||
sValue = Helper.DoubleToString(value, this.ParentForm.ParentForm.SystemConfig.DecimalPlaces);
|
||||
|
||||
if (label.ForeColor != labelColor)
|
||||
label.ForeColor = labelColor;
|
||||
|
||||
if (label.Text != sValue)
|
||||
label.Text = sValue;
|
||||
}
|
||||
|
||||
public void Clear()
|
||||
{
|
||||
foreach (WeightStorageItem weight in this.CollectionWeightStorageItem)
|
||||
weight.AllClear();
|
||||
|
||||
this.UpdateLabelDisplay();
|
||||
}
|
||||
|
||||
private void UpdateLabelDisplay()
|
||||
{
|
||||
this.SetLabelText(this.label1Col1Row, this.CollectionWeightStorageItem[0].Weight1, false, this.CollectionWeightStorageItem[0].Grade1);
|
||||
this.SetLabelText(this.label1Col2Row, this.CollectionWeightStorageItem[0].Weight2, false, this.CollectionWeightStorageItem[0].Grade2);
|
||||
this.SetLabelText(this.label1Col3Row, this.CollectionWeightStorageItem[0].Weight3, false, this.CollectionWeightStorageItem[0].Grade3);
|
||||
this.SetLabelText(this.label1Col4Row, this.CollectionWeightStorageItem[0].Weight4, false, this.CollectionWeightStorageItem[0].Grade4);
|
||||
this.SetLabelText(this.label1Col5Row, this.CollectionWeightStorageItem[0].Weight5, false, this.CollectionWeightStorageItem[0].Grade5);
|
||||
this.SetLabelText(this.label1Col6Row, this.CollectionWeightStorageItem[0].Weight6, false, this.CollectionWeightStorageItem[0].Grade6);
|
||||
this.SetLabelText(this.label1Col7Row, this.CollectionWeightStorageItem[0].Weight7, false, this.CollectionWeightStorageItem[0].Grade7);
|
||||
this.SetLabelText(this.label1Col8Row, this.CollectionWeightStorageItem[0].Weight8, false, this.CollectionWeightStorageItem[0].Grade8);
|
||||
this.SetLabelText(this.label1Col9Row, this.CollectionWeightStorageItem[0].Weight9, false, this.CollectionWeightStorageItem[0].Grade9);
|
||||
this.SetLabelText(this.label1Col10Row, this.CollectionWeightStorageItem[0].Weight10, false, this.CollectionWeightStorageItem[0].Grade10);
|
||||
this.SetLabelText(this.label1Col5Avg, this.CollectionWeightStorageItem[0].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label1AllAvg, this.CollectionWeightStorageItem[0].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label2Col1Row, this.CollectionWeightStorageItem[1].Weight1, false, this.CollectionWeightStorageItem[1].Grade1);
|
||||
this.SetLabelText(this.label2Col2Row, this.CollectionWeightStorageItem[1].Weight2, false, this.CollectionWeightStorageItem[1].Grade2);
|
||||
this.SetLabelText(this.label2Col3Row, this.CollectionWeightStorageItem[1].Weight3, false, this.CollectionWeightStorageItem[1].Grade3);
|
||||
this.SetLabelText(this.label2Col4Row, this.CollectionWeightStorageItem[1].Weight4, false, this.CollectionWeightStorageItem[1].Grade4);
|
||||
this.SetLabelText(this.label2Col5Row, this.CollectionWeightStorageItem[1].Weight5, false, this.CollectionWeightStorageItem[1].Grade5);
|
||||
this.SetLabelText(this.label2Col6Row, this.CollectionWeightStorageItem[1].Weight6, false, this.CollectionWeightStorageItem[1].Grade6);
|
||||
this.SetLabelText(this.label2Col7Row, this.CollectionWeightStorageItem[1].Weight7, false, this.CollectionWeightStorageItem[1].Grade7);
|
||||
this.SetLabelText(this.label2Col8Row, this.CollectionWeightStorageItem[1].Weight8, false, this.CollectionWeightStorageItem[1].Grade8);
|
||||
this.SetLabelText(this.label2Col9Row, this.CollectionWeightStorageItem[1].Weight9, false, this.CollectionWeightStorageItem[1].Grade9);
|
||||
this.SetLabelText(this.label2Col10Row, this.CollectionWeightStorageItem[1].Weight10, false, this.CollectionWeightStorageItem[1].Grade10);
|
||||
this.SetLabelText(this.label2Col5Avg, this.CollectionWeightStorageItem[1].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label2AllAvg, this.CollectionWeightStorageItem[1].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label3Col1Row, this.CollectionWeightStorageItem[2].Weight1, false, this.CollectionWeightStorageItem[2].Grade1);
|
||||
this.SetLabelText(this.label3Col2Row, this.CollectionWeightStorageItem[2].Weight2, false, this.CollectionWeightStorageItem[2].Grade2);
|
||||
this.SetLabelText(this.label3Col3Row, this.CollectionWeightStorageItem[2].Weight3, false, this.CollectionWeightStorageItem[2].Grade3);
|
||||
this.SetLabelText(this.label3Col4Row, this.CollectionWeightStorageItem[2].Weight4, false, this.CollectionWeightStorageItem[2].Grade4);
|
||||
this.SetLabelText(this.label3Col5Row, this.CollectionWeightStorageItem[2].Weight5, false, this.CollectionWeightStorageItem[2].Grade5);
|
||||
this.SetLabelText(this.label3Col6Row, this.CollectionWeightStorageItem[2].Weight6, false, this.CollectionWeightStorageItem[2].Grade6);
|
||||
this.SetLabelText(this.label3Col7Row, this.CollectionWeightStorageItem[2].Weight7, false, this.CollectionWeightStorageItem[2].Grade7);
|
||||
this.SetLabelText(this.label3Col8Row, this.CollectionWeightStorageItem[2].Weight8, false, this.CollectionWeightStorageItem[2].Grade8);
|
||||
this.SetLabelText(this.label3Col9Row, this.CollectionWeightStorageItem[2].Weight9, false, this.CollectionWeightStorageItem[2].Grade9);
|
||||
this.SetLabelText(this.label3Col10Row, this.CollectionWeightStorageItem[2].Weight10, false, this.CollectionWeightStorageItem[2].Grade10);
|
||||
this.SetLabelText(this.label3Col5Avg, this.CollectionWeightStorageItem[2].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label3AllAvg, this.CollectionWeightStorageItem[2].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label4Col1Row, this.CollectionWeightStorageItem[3].Weight1, false, this.CollectionWeightStorageItem[3].Grade1);
|
||||
this.SetLabelText(this.label4Col2Row, this.CollectionWeightStorageItem[3].Weight2, false, this.CollectionWeightStorageItem[3].Grade2);
|
||||
this.SetLabelText(this.label4Col3Row, this.CollectionWeightStorageItem[3].Weight3, false, this.CollectionWeightStorageItem[3].Grade3);
|
||||
this.SetLabelText(this.label4Col4Row, this.CollectionWeightStorageItem[3].Weight4, false, this.CollectionWeightStorageItem[3].Grade4);
|
||||
this.SetLabelText(this.label4Col5Row, this.CollectionWeightStorageItem[3].Weight5, false, this.CollectionWeightStorageItem[3].Grade5);
|
||||
this.SetLabelText(this.label4Col6Row, this.CollectionWeightStorageItem[3].Weight6, false, this.CollectionWeightStorageItem[3].Grade6);
|
||||
this.SetLabelText(this.label4Col7Row, this.CollectionWeightStorageItem[3].Weight7, false, this.CollectionWeightStorageItem[3].Grade7);
|
||||
this.SetLabelText(this.label4Col8Row, this.CollectionWeightStorageItem[3].Weight8, false, this.CollectionWeightStorageItem[3].Grade8);
|
||||
this.SetLabelText(this.label4Col9Row, this.CollectionWeightStorageItem[3].Weight9, false, this.CollectionWeightStorageItem[3].Grade9);
|
||||
this.SetLabelText(this.label4Col10Row, this.CollectionWeightStorageItem[3].Weight10, false, this.CollectionWeightStorageItem[3].Grade10);
|
||||
this.SetLabelText(this.label4Col5Avg, this.CollectionWeightStorageItem[3].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label4AllAvg, this.CollectionWeightStorageItem[3].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label5Col1Row, this.CollectionWeightStorageItem[4].Weight1, false, this.CollectionWeightStorageItem[4].Grade1);
|
||||
this.SetLabelText(this.label5Col2Row, this.CollectionWeightStorageItem[4].Weight2, false, this.CollectionWeightStorageItem[4].Grade2);
|
||||
this.SetLabelText(this.label5Col3Row, this.CollectionWeightStorageItem[4].Weight3, false, this.CollectionWeightStorageItem[4].Grade3);
|
||||
this.SetLabelText(this.label5Col4Row, this.CollectionWeightStorageItem[4].Weight4, false, this.CollectionWeightStorageItem[4].Grade4);
|
||||
this.SetLabelText(this.label5Col5Row, this.CollectionWeightStorageItem[4].Weight5, false, this.CollectionWeightStorageItem[4].Grade5);
|
||||
this.SetLabelText(this.label5Col6Row, this.CollectionWeightStorageItem[4].Weight6, false, this.CollectionWeightStorageItem[4].Grade6);
|
||||
this.SetLabelText(this.label5Col7Row, this.CollectionWeightStorageItem[4].Weight7, false, this.CollectionWeightStorageItem[4].Grade7);
|
||||
this.SetLabelText(this.label5Col8Row, this.CollectionWeightStorageItem[4].Weight8, false, this.CollectionWeightStorageItem[4].Grade8);
|
||||
this.SetLabelText(this.label5Col9Row, this.CollectionWeightStorageItem[4].Weight9, false, this.CollectionWeightStorageItem[4].Grade9);
|
||||
this.SetLabelText(this.label5Col10Row, this.CollectionWeightStorageItem[4].Weight10, false, this.CollectionWeightStorageItem[4].Grade10);
|
||||
this.SetLabelText(this.label5Col5Avg, this.CollectionWeightStorageItem[4].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label5AllAvg, this.CollectionWeightStorageItem[4].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label6Col1Row, this.CollectionWeightStorageItem[5].Weight1, false, this.CollectionWeightStorageItem[5].Grade1);
|
||||
this.SetLabelText(this.label6Col2Row, this.CollectionWeightStorageItem[5].Weight2, false, this.CollectionWeightStorageItem[5].Grade2);
|
||||
this.SetLabelText(this.label6Col3Row, this.CollectionWeightStorageItem[5].Weight3, false, this.CollectionWeightStorageItem[5].Grade3);
|
||||
this.SetLabelText(this.label6Col4Row, this.CollectionWeightStorageItem[5].Weight4, false, this.CollectionWeightStorageItem[5].Grade4);
|
||||
this.SetLabelText(this.label6Col5Row, this.CollectionWeightStorageItem[5].Weight5, false, this.CollectionWeightStorageItem[5].Grade5);
|
||||
this.SetLabelText(this.label6Col6Row, this.CollectionWeightStorageItem[5].Weight6, false, this.CollectionWeightStorageItem[5].Grade6);
|
||||
this.SetLabelText(this.label6Col7Row, this.CollectionWeightStorageItem[5].Weight7, false, this.CollectionWeightStorageItem[5].Grade7);
|
||||
this.SetLabelText(this.label6Col8Row, this.CollectionWeightStorageItem[5].Weight8, false, this.CollectionWeightStorageItem[5].Grade8);
|
||||
this.SetLabelText(this.label6Col9Row, this.CollectionWeightStorageItem[5].Weight9, false, this.CollectionWeightStorageItem[5].Grade9);
|
||||
this.SetLabelText(this.label6Col10Row, this.CollectionWeightStorageItem[5].Weight10, false, this.CollectionWeightStorageItem[5].Grade10);
|
||||
this.SetLabelText(this.label6Col5Avg, this.CollectionWeightStorageItem[5].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label6AllAvg, this.CollectionWeightStorageItem[5].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label7Col1Row, this.CollectionWeightStorageItem[6].Weight1, false, this.CollectionWeightStorageItem[6].Grade1);
|
||||
this.SetLabelText(this.label7Col2Row, this.CollectionWeightStorageItem[6].Weight2, false, this.CollectionWeightStorageItem[6].Grade2);
|
||||
this.SetLabelText(this.label7Col3Row, this.CollectionWeightStorageItem[6].Weight3, false, this.CollectionWeightStorageItem[6].Grade3);
|
||||
this.SetLabelText(this.label7Col4Row, this.CollectionWeightStorageItem[6].Weight4, false, this.CollectionWeightStorageItem[6].Grade4);
|
||||
this.SetLabelText(this.label7Col5Row, this.CollectionWeightStorageItem[6].Weight5, false, this.CollectionWeightStorageItem[6].Grade5);
|
||||
this.SetLabelText(this.label7Col6Row, this.CollectionWeightStorageItem[6].Weight6, false, this.CollectionWeightStorageItem[6].Grade6);
|
||||
this.SetLabelText(this.label7Col7Row, this.CollectionWeightStorageItem[6].Weight7, false, this.CollectionWeightStorageItem[6].Grade7);
|
||||
this.SetLabelText(this.label7Col8Row, this.CollectionWeightStorageItem[6].Weight8, false, this.CollectionWeightStorageItem[6].Grade8);
|
||||
this.SetLabelText(this.label7Col9Row, this.CollectionWeightStorageItem[6].Weight9, false, this.CollectionWeightStorageItem[6].Grade9);
|
||||
this.SetLabelText(this.label7Col10Row, this.CollectionWeightStorageItem[6].Weight10, false, this.CollectionWeightStorageItem[6].Grade10);
|
||||
this.SetLabelText(this.label7Col5Avg, this.CollectionWeightStorageItem[6].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label7AllAvg, this.CollectionWeightStorageItem[6].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label8Col1Row, this.CollectionWeightStorageItem[7].Weight1, false, this.CollectionWeightStorageItem[7].Grade1);
|
||||
this.SetLabelText(this.label8Col2Row, this.CollectionWeightStorageItem[7].Weight2, false, this.CollectionWeightStorageItem[7].Grade2);
|
||||
this.SetLabelText(this.label8Col3Row, this.CollectionWeightStorageItem[7].Weight3, false, this.CollectionWeightStorageItem[7].Grade3);
|
||||
this.SetLabelText(this.label8Col4Row, this.CollectionWeightStorageItem[7].Weight4, false, this.CollectionWeightStorageItem[7].Grade4);
|
||||
this.SetLabelText(this.label8Col5Row, this.CollectionWeightStorageItem[7].Weight5, false, this.CollectionWeightStorageItem[7].Grade5);
|
||||
this.SetLabelText(this.label8Col6Row, this.CollectionWeightStorageItem[7].Weight6, false, this.CollectionWeightStorageItem[7].Grade6);
|
||||
this.SetLabelText(this.label8Col7Row, this.CollectionWeightStorageItem[7].Weight7, false, this.CollectionWeightStorageItem[7].Grade7);
|
||||
this.SetLabelText(this.label8Col8Row, this.CollectionWeightStorageItem[7].Weight8, false, this.CollectionWeightStorageItem[7].Grade8);
|
||||
this.SetLabelText(this.label8Col9Row, this.CollectionWeightStorageItem[7].Weight9, false, this.CollectionWeightStorageItem[7].Grade9);
|
||||
this.SetLabelText(this.label8Col10Row, this.CollectionWeightStorageItem[7].Weight10, false, this.CollectionWeightStorageItem[7].Grade10);
|
||||
this.SetLabelText(this.label8Col5Avg, this.CollectionWeightStorageItem[7].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label8AllAvg, this.CollectionWeightStorageItem[7].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label9Col1Row, this.CollectionWeightStorageItem[8].Weight1, false, this.CollectionWeightStorageItem[8].Grade1);
|
||||
this.SetLabelText(this.label9Col2Row, this.CollectionWeightStorageItem[8].Weight2, false, this.CollectionWeightStorageItem[8].Grade2);
|
||||
this.SetLabelText(this.label9Col3Row, this.CollectionWeightStorageItem[8].Weight3, false, this.CollectionWeightStorageItem[8].Grade3);
|
||||
this.SetLabelText(this.label9Col4Row, this.CollectionWeightStorageItem[8].Weight4, false, this.CollectionWeightStorageItem[8].Grade4);
|
||||
this.SetLabelText(this.label9Col5Row, this.CollectionWeightStorageItem[8].Weight5, false, this.CollectionWeightStorageItem[8].Grade5);
|
||||
this.SetLabelText(this.label9Col6Row, this.CollectionWeightStorageItem[8].Weight6, false, this.CollectionWeightStorageItem[8].Grade6);
|
||||
this.SetLabelText(this.label9Col7Row, this.CollectionWeightStorageItem[8].Weight7, false, this.CollectionWeightStorageItem[8].Grade7);
|
||||
this.SetLabelText(this.label9Col8Row, this.CollectionWeightStorageItem[8].Weight8, false, this.CollectionWeightStorageItem[8].Grade8);
|
||||
this.SetLabelText(this.label9Col9Row, this.CollectionWeightStorageItem[8].Weight9, false, this.CollectionWeightStorageItem[8].Grade9);
|
||||
this.SetLabelText(this.label9Col10Row, this.CollectionWeightStorageItem[8].Weight10, false, this.CollectionWeightStorageItem[8].Grade10);
|
||||
this.SetLabelText(this.label9Col5Avg, this.CollectionWeightStorageItem[8].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label9AllAvg, this.CollectionWeightStorageItem[8].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label10Col1Row, this.CollectionWeightStorageItem[9].Weight1, false, this.CollectionWeightStorageItem[9].Grade1);
|
||||
this.SetLabelText(this.label10Col2Row, this.CollectionWeightStorageItem[9].Weight2, false, this.CollectionWeightStorageItem[9].Grade2);
|
||||
this.SetLabelText(this.label10Col3Row, this.CollectionWeightStorageItem[9].Weight3, false, this.CollectionWeightStorageItem[9].Grade3);
|
||||
this.SetLabelText(this.label10Col4Row, this.CollectionWeightStorageItem[9].Weight4, false, this.CollectionWeightStorageItem[9].Grade4);
|
||||
this.SetLabelText(this.label10Col5Row, this.CollectionWeightStorageItem[9].Weight5, false, this.CollectionWeightStorageItem[9].Grade5);
|
||||
this.SetLabelText(this.label10Col6Row, this.CollectionWeightStorageItem[9].Weight6, false, this.CollectionWeightStorageItem[9].Grade6);
|
||||
this.SetLabelText(this.label10Col7Row, this.CollectionWeightStorageItem[9].Weight7, false, this.CollectionWeightStorageItem[9].Grade7);
|
||||
this.SetLabelText(this.label10Col8Row, this.CollectionWeightStorageItem[9].Weight8, false, this.CollectionWeightStorageItem[9].Grade8);
|
||||
this.SetLabelText(this.label10Col9Row, this.CollectionWeightStorageItem[9].Weight9, false, this.CollectionWeightStorageItem[9].Grade9);
|
||||
this.SetLabelText(this.label10Col10Row, this.CollectionWeightStorageItem[9].Weight10, false, this.CollectionWeightStorageItem[9].Grade10);
|
||||
this.SetLabelText(this.label10Col5Avg, this.CollectionWeightStorageItem[9].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label10AllAvg, this.CollectionWeightStorageItem[9].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
this.SetLabelText(this.label11Col1Row, this.CollectionWeightStorageItem[10].Weight1, false, this.CollectionWeightStorageItem[10].Grade1);
|
||||
this.SetLabelText(this.label11Col2Row, this.CollectionWeightStorageItem[10].Weight2, false, this.CollectionWeightStorageItem[10].Grade2);
|
||||
this.SetLabelText(this.label11Col3Row, this.CollectionWeightStorageItem[10].Weight3, false, this.CollectionWeightStorageItem[10].Grade3);
|
||||
this.SetLabelText(this.label11Col4Row, this.CollectionWeightStorageItem[10].Weight4, false, this.CollectionWeightStorageItem[10].Grade4);
|
||||
this.SetLabelText(this.label11Col5Row, this.CollectionWeightStorageItem[10].Weight5, false, this.CollectionWeightStorageItem[10].Grade5);
|
||||
this.SetLabelText(this.label11Col6Row, this.CollectionWeightStorageItem[10].Weight6, false, this.CollectionWeightStorageItem[10].Grade6);
|
||||
this.SetLabelText(this.label11Col7Row, this.CollectionWeightStorageItem[10].Weight7, false, this.CollectionWeightStorageItem[10].Grade7);
|
||||
this.SetLabelText(this.label11Col8Row, this.CollectionWeightStorageItem[10].Weight8, false, this.CollectionWeightStorageItem[10].Grade8);
|
||||
this.SetLabelText(this.label11Col9Row, this.CollectionWeightStorageItem[10].Weight9, false, this.CollectionWeightStorageItem[10].Grade9);
|
||||
this.SetLabelText(this.label11Col10Row, this.CollectionWeightStorageItem[10].Weight10, false, this.CollectionWeightStorageItem[10].Grade10);
|
||||
this.SetLabelText(this.label11Col5Avg, this.CollectionWeightStorageItem[10].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label11AllAvg, this.CollectionWeightStorageItem[10].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
private void UpdateTotalAverage(bool totalAverageView)
|
||||
{
|
||||
if (totalAverageView == true)
|
||||
{
|
||||
this.SetLabelText(this.label1AllAvg, this.CollectionWeightStorageItem[0].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label2AllAvg, this.CollectionWeightStorageItem[1].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label3AllAvg, this.CollectionWeightStorageItem[2].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label4AllAvg, this.CollectionWeightStorageItem[3].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label5AllAvg, this.CollectionWeightStorageItem[4].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label6AllAvg, this.CollectionWeightStorageItem[5].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label7AllAvg, this.CollectionWeightStorageItem[6].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label8AllAvg, this.CollectionWeightStorageItem[7].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label9AllAvg, this.CollectionWeightStorageItem[8].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label10AllAvg, this.CollectionWeightStorageItem[9].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label11AllAvg, this.CollectionWeightStorageItem[10].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.SetLabelText(this.label1AllAvg, this.CollectionWeightStorageItem[0].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label2AllAvg, this.CollectionWeightStorageItem[1].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label3AllAvg, this.CollectionWeightStorageItem[2].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label4AllAvg, this.CollectionWeightStorageItem[3].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label5AllAvg, this.CollectionWeightStorageItem[4].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label6AllAvg, this.CollectionWeightStorageItem[5].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label7AllAvg, this.CollectionWeightStorageItem[6].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label8AllAvg, this.CollectionWeightStorageItem[7].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label9AllAvg, this.CollectionWeightStorageItem[8].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label10AllAvg, this.CollectionWeightStorageItem[9].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
this.SetLabelText(this.label11AllAvg, this.CollectionWeightStorageItem[10].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
}
|
||||
|
||||
public void UpdateEquipmentStatusDisplay(DataStore.EquipmentStatus status)
|
||||
{
|
||||
}
|
||||
public void UpdateCurrentProductDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
// 초기화
|
||||
}
|
||||
public void UpdateBypassDisplay(Collection<WeightData> weightData)
|
||||
{
|
||||
for (int i = 0; i < this.CollectionPictureBoxBypass.Count; i++)
|
||||
{
|
||||
if (weightData[i].IsBypassMode == true)
|
||||
this.CollectionPictureBoxBypass[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxBypass[i].Visible = false;
|
||||
}
|
||||
}
|
||||
public void UpdateStopWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
string value = "";
|
||||
|
||||
if (this.ParentForm.ParentForm.SystemConfig.EquipmentColumns > weightDatas.Count)
|
||||
return;
|
||||
|
||||
if (status == DataStore.EquipmentStatus.Stop)
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
// 영점표시
|
||||
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
|
||||
this.CollectionPictureBoxZero[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxZero[i].Visible = false;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
// 영점표시
|
||||
if (weightDatas[i].Status == DataStore.WeightStatus.WeightZero)
|
||||
this.CollectionPictureBoxZero[i].Visible = true;
|
||||
else
|
||||
this.CollectionPictureBoxZero[i].Visible = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
public void UpdateStartWeightDisplay(DataStore.EquipmentStatus status, Collection<WeightData> weightDatas)
|
||||
{
|
||||
this.UpdateStartWeightDisplay1(status, weightDatas[0]);
|
||||
this.UpdateStartWeightDisplay2(status, weightDatas[1]);
|
||||
this.UpdateStartWeightDisplay3(status, weightDatas[2]);
|
||||
this.UpdateStartWeightDisplay4(status, weightDatas[3]);
|
||||
this.UpdateStartWeightDisplay5(status, weightDatas[4]);
|
||||
this.UpdateStartWeightDisplay6(status, weightDatas[5]);
|
||||
this.UpdateStartWeightDisplay7(status, weightDatas[6]);
|
||||
this.UpdateStartWeightDisplay8(status, weightDatas[7]);
|
||||
this.UpdateStartWeightDisplay9(status, weightDatas[8]);
|
||||
this.UpdateStartWeightDisplay10(status, weightDatas[9]);
|
||||
this.UpdateStartWeightDisplay11(status, weightDatas[10]);
|
||||
}
|
||||
public void UpdateStartWeightDisplay1(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[0].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label1Col1Row, this.CollectionWeightStorageItem[0].Weight1, false, this.CollectionWeightStorageItem[0].Grade1);
|
||||
this.SetLabelText(this.label1Col2Row, this.CollectionWeightStorageItem[0].Weight2, false, this.CollectionWeightStorageItem[0].Grade2);
|
||||
this.SetLabelText(this.label1Col3Row, this.CollectionWeightStorageItem[0].Weight3, false, this.CollectionWeightStorageItem[0].Grade3);
|
||||
this.SetLabelText(this.label1Col4Row, this.CollectionWeightStorageItem[0].Weight4, false, this.CollectionWeightStorageItem[0].Grade4);
|
||||
this.SetLabelText(this.label1Col5Row, this.CollectionWeightStorageItem[0].Weight5, false, this.CollectionWeightStorageItem[0].Grade5);
|
||||
this.SetLabelText(this.label1Col6Row, this.CollectionWeightStorageItem[0].Weight6, false, this.CollectionWeightStorageItem[0].Grade6);
|
||||
this.SetLabelText(this.label1Col7Row, this.CollectionWeightStorageItem[0].Weight7, false, this.CollectionWeightStorageItem[0].Grade7);
|
||||
this.SetLabelText(this.label1Col8Row, this.CollectionWeightStorageItem[0].Weight8, false, this.CollectionWeightStorageItem[0].Grade8);
|
||||
this.SetLabelText(this.label1Col9Row, this.CollectionWeightStorageItem[0].Weight9, false, this.CollectionWeightStorageItem[0].Grade9);
|
||||
this.SetLabelText(this.label1Col10Row, this.CollectionWeightStorageItem[0].Weight10, false, this.CollectionWeightStorageItem[0].Grade10);
|
||||
this.SetLabelText(this.label1Col5Avg, this.CollectionWeightStorageItem[0].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label1AllAvg, this.CollectionWeightStorageItem[0].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label1AllAvg, this.CollectionWeightStorageItem[0].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay2(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[1].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label2Col1Row, this.CollectionWeightStorageItem[1].Weight1, false, this.CollectionWeightStorageItem[1].Grade1);
|
||||
this.SetLabelText(this.label2Col2Row, this.CollectionWeightStorageItem[1].Weight2, false, this.CollectionWeightStorageItem[1].Grade2);
|
||||
this.SetLabelText(this.label2Col3Row, this.CollectionWeightStorageItem[1].Weight3, false, this.CollectionWeightStorageItem[1].Grade3);
|
||||
this.SetLabelText(this.label2Col4Row, this.CollectionWeightStorageItem[1].Weight4, false, this.CollectionWeightStorageItem[1].Grade4);
|
||||
this.SetLabelText(this.label2Col5Row, this.CollectionWeightStorageItem[1].Weight5, false, this.CollectionWeightStorageItem[1].Grade5);
|
||||
this.SetLabelText(this.label2Col6Row, this.CollectionWeightStorageItem[1].Weight6, false, this.CollectionWeightStorageItem[1].Grade6);
|
||||
this.SetLabelText(this.label2Col7Row, this.CollectionWeightStorageItem[1].Weight7, false, this.CollectionWeightStorageItem[1].Grade7);
|
||||
this.SetLabelText(this.label2Col8Row, this.CollectionWeightStorageItem[1].Weight8, false, this.CollectionWeightStorageItem[1].Grade8);
|
||||
this.SetLabelText(this.label2Col9Row, this.CollectionWeightStorageItem[1].Weight9, false, this.CollectionWeightStorageItem[1].Grade9);
|
||||
this.SetLabelText(this.label2Col10Row, this.CollectionWeightStorageItem[1].Weight10, false, this.CollectionWeightStorageItem[1].Grade10);
|
||||
this.SetLabelText(this.label2Col5Avg, this.CollectionWeightStorageItem[1].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label2AllAvg, this.CollectionWeightStorageItem[1].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label2AllAvg, this.CollectionWeightStorageItem[1].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay3(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[2].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label3Col1Row, this.CollectionWeightStorageItem[2].Weight1, false, this.CollectionWeightStorageItem[2].Grade1);
|
||||
this.SetLabelText(this.label3Col2Row, this.CollectionWeightStorageItem[2].Weight2, false, this.CollectionWeightStorageItem[2].Grade2);
|
||||
this.SetLabelText(this.label3Col3Row, this.CollectionWeightStorageItem[2].Weight3, false, this.CollectionWeightStorageItem[2].Grade3);
|
||||
this.SetLabelText(this.label3Col4Row, this.CollectionWeightStorageItem[2].Weight4, false, this.CollectionWeightStorageItem[2].Grade4);
|
||||
this.SetLabelText(this.label3Col5Row, this.CollectionWeightStorageItem[2].Weight5, false, this.CollectionWeightStorageItem[2].Grade5);
|
||||
this.SetLabelText(this.label3Col6Row, this.CollectionWeightStorageItem[2].Weight6, false, this.CollectionWeightStorageItem[2].Grade6);
|
||||
this.SetLabelText(this.label3Col7Row, this.CollectionWeightStorageItem[2].Weight7, false, this.CollectionWeightStorageItem[2].Grade7);
|
||||
this.SetLabelText(this.label3Col8Row, this.CollectionWeightStorageItem[2].Weight8, false, this.CollectionWeightStorageItem[2].Grade8);
|
||||
this.SetLabelText(this.label3Col9Row, this.CollectionWeightStorageItem[2].Weight9, false, this.CollectionWeightStorageItem[2].Grade9);
|
||||
this.SetLabelText(this.label3Col10Row, this.CollectionWeightStorageItem[2].Weight10, false, this.CollectionWeightStorageItem[2].Grade10);
|
||||
this.SetLabelText(this.label3Col5Avg, this.CollectionWeightStorageItem[2].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label3AllAvg, this.CollectionWeightStorageItem[2].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label3AllAvg, this.CollectionWeightStorageItem[2].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay4(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[3].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label4Col1Row, this.CollectionWeightStorageItem[3].Weight1, false, this.CollectionWeightStorageItem[3].Grade1);
|
||||
this.SetLabelText(this.label4Col2Row, this.CollectionWeightStorageItem[3].Weight2, false, this.CollectionWeightStorageItem[3].Grade2);
|
||||
this.SetLabelText(this.label4Col3Row, this.CollectionWeightStorageItem[3].Weight3, false, this.CollectionWeightStorageItem[3].Grade3);
|
||||
this.SetLabelText(this.label4Col4Row, this.CollectionWeightStorageItem[3].Weight4, false, this.CollectionWeightStorageItem[3].Grade4);
|
||||
this.SetLabelText(this.label4Col5Row, this.CollectionWeightStorageItem[3].Weight5, false, this.CollectionWeightStorageItem[3].Grade5);
|
||||
this.SetLabelText(this.label4Col6Row, this.CollectionWeightStorageItem[3].Weight6, false, this.CollectionWeightStorageItem[3].Grade6);
|
||||
this.SetLabelText(this.label4Col7Row, this.CollectionWeightStorageItem[3].Weight7, false, this.CollectionWeightStorageItem[3].Grade7);
|
||||
this.SetLabelText(this.label4Col8Row, this.CollectionWeightStorageItem[3].Weight8, false, this.CollectionWeightStorageItem[3].Grade8);
|
||||
this.SetLabelText(this.label4Col9Row, this.CollectionWeightStorageItem[3].Weight9, false, this.CollectionWeightStorageItem[3].Grade9);
|
||||
this.SetLabelText(this.label4Col10Row, this.CollectionWeightStorageItem[3].Weight10, false, this.CollectionWeightStorageItem[3].Grade10);
|
||||
this.SetLabelText(this.label4Col5Avg, this.CollectionWeightStorageItem[3].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label4AllAvg, this.CollectionWeightStorageItem[3].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label4AllAvg, this.CollectionWeightStorageItem[3].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay5(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[4].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label5Col1Row, this.CollectionWeightStorageItem[4].Weight1, false, this.CollectionWeightStorageItem[4].Grade1);
|
||||
this.SetLabelText(this.label5Col2Row, this.CollectionWeightStorageItem[4].Weight2, false, this.CollectionWeightStorageItem[4].Grade2);
|
||||
this.SetLabelText(this.label5Col3Row, this.CollectionWeightStorageItem[4].Weight3, false, this.CollectionWeightStorageItem[4].Grade3);
|
||||
this.SetLabelText(this.label5Col4Row, this.CollectionWeightStorageItem[4].Weight4, false, this.CollectionWeightStorageItem[4].Grade4);
|
||||
this.SetLabelText(this.label5Col5Row, this.CollectionWeightStorageItem[4].Weight5, false, this.CollectionWeightStorageItem[4].Grade5);
|
||||
this.SetLabelText(this.label5Col6Row, this.CollectionWeightStorageItem[4].Weight6, false, this.CollectionWeightStorageItem[4].Grade6);
|
||||
this.SetLabelText(this.label5Col7Row, this.CollectionWeightStorageItem[4].Weight7, false, this.CollectionWeightStorageItem[4].Grade7);
|
||||
this.SetLabelText(this.label5Col8Row, this.CollectionWeightStorageItem[4].Weight8, false, this.CollectionWeightStorageItem[4].Grade8);
|
||||
this.SetLabelText(this.label5Col9Row, this.CollectionWeightStorageItem[4].Weight9, false, this.CollectionWeightStorageItem[4].Grade9);
|
||||
this.SetLabelText(this.label5Col10Row, this.CollectionWeightStorageItem[4].Weight10, false, this.CollectionWeightStorageItem[4].Grade10);
|
||||
this.SetLabelText(this.label5Col5Avg, this.CollectionWeightStorageItem[4].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label5AllAvg, this.CollectionWeightStorageItem[4].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label5AllAvg, this.CollectionWeightStorageItem[4].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay6(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[5].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label6Col1Row, this.CollectionWeightStorageItem[5].Weight1, false, this.CollectionWeightStorageItem[5].Grade1);
|
||||
this.SetLabelText(this.label6Col2Row, this.CollectionWeightStorageItem[5].Weight2, false, this.CollectionWeightStorageItem[5].Grade2);
|
||||
this.SetLabelText(this.label6Col3Row, this.CollectionWeightStorageItem[5].Weight3, false, this.CollectionWeightStorageItem[5].Grade3);
|
||||
this.SetLabelText(this.label6Col4Row, this.CollectionWeightStorageItem[5].Weight4, false, this.CollectionWeightStorageItem[5].Grade4);
|
||||
this.SetLabelText(this.label6Col5Row, this.CollectionWeightStorageItem[5].Weight5, false, this.CollectionWeightStorageItem[5].Grade5);
|
||||
this.SetLabelText(this.label6Col6Row, this.CollectionWeightStorageItem[5].Weight6, false, this.CollectionWeightStorageItem[5].Grade6);
|
||||
this.SetLabelText(this.label6Col7Row, this.CollectionWeightStorageItem[5].Weight7, false, this.CollectionWeightStorageItem[5].Grade7);
|
||||
this.SetLabelText(this.label6Col8Row, this.CollectionWeightStorageItem[5].Weight8, false, this.CollectionWeightStorageItem[5].Grade8);
|
||||
this.SetLabelText(this.label6Col9Row, this.CollectionWeightStorageItem[5].Weight9, false, this.CollectionWeightStorageItem[5].Grade9);
|
||||
this.SetLabelText(this.label6Col10Row, this.CollectionWeightStorageItem[5].Weight10, false, this.CollectionWeightStorageItem[5].Grade10);
|
||||
this.SetLabelText(this.label6Col5Avg, this.CollectionWeightStorageItem[5].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label6AllAvg, this.CollectionWeightStorageItem[5].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label6AllAvg, this.CollectionWeightStorageItem[5].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay7(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[6].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label7Col1Row, this.CollectionWeightStorageItem[6].Weight1, false, this.CollectionWeightStorageItem[6].Grade1);
|
||||
this.SetLabelText(this.label7Col2Row, this.CollectionWeightStorageItem[6].Weight2, false, this.CollectionWeightStorageItem[6].Grade2);
|
||||
this.SetLabelText(this.label7Col3Row, this.CollectionWeightStorageItem[6].Weight3, false, this.CollectionWeightStorageItem[6].Grade3);
|
||||
this.SetLabelText(this.label7Col4Row, this.CollectionWeightStorageItem[6].Weight4, false, this.CollectionWeightStorageItem[6].Grade4);
|
||||
this.SetLabelText(this.label7Col5Row, this.CollectionWeightStorageItem[6].Weight5, false, this.CollectionWeightStorageItem[6].Grade5);
|
||||
this.SetLabelText(this.label7Col6Row, this.CollectionWeightStorageItem[6].Weight6, false, this.CollectionWeightStorageItem[6].Grade6);
|
||||
this.SetLabelText(this.label7Col7Row, this.CollectionWeightStorageItem[6].Weight7, false, this.CollectionWeightStorageItem[6].Grade7);
|
||||
this.SetLabelText(this.label7Col8Row, this.CollectionWeightStorageItem[6].Weight8, false, this.CollectionWeightStorageItem[6].Grade8);
|
||||
this.SetLabelText(this.label7Col9Row, this.CollectionWeightStorageItem[6].Weight9, false, this.CollectionWeightStorageItem[6].Grade9);
|
||||
this.SetLabelText(this.label7Col10Row, this.CollectionWeightStorageItem[6].Weight10, false, this.CollectionWeightStorageItem[6].Grade10);
|
||||
this.SetLabelText(this.label7Col5Avg, this.CollectionWeightStorageItem[6].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label7AllAvg, this.CollectionWeightStorageItem[6].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label7AllAvg, this.CollectionWeightStorageItem[6].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay8(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[7].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label8Col1Row, this.CollectionWeightStorageItem[7].Weight1, false, this.CollectionWeightStorageItem[7].Grade1);
|
||||
this.SetLabelText(this.label8Col2Row, this.CollectionWeightStorageItem[7].Weight2, false, this.CollectionWeightStorageItem[7].Grade2);
|
||||
this.SetLabelText(this.label8Col3Row, this.CollectionWeightStorageItem[7].Weight3, false, this.CollectionWeightStorageItem[7].Grade3);
|
||||
this.SetLabelText(this.label8Col4Row, this.CollectionWeightStorageItem[7].Weight4, false, this.CollectionWeightStorageItem[7].Grade4);
|
||||
this.SetLabelText(this.label8Col5Row, this.CollectionWeightStorageItem[7].Weight5, false, this.CollectionWeightStorageItem[7].Grade5);
|
||||
this.SetLabelText(this.label8Col6Row, this.CollectionWeightStorageItem[7].Weight6, false, this.CollectionWeightStorageItem[7].Grade6);
|
||||
this.SetLabelText(this.label8Col7Row, this.CollectionWeightStorageItem[7].Weight7, false, this.CollectionWeightStorageItem[7].Grade7);
|
||||
this.SetLabelText(this.label8Col8Row, this.CollectionWeightStorageItem[7].Weight8, false, this.CollectionWeightStorageItem[7].Grade8);
|
||||
this.SetLabelText(this.label8Col9Row, this.CollectionWeightStorageItem[7].Weight9, false, this.CollectionWeightStorageItem[7].Grade9);
|
||||
this.SetLabelText(this.label8Col10Row, this.CollectionWeightStorageItem[7].Weight10, false, this.CollectionWeightStorageItem[7].Grade10);
|
||||
this.SetLabelText(this.label8Col5Avg, this.CollectionWeightStorageItem[7].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label8AllAvg, this.CollectionWeightStorageItem[7].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label8AllAvg, this.CollectionWeightStorageItem[7].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay9(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[8].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label9Col1Row, this.CollectionWeightStorageItem[8].Weight1, false, this.CollectionWeightStorageItem[8].Grade1);
|
||||
this.SetLabelText(this.label9Col2Row, this.CollectionWeightStorageItem[8].Weight2, false, this.CollectionWeightStorageItem[8].Grade2);
|
||||
this.SetLabelText(this.label9Col3Row, this.CollectionWeightStorageItem[8].Weight3, false, this.CollectionWeightStorageItem[8].Grade3);
|
||||
this.SetLabelText(this.label9Col4Row, this.CollectionWeightStorageItem[8].Weight4, false, this.CollectionWeightStorageItem[8].Grade4);
|
||||
this.SetLabelText(this.label9Col5Row, this.CollectionWeightStorageItem[8].Weight5, false, this.CollectionWeightStorageItem[8].Grade5);
|
||||
this.SetLabelText(this.label9Col6Row, this.CollectionWeightStorageItem[8].Weight6, false, this.CollectionWeightStorageItem[8].Grade6);
|
||||
this.SetLabelText(this.label9Col7Row, this.CollectionWeightStorageItem[8].Weight7, false, this.CollectionWeightStorageItem[8].Grade7);
|
||||
this.SetLabelText(this.label9Col8Row, this.CollectionWeightStorageItem[8].Weight8, false, this.CollectionWeightStorageItem[8].Grade8);
|
||||
this.SetLabelText(this.label9Col9Row, this.CollectionWeightStorageItem[8].Weight9, false, this.CollectionWeightStorageItem[8].Grade9);
|
||||
this.SetLabelText(this.label9Col10Row, this.CollectionWeightStorageItem[8].Weight10, false, this.CollectionWeightStorageItem[8].Grade10);
|
||||
this.SetLabelText(this.label9Col5Avg, this.CollectionWeightStorageItem[8].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label9AllAvg, this.CollectionWeightStorageItem[8].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label9AllAvg, this.CollectionWeightStorageItem[8].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay10(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[9].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label10Col1Row, this.CollectionWeightStorageItem[9].Weight1, false, this.CollectionWeightStorageItem[9].Grade1);
|
||||
this.SetLabelText(this.label10Col2Row, this.CollectionWeightStorageItem[9].Weight2, false, this.CollectionWeightStorageItem[9].Grade2);
|
||||
this.SetLabelText(this.label10Col3Row, this.CollectionWeightStorageItem[9].Weight3, false, this.CollectionWeightStorageItem[9].Grade3);
|
||||
this.SetLabelText(this.label10Col4Row, this.CollectionWeightStorageItem[9].Weight4, false, this.CollectionWeightStorageItem[9].Grade4);
|
||||
this.SetLabelText(this.label10Col5Row, this.CollectionWeightStorageItem[9].Weight5, false, this.CollectionWeightStorageItem[9].Grade5);
|
||||
this.SetLabelText(this.label10Col6Row, this.CollectionWeightStorageItem[9].Weight6, false, this.CollectionWeightStorageItem[9].Grade6);
|
||||
this.SetLabelText(this.label10Col7Row, this.CollectionWeightStorageItem[9].Weight7, false, this.CollectionWeightStorageItem[9].Grade7);
|
||||
this.SetLabelText(this.label10Col8Row, this.CollectionWeightStorageItem[9].Weight8, false, this.CollectionWeightStorageItem[9].Grade8);
|
||||
this.SetLabelText(this.label10Col9Row, this.CollectionWeightStorageItem[9].Weight9, false, this.CollectionWeightStorageItem[9].Grade9);
|
||||
this.SetLabelText(this.label10Col10Row, this.CollectionWeightStorageItem[9].Weight10, false, this.CollectionWeightStorageItem[9].Grade10);
|
||||
this.SetLabelText(this.label10Col5Avg, this.CollectionWeightStorageItem[9].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label10AllAvg, this.CollectionWeightStorageItem[9].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label10AllAvg, this.CollectionWeightStorageItem[9].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
public void UpdateStartWeightDisplay11(DataStore.EquipmentStatus status, WeightData weightData)
|
||||
{
|
||||
if (weightData.JudgmentStatus == DataStore.JudgmentStatus.Empty)
|
||||
return;
|
||||
|
||||
this.CollectionWeightStorageItem[10].SetValue(weightData.Weight, weightData.JudgmentStatus);
|
||||
|
||||
this.SetLabelText(this.label11Col1Row, this.CollectionWeightStorageItem[10].Weight1, false, this.CollectionWeightStorageItem[10].Grade1);
|
||||
this.SetLabelText(this.label11Col2Row, this.CollectionWeightStorageItem[10].Weight2, false, this.CollectionWeightStorageItem[10].Grade2);
|
||||
this.SetLabelText(this.label11Col3Row, this.CollectionWeightStorageItem[10].Weight3, false, this.CollectionWeightStorageItem[10].Grade3);
|
||||
this.SetLabelText(this.label11Col4Row, this.CollectionWeightStorageItem[10].Weight4, false, this.CollectionWeightStorageItem[10].Grade4);
|
||||
this.SetLabelText(this.label11Col5Row, this.CollectionWeightStorageItem[10].Weight5, false, this.CollectionWeightStorageItem[10].Grade5);
|
||||
this.SetLabelText(this.label11Col6Row, this.CollectionWeightStorageItem[10].Weight6, false, this.CollectionWeightStorageItem[10].Grade6);
|
||||
this.SetLabelText(this.label11Col7Row, this.CollectionWeightStorageItem[10].Weight7, false, this.CollectionWeightStorageItem[10].Grade7);
|
||||
this.SetLabelText(this.label11Col8Row, this.CollectionWeightStorageItem[10].Weight8, false, this.CollectionWeightStorageItem[10].Grade8);
|
||||
this.SetLabelText(this.label11Col9Row, this.CollectionWeightStorageItem[10].Weight9, false, this.CollectionWeightStorageItem[10].Grade9);
|
||||
this.SetLabelText(this.label11Col10Row, this.CollectionWeightStorageItem[10].Weight10, false, this.CollectionWeightStorageItem[10].Grade10);
|
||||
this.SetLabelText(this.label11Col5Avg, this.CollectionWeightStorageItem[10].GetWeightTenAverage(), false, DataStore.JudgmentStatus.Empty);
|
||||
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.SetLabelText(this.label11AllAvg, this.CollectionWeightStorageItem[10].GetWeightTotalAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
else
|
||||
this.SetLabelText(this.label11AllAvg, this.CollectionWeightStorageItem[10].GetWeightTotalPassAverage(), true, DataStore.JudgmentStatus.Empty);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Event Handler
|
||||
private void labelAllAvg_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.IsTotalAverageView == true)
|
||||
this.IsTotalAverageView = false;
|
||||
else
|
||||
this.IsTotalAverageView = true;
|
||||
|
||||
this.UpdateTotalAverage(this.IsTotalAverageView);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -105,7 +105,7 @@ namespace INT69DC_7C.Controls
|
|||
// WeightStorage
|
||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||
this.CollectionWeightStorageItem.Clear();
|
||||
for (int i = 0; i < 12; i++)
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||
|
||||
#region Add Label
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ namespace INT69DC_7C.Controls
|
|||
// WeightStorage
|
||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||
this.CollectionWeightStorageItem.Clear();
|
||||
for (int i = 0; i < 7; i++)
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||
|
||||
#region Add Label
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ namespace INT69DC_7C.Controls
|
|||
// WeightStorage
|
||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||
this.CollectionWeightStorageItem.Clear();
|
||||
for (int i = 0; i < 8; i++)
|
||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||
|
||||
#region Add Label
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@ namespace INT69DC_7C
|
|||
{
|
||||
public class DataStore
|
||||
{
|
||||
public delegate void EventHandlerAlarmStateChange(DataStore.TrackingAlarm alarm, string status);
|
||||
|
||||
#region Enum
|
||||
public enum EquipmentStatus
|
||||
{
|
||||
|
|
@ -569,13 +571,10 @@ namespace INT69DC_7C
|
|||
}
|
||||
public enum TrackingAlarm
|
||||
{
|
||||
None,
|
||||
a1_PressureError,
|
||||
a1_EntrySensorError,
|
||||
a2_LoadcellError,
|
||||
a3_EntrySensorError,
|
||||
a4_ServoTorqueAlarm,
|
||||
a5_ServoAlarm,
|
||||
a6_ServoOff,
|
||||
|
||||
a8_EmergencyStop,
|
||||
}
|
||||
public enum E_UserGroup_FileIndex
|
||||
{
|
||||
|
|
@ -878,6 +877,7 @@ namespace INT69DC_7C
|
|||
private bool m_IsAlarmTotalPassCntEnable;
|
||||
private bool m_IsOptPart11;
|
||||
private bool m_IsOptPrinter;
|
||||
private bool m_IsSerialDLL;
|
||||
|
||||
private int m_DecimalPlaces;
|
||||
private int m_EquipmentColumns;
|
||||
|
|
@ -1056,6 +1056,11 @@ namespace INT69DC_7C
|
|||
get { return this.m_IsOptPrinter; }
|
||||
set { this.m_IsOptPrinter = value; }
|
||||
}
|
||||
public bool IsSerialDLL
|
||||
{
|
||||
get { return this.m_IsSerialDLL; }
|
||||
set { this.m_IsSerialDLL = value; }
|
||||
}
|
||||
|
||||
public int DecimalPlaces
|
||||
{
|
||||
|
|
@ -1287,6 +1292,7 @@ namespace INT69DC_7C
|
|||
this.IsAlarmTotalPassCntEnable = false;
|
||||
this.IsOptPart11 = false;
|
||||
this.IsOptPrinter = false;
|
||||
this.IsSerialDLL = false;
|
||||
|
||||
this.DecimalPlaces = 1;
|
||||
this.EquipmentColumns = 10;
|
||||
|
|
@ -1413,7 +1419,7 @@ namespace INT69DC_7C
|
|||
public bool DummyBool12;
|
||||
public bool DummyBool13;
|
||||
public bool DummyBool14;
|
||||
public bool DummyBool15;
|
||||
public bool IsSerialDLL;
|
||||
public bool IsOptPrinter;
|
||||
public bool IsOptPart11;
|
||||
public bool IsAlarmTotalPassCntEnable;
|
||||
|
|
@ -4542,4 +4548,217 @@ namespace INT69DC_7C
|
|||
#endregion
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region AlarmList
|
||||
public class AlarmList
|
||||
{
|
||||
#region Field
|
||||
private bool m_IsEntrySensorError;
|
||||
private bool m_IsLoadcellError;
|
||||
private bool m_IsEmergencyStop;
|
||||
|
||||
private bool m_IsBuzzerStatus;
|
||||
|
||||
public event DataStore.EventHandlerAlarmStateChange EventAlarmStateChange;
|
||||
#endregion
|
||||
|
||||
#region Constructor
|
||||
public AlarmList()
|
||||
{
|
||||
this.Initialize();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Property
|
||||
public bool IsEntrySensorError
|
||||
{
|
||||
get { return this.m_IsEntrySensorError; }
|
||||
set { this.m_IsEntrySensorError = value; }
|
||||
}
|
||||
public bool IsLoadcellError
|
||||
{
|
||||
get { return this.m_IsLoadcellError; }
|
||||
set { this.m_IsLoadcellError = value; }
|
||||
}
|
||||
public bool IsEmergencyStop
|
||||
{
|
||||
get { return this.m_IsEmergencyStop; }
|
||||
set { this.m_IsEmergencyStop = value; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 현재 부자가 동작하고 있는지 상태
|
||||
/// </summary>
|
||||
public bool IsBuzzerStatus
|
||||
{
|
||||
get { return this.m_IsBuzzerStatus; }
|
||||
set { this.m_IsBuzzerStatus = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Method
|
||||
private void Initialize()
|
||||
{
|
||||
this.IsEntrySensorError = false;
|
||||
this.IsLoadcellError = false;
|
||||
this.IsEmergencyStop = false;
|
||||
|
||||
this.IsBuzzerStatus = false;
|
||||
}
|
||||
|
||||
public void SetAlarm(string alarm)
|
||||
{
|
||||
string sValue1 = "", sValue2 = "", sValue3 = "", sValue4 = "", sValue5 = "", sValue6 = "", sValue7 = "", sValue8 = "";
|
||||
|
||||
if (alarm.Length != 8)
|
||||
return;
|
||||
|
||||
sValue1 = Convert.ToString(Convert.ToInt16(alarm.Substring(0, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue2 = Convert.ToString(Convert.ToInt16(alarm.Substring(1, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue3 = Convert.ToString(Convert.ToInt16(alarm.Substring(2, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue4 = Convert.ToString(Convert.ToInt16(alarm.Substring(3, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue5 = Convert.ToString(Convert.ToInt16(alarm.Substring(4, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue6 = Convert.ToString(Convert.ToInt16(alarm.Substring(5, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue7 = Convert.ToString(Convert.ToInt16(alarm.Substring(6, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
sValue8 = Convert.ToString(Convert.ToInt16(alarm.Substring(7, 1), 16), 2).PadLeft((4 <= 1) ? 1 : 4, '0');
|
||||
|
||||
#region 알람 16-
|
||||
if (sValue4[0] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 15-
|
||||
if (sValue4[1] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 14-
|
||||
if (sValue4[2] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 13-
|
||||
if (sValue4[3] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
|
||||
#region 알람 12-
|
||||
if (sValue3[0] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 11-
|
||||
if (sValue3[1] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 10-
|
||||
if (sValue3[2] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 9-
|
||||
if (sValue3[3] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
|
||||
#region 알람 8-비상정지
|
||||
if (sValue2[0] == '0')
|
||||
{
|
||||
if (this.IsEmergencyStop != false)
|
||||
{
|
||||
this.IsEmergencyStop = false;
|
||||
this.EventAlarmStateChange(DataStore.TrackingAlarm.a8_EmergencyStop, "OFF");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.IsEmergencyStop != true)
|
||||
{
|
||||
this.IsEmergencyStop = true;
|
||||
this.EventAlarmStateChange(DataStore.TrackingAlarm.a8_EmergencyStop, "ON");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region 알람 7-
|
||||
if (sValue2[1] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 6-
|
||||
if (sValue2[2] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 5-
|
||||
if (sValue2[3] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
|
||||
#region 알람 4-
|
||||
if (sValue1[0] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 3-
|
||||
if (sValue1[1] == '0')
|
||||
{ }
|
||||
else
|
||||
{ }
|
||||
#endregion
|
||||
#region 알람 2-셀 에러
|
||||
if (sValue1[2] == '0')
|
||||
{
|
||||
if (this.IsLoadcellError != false)
|
||||
{
|
||||
this.IsLoadcellError = false;
|
||||
this.EventAlarmStateChange(DataStore.TrackingAlarm.a2_LoadcellError, "OFF");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.IsLoadcellError != true)
|
||||
{
|
||||
this.IsLoadcellError = true;
|
||||
this.EventAlarmStateChange(DataStore.TrackingAlarm.a2_LoadcellError, "ON");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
#region 알람 1-입력센서 에러
|
||||
if (sValue1[3] == '0')
|
||||
{
|
||||
if (this.IsEntrySensorError != false)
|
||||
{
|
||||
this.IsEntrySensorError = false;
|
||||
this.EventAlarmStateChange(DataStore.TrackingAlarm.a1_EntrySensorError, "OFF");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.IsEntrySensorError != true)
|
||||
{
|
||||
this.IsEntrySensorError = true;
|
||||
this.EventAlarmStateChange(DataStore.TrackingAlarm.a1_EntrySensorError, "ON");
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@
|
|||
this.labelMessage2.BackPictureBox2 = null;
|
||||
this.labelMessage2.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage2.InitVisible = true;
|
||||
this.labelMessage2.LineSpacing = 0F;
|
||||
this.labelMessage2.Location = new System.Drawing.Point(78, 90);
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
this.labelMessage1.BackPictureBox2 = null;
|
||||
this.labelMessage1.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage1.InitVisible = true;
|
||||
this.labelMessage1.LineSpacing = 0F;
|
||||
this.labelMessage1.Location = new System.Drawing.Point(78, 60);
|
||||
|
|
@ -157,7 +157,7 @@
|
|||
// buttonOK
|
||||
//
|
||||
this.buttonOK.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.buttonOK.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOK.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOK.ForeColor = System.Drawing.Color.Black;
|
||||
this.buttonOK.Location = new System.Drawing.Point(335, 135);
|
||||
this.buttonOK.Name = "buttonOK";
|
||||
|
|
@ -174,11 +174,11 @@
|
|||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(200)))), ((int)(((byte)(250)))));
|
||||
this.ClientSize = new System.Drawing.Size(450, 170);
|
||||
this.ControlBox = false;
|
||||
this.Controls.Add(this.pictureBoxAsterisk);
|
||||
this.Controls.Add(this.pictureBoxHand);
|
||||
this.Controls.Add(this.pictureBoxExclamation);
|
||||
this.Controls.Add(this.labelMessage2);
|
||||
this.Controls.Add(this.labelMessage1);
|
||||
this.Controls.Add(this.pictureBoxExclamation);
|
||||
this.Controls.Add(this.pictureBoxHand);
|
||||
this.Controls.Add(this.pictureBoxAsterisk);
|
||||
this.Controls.Add(this.pictureBoxQuestion);
|
||||
this.Controls.Add(this.buttonOK);
|
||||
this.Controls.Add(this.labelErrorCode);
|
||||
|
|
|
|||
|
|
@ -168,18 +168,17 @@
|
|||
RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP
|
||||
lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l
|
||||
f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAlJJREFUeF7t1DERg0AA
|
||||
AEE8IgAjX0QBTQwhJGLyBTPUz7W7InYDoDqO4wvAopnn3eh5nj8AFs08NQrwnkYBEo0CJBoFSDQKkGgU
|
||||
INEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMA
|
||||
iUYBEo0CJBoFSDQKkDyNjjEuABbNPDUK8J5GARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVI
|
||||
NAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECi
|
||||
UYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKN
|
||||
AiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgU
|
||||
INEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMA
|
||||
iUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVI
|
||||
NAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECi
|
||||
UYBEowCJRgESjQIkGgVINAqQaBQg0ShA8jS67/sHgEUzz7tRAF7atj9NV5Nwb7nFrAAAAABJRU5ErkJg
|
||||
gg==
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAlFJREFUeF7t1DERwzAA
|
||||
ALFyNAAT8VAEXkqoQAqmS+4yO79KIPR6ARDNOT8AHJpzXo3uvX8AHNp7axTgOY0CJBoFSDQKkGgUINEo
|
||||
QKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYB
|
||||
Eo0CJBoFSDQKkGgUILkbXWt9ATi01tIowHMaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg
|
||||
0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJ
|
||||
RgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0
|
||||
CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJR
|
||||
gESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0C
|
||||
JBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg
|
||||
0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJ
|
||||
RgESjQIkGgVINAqQaBQg0ShAolGARKMAyd3oGOMNwKExxtUoAI/9AU1Xk3DzlrbyAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxExclamation.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -229,22 +228,19 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxHand.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -294,46 +290,41 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxAsterisk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -383,39 +374,32 @@
|
|||
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
|
||||
SUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxQuestion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -465,39 +449,41 @@
|
|||
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
|
||||
gg==
|
||||
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
|
||||
IP8HtFPN//2XDj4AAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@
|
|||
// buttonEnter
|
||||
//
|
||||
this.buttonEnter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonEnter.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonEnter.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonEnter.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonEnter.Location = new System.Drawing.Point(13, 382);
|
||||
this.buttonEnter.Name = "buttonEnter";
|
||||
|
|
@ -74,7 +74,7 @@
|
|||
// buttonCancel
|
||||
//
|
||||
this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonCancel.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonCancel.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonCancel.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonCancel.Location = new System.Drawing.Point(165, 306);
|
||||
this.buttonCancel.Name = "buttonCancel";
|
||||
|
|
@ -87,7 +87,7 @@
|
|||
// buttonNumber9
|
||||
//
|
||||
this.buttonNumber9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber9.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber9.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber9.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber9.Location = new System.Drawing.Point(165, 230);
|
||||
this.buttonNumber9.Name = "buttonNumber9";
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
// buttonNumber6
|
||||
//
|
||||
this.buttonNumber6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber6.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber6.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber6.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber6.Location = new System.Drawing.Point(165, 154);
|
||||
this.buttonNumber6.Name = "buttonNumber6";
|
||||
|
|
@ -113,7 +113,7 @@
|
|||
// buttonNumber3
|
||||
//
|
||||
this.buttonNumber3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber3.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber3.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber3.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber3.Location = new System.Drawing.Point(165, 78);
|
||||
this.buttonNumber3.Name = "buttonNumber3";
|
||||
|
|
@ -126,7 +126,7 @@
|
|||
// buttonNumber0
|
||||
//
|
||||
this.buttonNumber0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber0.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber0.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber0.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber0.Location = new System.Drawing.Point(89, 306);
|
||||
this.buttonNumber0.Name = "buttonNumber0";
|
||||
|
|
@ -139,7 +139,7 @@
|
|||
// buttonNumber8
|
||||
//
|
||||
this.buttonNumber8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber8.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber8.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber8.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber8.Location = new System.Drawing.Point(89, 230);
|
||||
this.buttonNumber8.Name = "buttonNumber8";
|
||||
|
|
@ -152,7 +152,7 @@
|
|||
// buttonNumber5
|
||||
//
|
||||
this.buttonNumber5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber5.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber5.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber5.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber5.Location = new System.Drawing.Point(89, 154);
|
||||
this.buttonNumber5.Name = "buttonNumber5";
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
// buttonNumber2
|
||||
//
|
||||
this.buttonNumber2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber2.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber2.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber2.Location = new System.Drawing.Point(89, 78);
|
||||
this.buttonNumber2.Name = "buttonNumber2";
|
||||
|
|
@ -178,7 +178,7 @@
|
|||
// buttonSign
|
||||
//
|
||||
this.buttonSign.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonSign.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonSign.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonSign.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonSign.Location = new System.Drawing.Point(13, 306);
|
||||
this.buttonSign.Name = "buttonSign";
|
||||
|
|
@ -191,7 +191,7 @@
|
|||
// buttonNumber7
|
||||
//
|
||||
this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber7.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber7.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber7.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber7.Location = new System.Drawing.Point(13, 230);
|
||||
this.buttonNumber7.Name = "buttonNumber7";
|
||||
|
|
@ -204,7 +204,7 @@
|
|||
// buttonNumber4
|
||||
//
|
||||
this.buttonNumber4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber4.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber4.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber4.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber4.Location = new System.Drawing.Point(13, 154);
|
||||
this.buttonNumber4.Name = "buttonNumber4";
|
||||
|
|
@ -217,7 +217,7 @@
|
|||
// buttonNumber1
|
||||
//
|
||||
this.buttonNumber1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber1.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber1.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber1.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber1.Location = new System.Drawing.Point(13, 78);
|
||||
this.buttonNumber1.Name = "buttonNumber1";
|
||||
|
|
@ -230,7 +230,7 @@
|
|||
// label1
|
||||
//
|
||||
this.label1.BackColor = System.Drawing.Color.Silver;
|
||||
this.label1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.label1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.label1.Location = new System.Drawing.Point(3, 3);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(237, 20);
|
||||
|
|
@ -245,7 +245,7 @@
|
|||
this.smartForm1.Location = new System.Drawing.Point(0, 0);
|
||||
this.smartForm1.MainForm = null;
|
||||
this.smartForm1.Mode = SmartX.SmartForm.RUNMODE.RUNTIME;
|
||||
this.smartForm1.MouseCursor = SmartX.SmartForm.OnOff.ON;
|
||||
this.smartForm1.MouseCursor = SmartX.SmartForm.OnOff.OFF;
|
||||
this.smartForm1.Name = "smartForm1";
|
||||
this.smartForm1.Size = new System.Drawing.Size(250, 443);
|
||||
this.smartForm1.SpecialFunctionClickPointSize = 100;
|
||||
|
|
|
|||
|
|
@ -165,38 +165,28 @@
|
|||
RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP
|
||||
lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l
|
||||
f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAABwVJREFUeF7t0kEBgDAA
|
||||
xDCETxzSeNxU0ERDngMZuhNyu7/wa3uuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXt+u0OB7mSc8wEowgfcz9GVkAAAAABJRU5E
|
||||
rkJggg==
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAABKpJREFUeF7t0iEBACAA
|
||||
wDCCE45oGAxE4Ju8/piQMd4A/zq7L/ia3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I
|
||||
3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC
|
||||
7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I
|
||||
3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC
|
||||
7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTcu0OBXYnZAMowgfc10fpWwAAAABJRU5ErkJg
|
||||
gg==
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
// buttonEnter
|
||||
//
|
||||
this.buttonEnter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonEnter.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonEnter.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonEnter.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonEnter.Location = new System.Drawing.Point(165, 309);
|
||||
this.buttonEnter.Name = "buttonEnter";
|
||||
|
|
@ -73,7 +73,7 @@
|
|||
// buttonNumber9
|
||||
//
|
||||
this.buttonNumber9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber9.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber9.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber9.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber9.Location = new System.Drawing.Point(165, 233);
|
||||
this.buttonNumber9.Name = "buttonNumber9";
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
// buttonNumber6
|
||||
//
|
||||
this.buttonNumber6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber6.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber6.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber6.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber6.Location = new System.Drawing.Point(165, 157);
|
||||
this.buttonNumber6.Name = "buttonNumber6";
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
// buttonNumber3
|
||||
//
|
||||
this.buttonNumber3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber3.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber3.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber3.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber3.Location = new System.Drawing.Point(165, 81);
|
||||
this.buttonNumber3.Name = "buttonNumber3";
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
// buttonNumber0
|
||||
//
|
||||
this.buttonNumber0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber0.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber0.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber0.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber0.Location = new System.Drawing.Point(89, 309);
|
||||
this.buttonNumber0.Name = "buttonNumber0";
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
// buttonNumber8
|
||||
//
|
||||
this.buttonNumber8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber8.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber8.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber8.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber8.Location = new System.Drawing.Point(89, 233);
|
||||
this.buttonNumber8.Name = "buttonNumber8";
|
||||
|
|
@ -138,7 +138,7 @@
|
|||
// buttonNumber5
|
||||
//
|
||||
this.buttonNumber5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber5.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber5.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber5.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber5.Location = new System.Drawing.Point(89, 157);
|
||||
this.buttonNumber5.Name = "buttonNumber5";
|
||||
|
|
@ -151,7 +151,7 @@
|
|||
// buttonNumber2
|
||||
//
|
||||
this.buttonNumber2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber2.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber2.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber2.Location = new System.Drawing.Point(89, 81);
|
||||
this.buttonNumber2.Name = "buttonNumber2";
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
// buttonCancel
|
||||
//
|
||||
this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonCancel.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonCancel.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonCancel.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonCancel.Location = new System.Drawing.Point(13, 309);
|
||||
this.buttonCancel.Name = "buttonCancel";
|
||||
|
|
@ -177,7 +177,7 @@
|
|||
// buttonNumber7
|
||||
//
|
||||
this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber7.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber7.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber7.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber7.Location = new System.Drawing.Point(13, 233);
|
||||
this.buttonNumber7.Name = "buttonNumber7";
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
// buttonNumber4
|
||||
//
|
||||
this.buttonNumber4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber4.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber4.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber4.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber4.Location = new System.Drawing.Point(13, 157);
|
||||
this.buttonNumber4.Name = "buttonNumber4";
|
||||
|
|
@ -203,7 +203,7 @@
|
|||
// buttonNumber1
|
||||
//
|
||||
this.buttonNumber1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||
this.buttonNumber1.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber1.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.buttonNumber1.ForeColor = System.Drawing.Color.White;
|
||||
this.buttonNumber1.Location = new System.Drawing.Point(13, 81);
|
||||
this.buttonNumber1.Name = "buttonNumber1";
|
||||
|
|
@ -216,7 +216,7 @@
|
|||
// labelSubject
|
||||
//
|
||||
this.labelSubject.BackColor = System.Drawing.Color.Silver;
|
||||
this.labelSubject.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelSubject.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelSubject.Location = new System.Drawing.Point(3, 3);
|
||||
this.labelSubject.Name = "labelSubject";
|
||||
this.labelSubject.Size = new System.Drawing.Size(237, 20);
|
||||
|
|
@ -231,7 +231,7 @@
|
|||
this.smartForm1.Location = new System.Drawing.Point(0, 0);
|
||||
this.smartForm1.MainForm = null;
|
||||
this.smartForm1.Mode = SmartX.SmartForm.RUNMODE.RUNTIME;
|
||||
this.smartForm1.MouseCursor = SmartX.SmartForm.OnOff.ON;
|
||||
this.smartForm1.MouseCursor = SmartX.SmartForm.OnOff.OFF;
|
||||
this.smartForm1.Name = "smartForm1";
|
||||
this.smartForm1.Size = new System.Drawing.Size(250, 390);
|
||||
this.smartForm1.SpecialFunctionClickPointSize = 100;
|
||||
|
|
|
|||
|
|
@ -165,34 +165,25 @@
|
|||
RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP
|
||||
lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l
|
||||
f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAABjFJREFUeF7t0kEBgDAA
|
||||
xDCETxzSeNxU0ERDngMZuhNyu7/wa3uuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuuOwl7rjsJe647CXuu
|
||||
Owl7frtDge5knPMB9Ug1gPIHoDoAAAAASUVORK5CYII=
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAABB9JREFUeF7t0iEBACAA
|
||||
wDCCE45oGAxE4Ju8/piQMd4A/zq7L/ia3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I
|
||||
3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC
|
||||
7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I
|
||||
3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC
|
||||
7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
||||
hNidELsTYndC7E6I3Qm5docCuxOyAfVINYBP6EROAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
|
|
|
|||
|
|
@ -86,6 +86,9 @@ namespace INT69DC_7C.DialogForms
|
|||
this.checkBoxLane11.Visible = false;
|
||||
this.checkBoxLane12.Visible = false;
|
||||
break;
|
||||
case 11:
|
||||
this.checkBoxLane12.Visible = false;
|
||||
break;
|
||||
case 12:
|
||||
break;
|
||||
default:
|
||||
|
|
@ -214,6 +217,19 @@ namespace INT69DC_7C.DialogForms
|
|||
this.checkBoxLane9.Checked = true;
|
||||
this.checkBoxLane10.Checked = true;
|
||||
break;
|
||||
case 11:
|
||||
this.checkBoxLane1.Checked = true;
|
||||
this.checkBoxLane2.Checked = true;
|
||||
this.checkBoxLane3.Checked = true;
|
||||
this.checkBoxLane4.Checked = true;
|
||||
this.checkBoxLane5.Checked = true;
|
||||
this.checkBoxLane6.Checked = true;
|
||||
this.checkBoxLane7.Checked = true;
|
||||
this.checkBoxLane8.Checked = true;
|
||||
this.checkBoxLane9.Checked = true;
|
||||
this.checkBoxLane10.Checked = true;
|
||||
this.checkBoxLane11.Checked = true;
|
||||
break;
|
||||
case 12:
|
||||
this.checkBoxLane1.Checked = true;
|
||||
this.checkBoxLane2.Checked = true;
|
||||
|
|
@ -267,6 +283,19 @@ namespace INT69DC_7C.DialogForms
|
|||
this.checkBoxLane9.Checked = false;
|
||||
this.checkBoxLane10.Checked = false;
|
||||
break;
|
||||
case 11:
|
||||
this.checkBoxLane1.Checked = false;
|
||||
this.checkBoxLane2.Checked = false;
|
||||
this.checkBoxLane3.Checked = false;
|
||||
this.checkBoxLane4.Checked = false;
|
||||
this.checkBoxLane5.Checked = false;
|
||||
this.checkBoxLane6.Checked = false;
|
||||
this.checkBoxLane7.Checked = false;
|
||||
this.checkBoxLane8.Checked = false;
|
||||
this.checkBoxLane9.Checked = false;
|
||||
this.checkBoxLane10.Checked = false;
|
||||
this.checkBoxLane11.Checked = false;
|
||||
break;
|
||||
case 12:
|
||||
this.checkBoxLane1.Checked = false;
|
||||
this.checkBoxLane2.Checked = false;
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
// buttonNo
|
||||
//
|
||||
this.buttonNo.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.buttonNo.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonNo.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonNo.ForeColor = System.Drawing.Color.Black;
|
||||
this.buttonNo.Location = new System.Drawing.Point(335, 135);
|
||||
this.buttonNo.Name = "buttonNo";
|
||||
|
|
@ -58,7 +58,7 @@
|
|||
// buttonYes
|
||||
//
|
||||
this.buttonYes.BackColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.buttonYes.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonYes.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonYes.ForeColor = System.Drawing.Color.Black;
|
||||
this.buttonYes.Location = new System.Drawing.Point(229, 135);
|
||||
this.buttonYes.Name = "buttonYes";
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
this.labelMessage2.BackPictureBox2 = null;
|
||||
this.labelMessage2.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage2.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage2.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage2.InitVisible = true;
|
||||
this.labelMessage2.LineSpacing = 0F;
|
||||
this.labelMessage2.Location = new System.Drawing.Point(78, 90);
|
||||
|
|
@ -109,7 +109,7 @@
|
|||
this.labelMessage1.BackPictureBox2 = null;
|
||||
this.labelMessage1.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage1.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage1.InitVisible = true;
|
||||
this.labelMessage1.LineSpacing = 0F;
|
||||
this.labelMessage1.Location = new System.Drawing.Point(78, 60);
|
||||
|
|
@ -182,11 +182,11 @@
|
|||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(200)))), ((int)(((byte)(250)))));
|
||||
this.ClientSize = new System.Drawing.Size(450, 170);
|
||||
this.ControlBox = false;
|
||||
this.Controls.Add(this.labelMessage2);
|
||||
this.Controls.Add(this.labelMessage1);
|
||||
this.Controls.Add(this.pictureBoxAsterisk);
|
||||
this.Controls.Add(this.pictureBoxExclamation);
|
||||
this.Controls.Add(this.pictureBoxHand);
|
||||
this.Controls.Add(this.pictureBoxAsterisk);
|
||||
this.Controls.Add(this.labelMessage2);
|
||||
this.Controls.Add(this.labelMessage1);
|
||||
this.Controls.Add(this.pictureBoxQuestion);
|
||||
this.Controls.Add(this.labelErrorCode);
|
||||
this.Controls.Add(this.buttonNo);
|
||||
|
|
|
|||
|
|
@ -165,18 +165,17 @@
|
|||
RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP
|
||||
lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l
|
||||
f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAlJJREFUeF7t1DERg0AA
|
||||
AEE8IgAjX0QBTQwhJGLyBTPUz7W7InYDoDqO4wvAopnn3eh5nj8AFs08NQrwnkYBEo0CJBoFSDQKkGgU
|
||||
INEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMA
|
||||
iUYBEo0CJBoFSDQKkDyNjjEuABbNPDUK8J5GARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVI
|
||||
NAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECi
|
||||
UYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKN
|
||||
AiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgU
|
||||
INEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMA
|
||||
iUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVI
|
||||
NAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECi
|
||||
UYBEowCJRgESjQIkGgVINAqQaBQg0ShA8jS67/sHgEUzz7tRAF7atj9NV5Nwb7nFrAAAAABJRU5ErkJg
|
||||
gg==
|
||||
j3ofuz55f3q4kLyw8Bv3hPP74uYdwgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAlFJREFUeF7t1DERwzAA
|
||||
ALFyNAAT8VAEXkqoQAqmS+4yO79KIPR6ARDNOT8AHJpzXo3uvX8AHNp7axTgOY0CJBoFSDQKkGgUINEo
|
||||
QKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYB
|
||||
Eo0CJBoFSDQKkGgUILkbXWt9ATi01tIowHMaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg
|
||||
0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJ
|
||||
RgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0
|
||||
CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJR
|
||||
gESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg0ShAolGARKMAiUYBEo0C
|
||||
JBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJRgESjQIkGgVINAqQaBQg
|
||||
0ShAolGARKMAiUYBEo0CJBoFSDQKkGgUINEoQKJRgESjAIlGARKNAiQaBUg0CpBoFCDRKECiUYBEowCJ
|
||||
RgESjQIkGgVINAqQaBQg0ShAolGARKMAyd3oGOMNwKExxtUoAI/9AU1Xk3DzlrbyAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxExclamation.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -226,22 +225,19 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxHand.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -291,46 +287,41 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxAsterisk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -380,39 +371,32 @@
|
|||
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
|
||||
SUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="pictureBoxQuestion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -462,39 +446,41 @@
|
|||
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
|
||||
gg==
|
||||
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
|
||||
IP8HtFPN//2XDj4AAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ namespace INT69DC_7C.Forms
|
|||
private ControlCalibration7 Calibration7;
|
||||
private ControlCalibration8 Calibration8;
|
||||
private ControlCalibration10 Calibration10;
|
||||
private ControlCalibration11 Calibration11;
|
||||
private ControlCalibration12 Calibration12;
|
||||
#endregion
|
||||
|
||||
|
|
@ -149,25 +150,26 @@ namespace INT69DC_7C.Forms
|
|||
case 7:
|
||||
this.Calibration7 = new ControlCalibration7(this);
|
||||
this.Calibration7.Location = new Point(0, 80);
|
||||
|
||||
this.Controls.Add(this.Calibration7);
|
||||
break;
|
||||
case 8:
|
||||
this.Calibration8 = new ControlCalibration8(this);
|
||||
this.Calibration8.Location = new Point(0, 80);
|
||||
|
||||
this.Controls.Add(this.Calibration8);
|
||||
break;
|
||||
case 10:
|
||||
this.Calibration10 = new ControlCalibration10(this);
|
||||
this.Calibration10.Location = new Point(0, 70);
|
||||
|
||||
this.Controls.Add(this.Calibration10);
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11 = new ControlCalibration11(this);
|
||||
this.Calibration11.Location = new Point(0, 70);
|
||||
this.Controls.Add(this.Calibration11);
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12 = new ControlCalibration12(this);
|
||||
this.Calibration12.Location = new Point(0, 70);
|
||||
|
||||
this.Controls.Add(this.Calibration12);
|
||||
break;
|
||||
default:
|
||||
|
|
@ -231,6 +233,10 @@ namespace INT69DC_7C.Forms
|
|||
if (this.Calibration10 != null)
|
||||
this.Calibration10.DisplayRefresh();
|
||||
break;
|
||||
case 11:
|
||||
if (this.Calibration11 != null)
|
||||
this.Calibration11.DisplayRefresh();
|
||||
break;
|
||||
case 12:
|
||||
if (this.Calibration12 != null)
|
||||
this.Calibration12.DisplayRefresh();
|
||||
|
|
@ -321,6 +327,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.Calibration10.UpdateConfiguration(status, config);
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11.UpdateConfiguration(status, config);
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12.UpdateConfiguration(status, config);
|
||||
break;
|
||||
|
|
@ -341,6 +350,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.Calibration10.UpdateWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11.UpdateWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12.UpdateWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
|
|
@ -376,7 +388,6 @@ namespace INT69DC_7C.Forms
|
|||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.CalDigit, "", before, after);
|
||||
}
|
||||
|
||||
private void labelBalanceWeight_Click(object sender, EventArgs e)
|
||||
{
|
||||
string value = "", before = "", after = "";
|
||||
|
|
@ -412,7 +423,6 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void labelMaxWeight_Click(object sender, EventArgs e)
|
||||
{
|
||||
string value = "", before = "", after = "";
|
||||
|
|
@ -464,6 +474,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.Calibration10.CalibrationStart();
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11.CalibrationStart();
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12.CalibrationStart();
|
||||
break;
|
||||
|
|
@ -471,7 +484,6 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void buttonBalance_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.ClearListBox();
|
||||
|
|
@ -487,6 +499,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.Calibration10.CalibrationBalance();
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11.CalibrationBalance();
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12.CalibrationBalance();
|
||||
break;
|
||||
|
|
@ -494,7 +509,6 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void buttonCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.ClearListBox();
|
||||
|
|
@ -510,6 +524,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.Calibration10.CalibrationCancel();
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11.CalibrationCancel();
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12.CalibrationCancel();
|
||||
break;
|
||||
|
|
@ -517,7 +534,6 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
private void buttonBack_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.ClearListBox();
|
||||
|
|
@ -533,6 +549,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.Calibration10.CalibrationCancel();
|
||||
break;
|
||||
case 11:
|
||||
this.Calibration11.CalibrationCancel();
|
||||
break;
|
||||
case 12:
|
||||
this.Calibration12.CalibrationCancel();
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -1730,75 +1730,75 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
this.ParentForm.SystemConfig.Serial3BaudRate = this.comboBoxSerial3BaudRate.SelectedIndex;
|
||||
this.ParentForm.SystemConfig.Serial3Mode = this.comboBoxSerial3Mode.SelectedIndex;
|
||||
|
||||
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.SystemConfig);
|
||||
|
||||
if (this.ParentForm.smartSerialPortCom3.IsOpen == true)
|
||||
this.ParentForm.smartSerialPortCom3.Close();
|
||||
|
||||
// BaudRate
|
||||
switch (this.ParentForm.SystemConfig.Serial3BaudRate)
|
||||
{
|
||||
case 0:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._9600bps;
|
||||
afterBr = "9600";
|
||||
break;
|
||||
case 1:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._19200bps;
|
||||
afterBr = "19200";
|
||||
break;
|
||||
case 2:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._38400bps;
|
||||
afterBr = "38400";
|
||||
break;
|
||||
case 3:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._115200bps;
|
||||
afterBr = "115200";
|
||||
break;
|
||||
default:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._9600bps;
|
||||
afterBr = "9600";
|
||||
break;
|
||||
}
|
||||
// SerialMode
|
||||
switch (this.ParentForm.SystemConfig.Serial3Mode)
|
||||
{
|
||||
case 0:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "None";
|
||||
break;
|
||||
case 1:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT1";
|
||||
break;
|
||||
case 2:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT2";
|
||||
break;
|
||||
case 3:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT3";
|
||||
break;
|
||||
case 4:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT4";
|
||||
break;
|
||||
case 5:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.NONEFRAME_READTIMEOUT;
|
||||
afterMode = "Printer";
|
||||
break;
|
||||
case 6:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT5";
|
||||
break;
|
||||
default:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "None";
|
||||
break;
|
||||
}
|
||||
|
||||
if (this.ParentForm.SystemConfig.Serial3Mode != 0)
|
||||
{
|
||||
this.buttonSerialSend.Enabled = true;
|
||||
|
||||
switch (this.ParentForm.SystemConfig.Serial3BaudRate)
|
||||
{
|
||||
case 0:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._9600bps;
|
||||
afterBr = "9600";
|
||||
break;
|
||||
case 1:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._19200bps;
|
||||
afterBr = "19200";
|
||||
break;
|
||||
case 2:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._38400bps;
|
||||
afterBr = "38400";
|
||||
break;
|
||||
case 3:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._115200bps;
|
||||
afterBr = "115200";
|
||||
break;
|
||||
default:
|
||||
this.ParentForm.smartSerialPortCom3.Baud_Rate = SmartSerialPort.BAUDRATE._9600bps;
|
||||
afterBr = "9600";
|
||||
break;
|
||||
}
|
||||
|
||||
switch (this.ParentForm.SystemConfig.Serial3Mode)
|
||||
{
|
||||
case 0:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "None";
|
||||
break;
|
||||
case 1:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT1";
|
||||
break;
|
||||
case 2:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT2";
|
||||
break;
|
||||
case 3:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT3";
|
||||
break;
|
||||
case 4:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT4";
|
||||
break;
|
||||
case 5:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.NONEFRAME_READTIMEOUT;
|
||||
afterMode = "Printer";
|
||||
break;
|
||||
case 6:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
afterMode = "OPT5";
|
||||
break;
|
||||
default:
|
||||
this.ParentForm.smartSerialPortCom3.FrameSeparationType = SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
break;
|
||||
}
|
||||
|
||||
this.ParentForm.smartSerialPortCom3.Open();
|
||||
}
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1286,6 +1286,135 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
#endregion
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 11)
|
||||
{
|
||||
#region 11열
|
||||
// Lane 8
|
||||
if (this.buttonBypassLane8.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[7].IsBypassMode != true)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[7].IsBypassMode = true;
|
||||
|
||||
before = "OFF";
|
||||
after = "ON";
|
||||
lane = "8";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[7].IsBypassMode != false)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[7].IsBypassMode = false;
|
||||
|
||||
before = "ON";
|
||||
after = "OFF";
|
||||
lane = "8";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
// Lane 9
|
||||
if (this.buttonBypassLane9.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[8].IsBypassMode != true)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[8].IsBypassMode = true;
|
||||
|
||||
before = "OFF";
|
||||
after = "ON";
|
||||
lane = "9";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[8].IsBypassMode != false)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[8].IsBypassMode = false;
|
||||
|
||||
before = "ON";
|
||||
after = "OFF";
|
||||
lane = "9";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
// Lane 10
|
||||
if (this.buttonBypassLane10.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[9].IsBypassMode != true)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[9].IsBypassMode = true;
|
||||
|
||||
before = "OFF";
|
||||
after = "ON";
|
||||
lane = "10";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[9].IsBypassMode != false)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[9].IsBypassMode = false;
|
||||
|
||||
before = "ON";
|
||||
after = "OFF";
|
||||
lane = "10";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
// Lane 11
|
||||
if (this.buttonBypassLane11.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[10].IsBypassMode != true)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[10].IsBypassMode = true;
|
||||
|
||||
before = "OFF";
|
||||
after = "ON";
|
||||
lane = "11";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (this.ParentForm.CollectionWeightData[10].IsBypassMode != false)
|
||||
{
|
||||
this.ParentForm.CollectionWeightData[10].IsBypassMode = false;
|
||||
|
||||
before = "ON";
|
||||
after = "OFF";
|
||||
lane = "11";
|
||||
|
||||
// Part11
|
||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.BP_Individual, lane, before, after);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 12)
|
||||
{
|
||||
#region 12열
|
||||
|
|
|
|||
|
|
@ -238,6 +238,8 @@ namespace INT69DC_7C.Forms
|
|||
locationX = 40;
|
||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 10)
|
||||
locationX = 16;
|
||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 11)
|
||||
locationX = 10;
|
||||
|
||||
for (int i = 1; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
|
|
@ -567,6 +569,23 @@ namespace INT69DC_7C.Forms
|
|||
this.SetData(this.CollectionLaneData[9], this.CollectionWeightData[i][27], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][28]));
|
||||
}
|
||||
}
|
||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 11)
|
||||
{
|
||||
for (int i = 0; i < this.CollectionWeightData.Count; i++)
|
||||
{
|
||||
this.SetData(this.CollectionLaneData[0], this.CollectionWeightData[i][9], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][10]));
|
||||
this.SetData(this.CollectionLaneData[1], this.CollectionWeightData[i][11], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][12]));
|
||||
this.SetData(this.CollectionLaneData[2], this.CollectionWeightData[i][13], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][14]));
|
||||
this.SetData(this.CollectionLaneData[3], this.CollectionWeightData[i][15], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][16]));
|
||||
this.SetData(this.CollectionLaneData[4], this.CollectionWeightData[i][17], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][18]));
|
||||
this.SetData(this.CollectionLaneData[5], this.CollectionWeightData[i][19], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][20]));
|
||||
this.SetData(this.CollectionLaneData[6], this.CollectionWeightData[i][21], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][22]));
|
||||
this.SetData(this.CollectionLaneData[7], this.CollectionWeightData[i][23], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][24]));
|
||||
this.SetData(this.CollectionLaneData[8], this.CollectionWeightData[i][25], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][26]));
|
||||
this.SetData(this.CollectionLaneData[9], this.CollectionWeightData[i][27], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][28]));
|
||||
this.SetData(this.CollectionLaneData[10], this.CollectionWeightData[i][29], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][30]));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < this.CollectionWeightData.Count; i++)
|
||||
|
|
|
|||
|
|
@ -101,6 +101,8 @@
|
|||
this.labelStaticLine = new SmartX.SmartLabel();
|
||||
this.labelStaticEquipmentID = new SmartX.SmartLabel();
|
||||
this.labelTitle = new SmartX.SmartLabel();
|
||||
this.buttonSerialDLL = new SmartX.SmartButton();
|
||||
this.labelStaticSerialDll = new SmartX.SmartLabel();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.groupBoxSpecialMenu.SuspendLayout();
|
||||
this.panel7.SuspendLayout();
|
||||
|
|
@ -131,6 +133,8 @@
|
|||
//
|
||||
this.groupBoxSpecialMenu.BackPictureBox = this.smartForm1;
|
||||
this.groupBoxSpecialMenu.BackPictureBox1 = null;
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.buttonSerialDLL);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.labelStaticSerialDll);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.smartLabel5);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.smartLabel6);
|
||||
this.groupBoxSpecialMenu.Controls.Add(this.labelDataStoragePeriod);
|
||||
|
|
@ -1368,6 +1372,56 @@
|
|||
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitle.Wordwrap = false;
|
||||
//
|
||||
// buttonSerialDLL
|
||||
//
|
||||
this.buttonSerialDLL.BackPictureBox = null;
|
||||
this.buttonSerialDLL.BackPictureBox1 = null;
|
||||
this.buttonSerialDLL.BackPictureBox2 = null;
|
||||
this.buttonSerialDLL.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.buttonSerialDLL.ButtonImageAutoSize = true;
|
||||
this.buttonSerialDLL.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonSerialDLL.DisableImage = null;
|
||||
this.buttonSerialDLL.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonSerialDLL.DownImage")));
|
||||
this.buttonSerialDLL.GroupID = 0;
|
||||
this.buttonSerialDLL.InitVisible = true;
|
||||
this.buttonSerialDLL.Location = new System.Drawing.Point(400, 576);
|
||||
this.buttonSerialDLL.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonSerialDLL.Name = "buttonSerialDLL";
|
||||
this.buttonSerialDLL.NestedClickEventPrevent = false;
|
||||
this.buttonSerialDLL.OutlinePixel = 1;
|
||||
this.buttonSerialDLL.RepeatInterval = 200;
|
||||
this.buttonSerialDLL.RepeatIntervalAccelerate = null;
|
||||
this.buttonSerialDLL.SafeInterval = 200;
|
||||
this.buttonSerialDLL.Size = new System.Drawing.Size(84, 25);
|
||||
this.buttonSerialDLL.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonSerialDLL.TabIndex = 238;
|
||||
this.buttonSerialDLL.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonSerialDLL.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonSerialDLL.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonSerialDLL.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonSerialDLL.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonSerialDLL.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonSerialDLL.UpImage")));
|
||||
this.buttonSerialDLL.Click += new System.EventHandler(this.buttonSerialDLL_Click);
|
||||
//
|
||||
// labelStaticSerialDll
|
||||
//
|
||||
this.labelStaticSerialDll.BackPictureBox = this.smartForm1;
|
||||
this.labelStaticSerialDll.BackPictureBox1 = null;
|
||||
this.labelStaticSerialDll.BackPictureBox2 = null;
|
||||
this.labelStaticSerialDll.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSerialDll.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSerialDll.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSerialDll.InitVisible = true;
|
||||
this.labelStaticSerialDll.LineSpacing = 0F;
|
||||
this.labelStaticSerialDll.Location = new System.Drawing.Point(-6, 576);
|
||||
this.labelStaticSerialDll.Name = "labelStaticSerialDll";
|
||||
this.labelStaticSerialDll.Size = new System.Drawing.Size(400, 25);
|
||||
this.labelStaticSerialDll.TabIndex = 237;
|
||||
this.labelStaticSerialDll.Text = "Serial DLL";
|
||||
this.labelStaticSerialDll.TextHAlign = SmartX.SmartLabel.TextHorAlign.Right;
|
||||
this.labelStaticSerialDll.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelStaticSerialDll.Wordwrap = false;
|
||||
//
|
||||
// FormEquipmentSetting
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
|
|
@ -1466,5 +1520,7 @@
|
|||
private SmartX.SmartLabel labelStaticDataStoragePeriod;
|
||||
private SmartX.SmartLabel smartLabel5;
|
||||
public System.Windows.Forms.RadioButton radioButtonEquipmentModeDual;
|
||||
private SmartX.SmartButton buttonSerialDLL;
|
||||
private SmartX.SmartLabel labelStaticSerialDll;
|
||||
}
|
||||
}
|
||||
|
|
@ -116,7 +116,6 @@ namespace INT69DC_7C.Forms
|
|||
this.radioButtonEquipmentModeStick3.Text = "球杆-III";
|
||||
this.radioButtonEquipmentModeDual.Text = "双重的";
|
||||
|
||||
|
||||
this.labelBuadrateWarning.Text = "※ 电源重启后,设置会自动更新";
|
||||
this.labelBuadrateWarning2.Text = "※ 除了工程师之外,不要改变这个值";
|
||||
|
||||
|
|
@ -239,6 +238,7 @@ namespace INT69DC_7C.Forms
|
|||
this.comboBoxEquipmentColumn.Items.Add(7);
|
||||
this.comboBoxEquipmentColumn.Items.Add(8);
|
||||
this.comboBoxEquipmentColumn.Items.Add(10);
|
||||
this.comboBoxEquipmentColumn.Items.Add(11);
|
||||
this.comboBoxEquipmentColumn.Items.Add(12);
|
||||
this.comboBoxEquipmentColumn.SelectedItem = this.ParentForm.SystemConfig.EquipmentColumns;
|
||||
|
||||
|
|
@ -267,6 +267,11 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
private void UpdateDisplay()
|
||||
{
|
||||
// 장비열
|
||||
this.comboBoxEquipmentColumn.SelectedItem = this.ParentForm.SystemConfig.EquipmentColumns;
|
||||
// 입력센서 선택
|
||||
this.comboBoxInputSensorSelect.SelectedItem = this.ParentForm.SystemConfig.InputSensorSelect;
|
||||
|
||||
// 장비타입
|
||||
if (this.ParentForm.SystemConfig.EquipmentMode == 0)
|
||||
this.radioButtonEquipmentModeConveyor.Checked = true;
|
||||
|
|
@ -379,6 +384,7 @@ namespace INT69DC_7C.Forms
|
|||
else
|
||||
this.buttonLogin.ButtonUp();
|
||||
|
||||
// Step Motor
|
||||
switch (this.ParentForm.SystemConfig.StepMotorType)
|
||||
{
|
||||
case (int)DataStore.StepMotorType.MDrive:
|
||||
|
|
@ -394,11 +400,28 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
}
|
||||
|
||||
// SerialDLL
|
||||
if (this.ParentForm.SystemConfig.IsSerialDLL == true)
|
||||
this.buttonSerialDLL.ButtonDown();
|
||||
else
|
||||
this.buttonSerialDLL.ButtonUp();
|
||||
|
||||
this.buttonSave.Visible = false;
|
||||
}
|
||||
|
||||
public void DisplayRefresh()
|
||||
{
|
||||
if (this.ParentForm.SystemConfig.CurrentUser.Group == DataStore.UserGroup.Developer)
|
||||
{
|
||||
this.labelStaticSerialDll.Visible = true;
|
||||
this.buttonSerialDLL.Visible = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.labelStaticSerialDll.Visible = false;
|
||||
this.buttonSerialDLL.Visible = false;
|
||||
}
|
||||
|
||||
this.UpdateDisplay();
|
||||
|
||||
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormEquipmentSetting;
|
||||
|
|
@ -463,6 +486,11 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
}
|
||||
}
|
||||
private void buttonSerialDLL_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.buttonSave.Visible != true)
|
||||
this.buttonSave.Visible = true;
|
||||
}
|
||||
|
||||
private void buttonSave_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
|
@ -485,6 +513,8 @@ namespace INT69DC_7C.Forms
|
|||
this.ParentForm.SystemConfig.EquipmentColumns = 8;
|
||||
else if (this.comboBoxEquipmentColumn.SelectedIndex == 2)
|
||||
this.ParentForm.SystemConfig.EquipmentColumns = 10;
|
||||
else if (this.comboBoxEquipmentColumn.SelectedIndex == 3)
|
||||
this.ParentForm.SystemConfig.EquipmentColumns = 11;
|
||||
else
|
||||
this.ParentForm.SystemConfig.EquipmentColumns = 12;
|
||||
|
||||
|
|
@ -614,6 +644,12 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
}
|
||||
|
||||
// Serial DLL
|
||||
if (this.buttonSerialDLL.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
||||
this.ParentForm.SystemConfig.IsSerialDLL = true;
|
||||
else
|
||||
this.ParentForm.SystemConfig.IsSerialDLL = false;
|
||||
|
||||
// SystemConfig 파일 저장
|
||||
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.SystemConfig);
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -157,7 +157,7 @@ namespace INT69DC_7C.Forms
|
|||
structItem2.DummyBool12 = false;
|
||||
structItem2.DummyBool13 = false;
|
||||
structItem2.DummyBool14 = false;
|
||||
structItem2.DummyBool15 = false;
|
||||
structItem2.IsSerialDLL = false;
|
||||
structItem2.IsOptPrinter = this.ParentForm.SystemConfig.IsOptPrinter;
|
||||
structItem2.IsOptPart11 = this.ParentForm.SystemConfig.IsOptPart11;
|
||||
structItem2.IsAlarmTotalPassCntEnable = this.ParentForm.SystemConfig.IsAlarmTotalPassCntEnable;
|
||||
|
|
|
|||
|
|
@ -702,7 +702,7 @@
|
|||
this.labelInfo2.Name = "labelInfo2";
|
||||
this.labelInfo2.Size = new System.Drawing.Size(715, 40);
|
||||
this.labelInfo2.TabIndex = 194;
|
||||
this.labelInfo2.Text = "Automatic weighing system - Multilane Checkweigher";
|
||||
this.labelInfo2.Text = "Automatic weighing system / Multi-lane checkweigher";
|
||||
this.labelInfo2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||
this.labelInfo2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelInfo2.Wordwrap = false;
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
private void DefaultSetting()
|
||||
{
|
||||
this.labelDisplayVer.Text = "12.3.1";
|
||||
this.labelDisplayVer.Text = "12.4.0";
|
||||
|
||||
if(this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||
this.labelTitleMainboardName.Text = "INT68M-2A";
|
||||
|
|
@ -207,6 +207,22 @@ namespace INT69DC_7C.Forms
|
|||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion10);
|
||||
|
||||
this.labelSub11.Visible = this.labelSubBoardVersion11.Visible = false;
|
||||
this.labelSub12.Visible = this.labelSubBoardVersion12.Visible = false;
|
||||
break;
|
||||
case 11:
|
||||
this.CollectionControlVerLabel.Add(this.labelMainControlVer);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion1);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion2);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion3);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion4);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion5);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion6);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion7);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion8);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion9);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion10);
|
||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion11);
|
||||
|
||||
this.labelSub12.Visible = this.labelSubBoardVersion12.Visible = false;
|
||||
break;
|
||||
case 12:
|
||||
|
|
@ -395,7 +411,7 @@ namespace INT69DC_7C.Forms
|
|||
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormInformation;
|
||||
this.ParentForm.TransferDataStream(CommunicationCommand.Read, CommunicationID.MainBoard, CommunicationAddress._1500_ProgramVersion, "");
|
||||
|
||||
if (this.ParentForm.FlagDllSerial == true)
|
||||
if (this.ParentForm.SystemConfig.IsSerialDLL == true)
|
||||
SerialMgrComm.serialPort_GetVersion();
|
||||
|
||||
if (this.ParentForm.SystemConfig.IsLogin == true)
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -187,7 +187,7 @@
|
|||
this.smartSerialPortLink.ErrorCode_Location = SmartX.SmartSerialPort.ERRORCODELOCATION.HEADER;
|
||||
this.smartSerialPortLink.ETXCode = ((byte)(3));
|
||||
this.smartSerialPortLink.ETXCodes = null;
|
||||
this.smartSerialPortLink.FrameBufferSize = ((uint)(4096u));
|
||||
this.smartSerialPortLink.FrameBufferSize = ((uint)(8192u));
|
||||
this.smartSerialPortLink.FrameSeparationType = SmartX.SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||
this.smartSerialPortLink.HeadErrorCodeOffset = 0;
|
||||
this.smartSerialPortLink.PortNo = SmartX.SmartSerialPort.COMPORTNO.COM2;
|
||||
|
|
|
|||
|
|
@ -36,7 +36,6 @@ namespace INT69DC_7C.Forms
|
|||
private bool IsModbusCommonDataSend; // Modbus 공통 데이터 Start 시 한번 전송용
|
||||
public int FlagAutomaticLogoutWarningTime; //Part11 Auto Logout
|
||||
private string ComPortMainToLCD; // DllSerial Port
|
||||
public bool FlagDllSerial; // DllSerial 사용여부
|
||||
private string TransferNum; // 수신데이터 ID저장 (재전송 시 사용)
|
||||
|
||||
// OPC
|
||||
|
|
@ -115,6 +114,8 @@ namespace INT69DC_7C.Forms
|
|||
public DataViewerFilter CurrentDataViewerFilter;
|
||||
// Judgment Result Buffer
|
||||
private Collection<DataStore.JudgmentStatus> CollJudgmentStatus;
|
||||
// 알람
|
||||
private AlarmList CurrentAlarmList;
|
||||
|
||||
// Collection
|
||||
private Collection<int> CollectionGraphData; // 판정설정 그래프 데이터
|
||||
|
|
@ -447,6 +448,9 @@ namespace INT69DC_7C.Forms
|
|||
this.ListDllUserName = new List<string>();
|
||||
this.ListDllUserName.Clear();
|
||||
|
||||
this.CurrentAlarmList = new AlarmList();
|
||||
this.CurrentAlarmList.EventAlarmStateChange += new DataStore.EventHandlerAlarmStateChange(this.CurrentAlarmList_Change);
|
||||
|
||||
// SystemFile 폴더 생성
|
||||
if (Directory.Exists(this.PathSystemFileFolder) == false)
|
||||
Directory.CreateDirectory(this.PathSystemFileFolder);
|
||||
|
|
@ -514,9 +518,8 @@ namespace INT69DC_7C.Forms
|
|||
this.CurrentAlarmTotalPassCnt = new Counter(this.SystemConfig.EquipmentColumns, this.SystemConfig.AlarmTotalPassCnt);
|
||||
|
||||
|
||||
// DllSerial 사용여부 설정
|
||||
this.FlagDllSerial = false;
|
||||
if (this.FlagDllSerial == true)
|
||||
// DllSerial 사용 시
|
||||
if (this.SystemConfig.IsSerialDLL == true)
|
||||
{
|
||||
// SerialDll Initialize
|
||||
this.ComPortMainToLCD = "COM2:";
|
||||
|
|
@ -729,7 +732,7 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
try
|
||||
{
|
||||
if (this.FlagDllSerial == true)
|
||||
if (this.SystemConfig.IsSerialDLL == true)
|
||||
SerialMgrComm.serialPortOpen(this.ComPortMainToLCD, 115200, 0, 0, 8);
|
||||
else
|
||||
{
|
||||
|
|
@ -755,7 +758,7 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
public void CloseSmartUartLink()
|
||||
{
|
||||
if (this.FlagDllSerial == true)
|
||||
if (this.SystemConfig.IsSerialDLL == true)
|
||||
SerialMgrComm.serialPortClose(this.ComPortMainToLCD);
|
||||
else
|
||||
this.smartSerialPortLink.Close();
|
||||
|
|
@ -859,6 +862,19 @@ namespace INT69DC_7C.Forms
|
|||
for (int i = 0; i < byteData.Length; i++)
|
||||
collection.Add(byteData[i]);
|
||||
}
|
||||
private string RecoveryData(string strTemp)
|
||||
{
|
||||
string rData = "";
|
||||
|
||||
for (int i = 0; i < strTemp.Length; i++)
|
||||
{
|
||||
if (strTemp[i] == 0x02)
|
||||
rData = strTemp.Substring(i + 1, strTemp.Length - i - 1);
|
||||
}
|
||||
|
||||
return rData;
|
||||
}
|
||||
|
||||
private void UpdateWeightData(int index, string receiveData)
|
||||
{
|
||||
int index2 = 0;
|
||||
|
|
@ -920,7 +936,7 @@ namespace INT69DC_7C.Forms
|
|||
sb.Append(chkSum);
|
||||
|
||||
// Serial Write
|
||||
if (this.FlagDllSerial == true)
|
||||
if (this.SystemConfig.IsSerialDLL == true)
|
||||
SerialMgrComm.serialPortMessage(this.ComPortMainToLCD, sb.ToString());
|
||||
else
|
||||
{
|
||||
|
|
@ -974,7 +990,7 @@ namespace INT69DC_7C.Forms
|
|||
byteData[i] = byteCollection[i];
|
||||
|
||||
// Serial Write
|
||||
if (this.FlagDllSerial == true)
|
||||
if (this.SystemConfig.IsSerialDLL == true)
|
||||
SerialMgrComm.serialPortMessageByte(this.ComPortMainToLCD, byteData, byteData.Length);
|
||||
else
|
||||
{
|
||||
|
|
@ -1012,7 +1028,7 @@ namespace INT69DC_7C.Forms
|
|||
sb.Append(chkSum);
|
||||
|
||||
// Serial Write
|
||||
if (this.FlagDllSerial == true)
|
||||
if (this.SystemConfig.IsSerialDLL == true)
|
||||
SerialMgrComm.serialPortMessage(this.ComPortMainToLCD, sb.ToString());
|
||||
else
|
||||
{
|
||||
|
|
@ -1272,17 +1288,43 @@ namespace INT69DC_7C.Forms
|
|||
private int ReceiveCommandS(string strTemp)
|
||||
{
|
||||
int ret = 0;
|
||||
bool sizeError = false;
|
||||
string cmd = "", lane = "", receiveData = "";
|
||||
string transferNum = "";
|
||||
|
||||
// SIZE 확인
|
||||
if (this.SizeCheck("S", strTemp) == false)
|
||||
{
|
||||
sizeError = true;
|
||||
|
||||
// 로그
|
||||
if (this.IsCommunicationLogOpen == true)
|
||||
this.smartFileCommunicationLog.WriteString(string.Format("Receive ({0:yyyy-MM-dd HH:mm:ss}): {1} : Receive Stream Data SIZE Error", DateTime.Now, strTemp));
|
||||
return ret = -1;
|
||||
}
|
||||
|
||||
// 수신데이터 복구 시도
|
||||
if (sizeError == true)
|
||||
{
|
||||
string data = this.RecoveryData(strTemp);
|
||||
|
||||
if (data.Length == 0)
|
||||
{
|
||||
// 로그
|
||||
if (this.IsCommunicationLogOpen == true)
|
||||
this.smartFileCommunicationLog.WriteString(string.Format("Receive ({0:yyyy-MM-dd HH:mm:ss}): {1} : Receive Stream Data Recovery Error", DateTime.Now, strTemp));
|
||||
|
||||
return ret = -1;
|
||||
}
|
||||
else
|
||||
{
|
||||
strTemp = data;
|
||||
|
||||
// 로그
|
||||
if (this.IsCommunicationLogOpen == true)
|
||||
this.smartFileCommunicationLog.WriteString(string.Format("Receive ({0:yyyy-MM-dd HH:mm:ss}): {1} : Receive Stream Data Recovery!!", DateTime.Now, strTemp));
|
||||
}
|
||||
}
|
||||
|
||||
// CHKSUM 확인
|
||||
if (this.Checksumcalculator(strTemp) == false)
|
||||
{
|
||||
|
|
@ -1303,6 +1345,10 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
switch (cmd)
|
||||
{
|
||||
case "SA0":
|
||||
if ((ret = this.ReceiveCommandSA0(lane, receiveData)) != 0)
|
||||
return ret;
|
||||
break;
|
||||
case "SN0":
|
||||
if ((ret = this.ReceiveCommandSN0(lane, receiveData)) != 0)
|
||||
return ret;
|
||||
|
|
@ -1510,6 +1556,19 @@ namespace INT69DC_7C.Forms
|
|||
this.CurrentCalibrationItem.Constant9 = receiveData.Substring(77, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant10 = receiveData.Substring(84, 7).Trim();
|
||||
break;
|
||||
case 11:
|
||||
this.CurrentCalibrationItem.Constant1 = receiveData.Substring(21, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant2 = receiveData.Substring(28, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant3 = receiveData.Substring(35, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant4 = receiveData.Substring(42, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant5 = receiveData.Substring(49, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant6 = receiveData.Substring(56, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant7 = receiveData.Substring(63, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant8 = receiveData.Substring(70, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant9 = receiveData.Substring(77, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant10 = receiveData.Substring(84, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant11 = receiveData.Substring(91, 7).Trim();
|
||||
break;
|
||||
case 12:
|
||||
this.CurrentCalibrationItem.Constant1 = receiveData.Substring(21, 7).Trim();
|
||||
this.CurrentCalibrationItem.Constant2 = receiveData.Substring(28, 7).Trim();
|
||||
|
|
@ -1853,6 +1912,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay10(this.EquipmentStatus, this.CollectionWeightData[9]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay10(this.EquipmentStatus, this.CollectionFeedbackStatus[9]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay11(this.EquipmentStatus, this.CollectionWeightData[10]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay11(this.EquipmentStatus, this.CollectionFeedbackStatus[10]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay12(this.EquipmentStatus, this.CollectionWeightData[11]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay12(this.EquipmentStatus, this.CollectionFeedbackStatus[11]);
|
||||
|
|
@ -2138,6 +2201,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay10(this.EquipmentStatus, this.CollectionWeightDataTest[9]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay11(this.EquipmentStatus, this.CollectionWeightDataTest[10]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay12(this.EquipmentStatus, this.CollectionWeightDataTest[11]);
|
||||
break;
|
||||
|
|
@ -2190,6 +2256,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay9(this.EquipmentStatus, this.CollectionWeightData[8]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay9(this.EquipmentStatus, this.CollectionFeedbackStatus[8]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay10(this.EquipmentStatus, this.CollectionWeightData[9]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay10(this.EquipmentStatus, this.CollectionFeedbackStatus[9]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay11(this.EquipmentStatus, this.CollectionWeightData[10]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay11(this.EquipmentStatus, this.CollectionFeedbackStatus[10]);
|
||||
|
|
@ -2439,6 +2509,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay9(this.EquipmentStatus, this.CollectionWeightDataTest[8]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay10(this.EquipmentStatus, this.CollectionWeightDataTest[9]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay11(this.EquipmentStatus, this.CollectionWeightDataTest[10]);
|
||||
break;
|
||||
|
|
@ -2491,6 +2564,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay8(this.EquipmentStatus, this.CollectionWeightData[7]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay8(this.EquipmentStatus, this.CollectionFeedbackStatus[7]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay9(this.EquipmentStatus, this.CollectionWeightData[8]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay9(this.EquipmentStatus, this.CollectionFeedbackStatus[8]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay10(this.EquipmentStatus, this.CollectionWeightData[9]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay10(this.EquipmentStatus, this.CollectionFeedbackStatus[9]);
|
||||
|
|
@ -2740,6 +2817,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay8(this.EquipmentStatus, this.CollectionWeightDataTest[7]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay9(this.EquipmentStatus, this.CollectionWeightDataTest[8]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay10(this.EquipmentStatus, this.CollectionWeightDataTest[9]);
|
||||
break;
|
||||
|
|
@ -2792,6 +2872,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay7(this.EquipmentStatus, this.CollectionWeightData[6]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay7(this.EquipmentStatus, this.CollectionFeedbackStatus[6]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay8(this.EquipmentStatus, this.CollectionWeightData[7]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay8(this.EquipmentStatus, this.CollectionFeedbackStatus[7]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay9(this.EquipmentStatus, this.CollectionWeightData[8]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay9(this.EquipmentStatus, this.CollectionFeedbackStatus[8]);
|
||||
|
|
@ -3041,6 +3125,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay7(this.EquipmentStatus, this.CollectionWeightDataTest[6]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay8(this.EquipmentStatus, this.CollectionWeightDataTest[7]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay9(this.EquipmentStatus, this.CollectionWeightDataTest[8]);
|
||||
break;
|
||||
|
|
@ -3093,6 +3180,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay6(this.EquipmentStatus, this.CollectionWeightData[5]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay6(this.EquipmentStatus, this.CollectionFeedbackStatus[5]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay7(this.EquipmentStatus, this.CollectionWeightData[6]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay7(this.EquipmentStatus, this.CollectionFeedbackStatus[6]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay8(this.EquipmentStatus, this.CollectionWeightData[7]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay8(this.EquipmentStatus, this.CollectionFeedbackStatus[7]);
|
||||
|
|
@ -3342,6 +3433,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay6(this.EquipmentStatus, this.CollectionWeightDataTest[5]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay7(this.EquipmentStatus, this.CollectionWeightDataTest[6]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay8(this.EquipmentStatus, this.CollectionWeightDataTest[7]);
|
||||
break;
|
||||
|
|
@ -3394,6 +3488,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay5(this.EquipmentStatus, this.CollectionWeightData[4]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay5(this.EquipmentStatus, this.CollectionFeedbackStatus[4]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay6(this.EquipmentStatus, this.CollectionWeightData[5]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay6(this.EquipmentStatus, this.CollectionFeedbackStatus[5]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay7(this.EquipmentStatus, this.CollectionWeightData[6]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay7(this.EquipmentStatus, this.CollectionFeedbackStatus[6]);
|
||||
|
|
@ -3643,6 +3741,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay5(this.EquipmentStatus, this.CollectionWeightDataTest[4]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay6(this.EquipmentStatus, this.CollectionWeightDataTest[5]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay7(this.EquipmentStatus, this.CollectionWeightDataTest[6]);
|
||||
break;
|
||||
|
|
@ -3695,6 +3796,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay4(this.EquipmentStatus, this.CollectionWeightData[3]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay4(this.EquipmentStatus, this.CollectionFeedbackStatus[3]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay5(this.EquipmentStatus, this.CollectionWeightData[4]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay5(this.EquipmentStatus, this.CollectionFeedbackStatus[4]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay6(this.EquipmentStatus, this.CollectionWeightData[5]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay6(this.EquipmentStatus, this.CollectionFeedbackStatus[5]);
|
||||
|
|
@ -3944,6 +4049,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay4(this.EquipmentStatus, this.CollectionWeightDataTest[3]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay5(this.EquipmentStatus, this.CollectionWeightDataTest[4]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay6(this.EquipmentStatus, this.CollectionWeightDataTest[5]);
|
||||
break;
|
||||
|
|
@ -3994,6 +4102,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay3(this.EquipmentStatus, this.CollectionWeightData[2]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay3(this.EquipmentStatus, this.CollectionFeedbackStatus[2]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay4(this.EquipmentStatus, this.CollectionWeightData[3]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay4(this.EquipmentStatus, this.CollectionFeedbackStatus[3]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay5(this.EquipmentStatus, this.CollectionWeightData[4]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay5(this.EquipmentStatus, this.CollectionFeedbackStatus[4]);
|
||||
|
|
@ -4242,6 +4354,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay3(this.EquipmentStatus, this.CollectionWeightDataTest[2]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay4(this.EquipmentStatus, this.CollectionWeightDataTest[3]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay5(this.EquipmentStatus, this.CollectionWeightDataTest[4]);
|
||||
break;
|
||||
|
|
@ -4290,6 +4405,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay2(this.EquipmentStatus, this.CollectionWeightData[1]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay2(this.EquipmentStatus, this.CollectionFeedbackStatus[1]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay3(this.EquipmentStatus, this.CollectionWeightData[2]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay3(this.EquipmentStatus, this.CollectionFeedbackStatus[2]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay4(this.EquipmentStatus, this.CollectionWeightData[3]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay4(this.EquipmentStatus, this.CollectionFeedbackStatus[3]);
|
||||
|
|
@ -4537,6 +4656,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay2(this.EquipmentStatus, this.CollectionWeightDataTest[1]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay3(this.EquipmentStatus, this.CollectionWeightDataTest[2]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay4(this.EquipmentStatus, this.CollectionWeightDataTest[3]);
|
||||
break;
|
||||
|
|
@ -4585,6 +4707,10 @@ namespace INT69DC_7C.Forms
|
|||
this.ChildFormMainDisplay.UpdateStartWeightDisplay1(this.EquipmentStatus, this.CollectionWeightData[0]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay1(this.EquipmentStatus, this.CollectionFeedbackStatus[0]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay2(this.EquipmentStatus, this.CollectionWeightData[1]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay2(this.EquipmentStatus, this.CollectionFeedbackStatus[1]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay3(this.EquipmentStatus, this.CollectionWeightData[2]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay3(this.EquipmentStatus, this.CollectionFeedbackStatus[2]);
|
||||
|
|
@ -4832,6 +4958,9 @@ namespace INT69DC_7C.Forms
|
|||
case 10:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay1(this.EquipmentStatus, this.CollectionWeightDataTest[0]);
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay2(this.EquipmentStatus, this.CollectionWeightDataTest[1]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay3(this.EquipmentStatus, this.CollectionWeightDataTest[2]);
|
||||
break;
|
||||
|
|
@ -4878,6 +5007,10 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
case 10:
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay1(this.EquipmentStatus, this.CollectionWeightData[0]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay1(this.EquipmentStatus, this.CollectionFeedbackStatus[0]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormMainDisplay.UpdateStartWeightDisplay2(this.EquipmentStatus, this.CollectionWeightData[1]);
|
||||
this.ChildFormMainDisplay.UpdateFeedbackDataDisplay2(this.EquipmentStatus, this.CollectionFeedbackStatus[1]);
|
||||
|
|
@ -5124,6 +5257,9 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
case 10:
|
||||
break;
|
||||
case 11:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay1(this.EquipmentStatus, this.CollectionWeightDataTest[0]);
|
||||
break;
|
||||
case 12:
|
||||
this.ChildFormEquipmentTest.UpdateUpdateStartWeightDisplay2(this.EquipmentStatus, this.CollectionWeightDataTest[1]);
|
||||
break;
|
||||
|
|
@ -5507,7 +5643,7 @@ namespace INT69DC_7C.Forms
|
|||
this.CollectionWeightData[this.CollectionWeightData.Count - i].WeightString = receiveData.Substring((i - 1) * 12 + 2, 5);
|
||||
this.CollectionWeightData[this.CollectionWeightData.Count - i].ADCValue = receiveData.Substring((i - 1) * 12 + 7, 5);
|
||||
|
||||
if (this.SystemConfig.EthernetOperationMode == 4)
|
||||
if (this.SystemConfig.EthernetOperationMode == 3)
|
||||
this.Update30000ModbusData(this.CollectionWeightData.Count - i);
|
||||
}
|
||||
#endregion
|
||||
|
|
@ -6028,6 +6164,26 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
return ret;
|
||||
}
|
||||
// 알람
|
||||
private int ReceiveCommandSA0(string lane, string receiveData)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
switch (lane)
|
||||
{
|
||||
case "0":
|
||||
#region Value Assign
|
||||
this.CurrentAlarmList.SetAlarm(receiveData.Substring(0, 8));
|
||||
#endregion
|
||||
|
||||
this.ChildFormMainDisplay.UpdateDisplayAlarmView(this.CurrentAlarmList);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region SystemConfiguration File
|
||||
|
|
@ -6100,7 +6256,7 @@ namespace INT69DC_7C.Forms
|
|||
structItem2.DummyBool12 = false;
|
||||
structItem2.DummyBool13 = false;
|
||||
structItem2.DummyBool14 = false;
|
||||
structItem2.DummyBool15 = false;
|
||||
structItem2.IsSerialDLL = this.SystemConfig.IsSerialDLL;
|
||||
structItem2.IsOptPrinter = this.SystemConfig.IsOptPrinter;
|
||||
structItem2.IsOptPart11 = this.SystemConfig.IsOptPart11;
|
||||
structItem2.IsAlarmTotalPassCntEnable = this.SystemConfig.IsAlarmTotalPassCntEnable;
|
||||
|
|
@ -6230,7 +6386,7 @@ namespace INT69DC_7C.Forms
|
|||
structItem2.DummyBool12 = false;
|
||||
structItem2.DummyBool13 = false;
|
||||
structItem2.DummyBool14 = false;
|
||||
structItem2.DummyBool15 = false;
|
||||
structItem2.IsSerialDLL = item.IsSerialDLL;
|
||||
structItem2.IsOptPrinter = item.IsOptPrinter;
|
||||
structItem2.IsOptPart11 = item.IsOptPart11;
|
||||
structItem2.IsAlarmTotalPassCntEnable = item.IsAlarmTotalPassCntEnable;
|
||||
|
|
@ -6404,6 +6560,9 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
// Printer
|
||||
this.SystemConfig.IsOptPrinter = structItem2.IsOptPrinter;
|
||||
|
||||
// Serial DLL
|
||||
this.SystemConfig.IsSerialDLL = structItem2.IsSerialDLL;
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
|
@ -6982,6 +7141,33 @@ namespace INT69DC_7C.Forms
|
|||
structItem.UnderCount12 = 0;
|
||||
structItem.ExNGCount12 = 0;
|
||||
}
|
||||
else if (this.SystemConfig.EquipmentColumns == 11)
|
||||
{
|
||||
structItem.OverCount8 = items[7].OverCount;
|
||||
structItem.PassCount8 = items[7].PassCount;
|
||||
structItem.UnderCount8 = items[7].UnderCount;
|
||||
structItem.ExNGCount8 = items[7].ExNGCount;
|
||||
|
||||
structItem.OverCount9 = items[8].OverCount;
|
||||
structItem.PassCount9 = items[8].PassCount;
|
||||
structItem.UnderCount9 = items[8].UnderCount;
|
||||
structItem.ExNGCount9 = items[8].ExNGCount;
|
||||
|
||||
structItem.OverCount10 = items[9].OverCount;
|
||||
structItem.PassCount10 = items[9].PassCount;
|
||||
structItem.UnderCount10 = items[9].UnderCount;
|
||||
structItem.ExNGCount10 = items[9].ExNGCount;
|
||||
|
||||
structItem.OverCount11 = items[10].OverCount;
|
||||
structItem.PassCount11 = items[10].PassCount;
|
||||
structItem.UnderCount11 = items[10].UnderCount;
|
||||
structItem.ExNGCount11 = items[10].ExNGCount;
|
||||
|
||||
structItem.OverCount12 = 0;
|
||||
structItem.PassCount12 = 0;
|
||||
structItem.UnderCount12 = 0;
|
||||
structItem.ExNGCount12 = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
structItem.OverCount8 = items[7].OverCount;
|
||||
|
|
@ -7113,6 +7299,27 @@ namespace INT69DC_7C.Forms
|
|||
items[9].OverCount = structItem.OverCount10;
|
||||
items[9].ExNGCount = structItem.ExNGCount10;
|
||||
break;
|
||||
case 11:
|
||||
items[7].UnderCount = structItem.UnderCount8;
|
||||
items[7].PassCount = structItem.PassCount8;
|
||||
items[7].OverCount = structItem.OverCount8;
|
||||
items[7].ExNGCount = structItem.ExNGCount8;
|
||||
|
||||
items[8].UnderCount = structItem.UnderCount9;
|
||||
items[8].PassCount = structItem.PassCount9;
|
||||
items[8].OverCount = structItem.OverCount9;
|
||||
items[8].ExNGCount = structItem.ExNGCount9;
|
||||
|
||||
items[9].UnderCount = structItem.UnderCount10;
|
||||
items[9].PassCount = structItem.PassCount10;
|
||||
items[9].OverCount = structItem.OverCount10;
|
||||
items[9].ExNGCount = structItem.ExNGCount10;
|
||||
|
||||
items[10].UnderCount = structItem.UnderCount11;
|
||||
items[10].PassCount = structItem.PassCount11;
|
||||
items[10].OverCount = structItem.OverCount11;
|
||||
items[10].ExNGCount = structItem.ExNGCount11;
|
||||
break;
|
||||
case 12:
|
||||
items[7].UnderCount = structItem.UnderCount8;
|
||||
items[7].PassCount = structItem.PassCount8;
|
||||
|
|
@ -12360,6 +12567,14 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
}
|
||||
|
||||
private void CurrentAlarmList_Change(DataStore.TrackingAlarm alarm, string status)
|
||||
{
|
||||
if (this.SystemConfig.IsOptPart11 == false)
|
||||
return;
|
||||
|
||||
this.SetTrackingHistoryData(alarm, status);
|
||||
}
|
||||
|
||||
#region DLL_SerialportEvent
|
||||
private void Serialport_ReceiveDataEvent(string data)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -34,18 +34,23 @@ namespace INT69DC_7C.Forms
|
|||
private DataStore.E_TotalCnt Mode_TotalCnt;
|
||||
private DataStore.E_TotalCntNG Mode_TotalCntNG;
|
||||
|
||||
private ControlMainDisplayAlarm MainDisplayAlarmList;
|
||||
|
||||
private ControlMainDisplayFeedbacak MainDisplayFeedbaack;
|
||||
private ControlMainDisplayEachBarGraph7 MainDisplayEachBarGraph7;
|
||||
private ControlMainDisplayEachBarGraph8 MainDisplayEachBarGraph8;
|
||||
private ControlMainDisplayEachBarGraph10 MainDisplayEachBarGraph10;
|
||||
private ControlMainDisplayEachBarGraph11 MainDisplayEachBarGraph11;
|
||||
private ControlMainDisplayEachBarGraph12 MainDisplayEachBarGraph12;
|
||||
private ControlMainDisplayDotGraph7 MainDisplayDotGraph7;
|
||||
private ControlMainDisplayDotGraph8 MainDisplayDotGraph8;
|
||||
private ControlMainDisplayDotGraph10 MainDisplayDotGraph10;
|
||||
private ControlMainDisplayDotGraph11 MainDisplayDotGraph11;
|
||||
private ControlMainDisplayDotGraph12 MainDisplayDotGraph12;
|
||||
private ControlMainDisplayTable7 MainDisplayTable7;
|
||||
private ControlMainDisplayTable8 MainDisplayTable8;
|
||||
private ControlMainDisplayTable10 MainDisplayTable10;
|
||||
private ControlMainDisplayTable11 MainDisplayTable11;
|
||||
private ControlMainDisplayTable12 MainDisplayTable12;
|
||||
#endregion
|
||||
|
||||
|
|
@ -489,6 +494,8 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
private void InitializeControl()
|
||||
{
|
||||
int x = 0, y = 0;
|
||||
|
||||
if (this.ParentForm.IsBootingComplete == false)
|
||||
this.buttonProductNo.Text = "**";
|
||||
else
|
||||
|
|
@ -537,6 +544,16 @@ namespace INT69DC_7C.Forms
|
|||
this.buttonBypassRun.Mode = SmartButton.BUTTONMODE.PUSH;
|
||||
}
|
||||
|
||||
// AlarmMessageBox1
|
||||
x = Screen.PrimaryScreen.Bounds.Width / 2 - this.panelAlarmMessageBox1.Size.Width / 2;
|
||||
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.panelAlarmMessageBox1.Size.Height / 2;
|
||||
this.panelAlarmMessageBox1.Location = new Point(x, y);
|
||||
this.panelAlarmMessageBox1.Visible = false;
|
||||
this.panelAlarmMessageBox1.BringToFront();
|
||||
// AlarmMessageBox3
|
||||
this.panelAlarmMessageBox3.Location = new Point(x, y);
|
||||
this.panelAlarmMessageBox3.Visible = false;
|
||||
this.panelAlarmMessageBox3.BringToFront();
|
||||
// Panel Setting
|
||||
this.panelSetting.Location = new Point(429, 115);
|
||||
this.panelSetting.Visible = false;
|
||||
|
|
@ -549,6 +566,13 @@ namespace INT69DC_7C.Forms
|
|||
this.panelSubMenu2.Location = new Point(4, 573);
|
||||
this.panelSubMenu2.Visible = false;
|
||||
this.panelSubMenu2.BringToFront();
|
||||
// AlarmListBox
|
||||
this.MainDisplayAlarmList = new ControlMainDisplayAlarm(this);
|
||||
x = Screen.PrimaryScreen.Bounds.Width / 2 - this.MainDisplayAlarmList.Width / 2;
|
||||
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.MainDisplayAlarmList.Height / 2;
|
||||
this.MainDisplayAlarmList.Location = new Point(x, y);
|
||||
this.Controls.Add(this.MainDisplayAlarmList);
|
||||
this.MainDisplayAlarmList.Visible = false;
|
||||
|
||||
// ICON
|
||||
this.pictureBoxUSBBackOn.Visible = this.ParentForm.SystemConfig.IsDataBackup;
|
||||
|
|
@ -634,6 +658,23 @@ namespace INT69DC_7C.Forms
|
|||
this.MainDisplayTable10.BringToFront();
|
||||
this.MainDisplayTable10.Location = new Point(0, 75);
|
||||
break;
|
||||
case 11:
|
||||
this.MainDisplayEachBarGraph11 = new ControlMainDisplayEachBarGraph11(this);
|
||||
this.Controls.Add(this.MainDisplayEachBarGraph11);
|
||||
this.MainDisplayEachBarGraph11.BringToFront();
|
||||
this.MainDisplayEachBarGraph11.Location = new Point(0, 75);
|
||||
this.MainDisplay = DataStore.FormMainDisplayStore.FormMainDisplayBarGraph;
|
||||
|
||||
this.MainDisplayDotGraph11 = new ControlMainDisplayDotGraph11(this);
|
||||
this.Controls.Add(this.MainDisplayDotGraph11);
|
||||
this.MainDisplayDotGraph11.BringToFront();
|
||||
this.MainDisplayDotGraph11.Location = new Point(0, 75);
|
||||
|
||||
this.MainDisplayTable11 = new ControlMainDisplayTable11(this);
|
||||
this.Controls.Add(this.MainDisplayTable11);
|
||||
this.MainDisplayTable11.BringToFront();
|
||||
this.MainDisplayTable11.Location = new Point(0, 75);
|
||||
break;
|
||||
case 12:
|
||||
this.MainDisplayEachBarGraph12 = new ControlMainDisplayEachBarGraph12(this);
|
||||
this.Controls.Add(this.MainDisplayEachBarGraph12);
|
||||
|
|
@ -658,8 +699,6 @@ namespace INT69DC_7C.Forms
|
|||
}
|
||||
private void DefaultSetting()
|
||||
{
|
||||
int x = 0, y = 0;
|
||||
|
||||
this.FlagTimeoutCount = 0;
|
||||
this.SubmenuIndex = 0;
|
||||
this.ChangeID = "";
|
||||
|
|
@ -669,17 +708,6 @@ namespace INT69DC_7C.Forms
|
|||
|
||||
this.RescaleControl();
|
||||
|
||||
// AlarmMessageBox
|
||||
x = Screen.PrimaryScreen.Bounds.Width / 2 - this.panelAlarmMessageBox1.Size.Width / 2;
|
||||
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.panelAlarmMessageBox1.Size.Height / 2;
|
||||
this.panelAlarmMessageBox1.Location = new Point(x, y);
|
||||
this.panelAlarmMessageBox1.Visible = false;
|
||||
this.panelAlarmMessageBox1.BringToFront();
|
||||
|
||||
this.panelAlarmMessageBox3.Location = new Point(x, y);
|
||||
this.panelAlarmMessageBox3.Visible = false;
|
||||
this.panelAlarmMessageBox3.BringToFront();
|
||||
|
||||
if (this.ParentForm.SystemConfig.IsLogin == true)
|
||||
this.UpdateDisplayUser(this.ParentForm.SystemConfig.CurrentUser);
|
||||
else
|
||||
|
|
@ -748,6 +776,16 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.Visible = false;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.Visible = true;
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.Visible = false;
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.Visible = false;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP);
|
||||
break;
|
||||
case 12:
|
||||
|
|
@ -801,6 +839,16 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.Visible = false;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.Visible = false;
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.Visible = true;
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.Visible = false;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP);
|
||||
break;
|
||||
case 12:
|
||||
|
|
@ -854,6 +902,16 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.Visible = true;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.Visible = false;
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.Visible = false;
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.Visible = true;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP);
|
||||
break;
|
||||
case 12:
|
||||
|
|
@ -910,6 +968,16 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.Visible = false;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.Visible = false;
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.Visible = false;
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.Visible = false;
|
||||
|
||||
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN);
|
||||
break;
|
||||
case 12:
|
||||
|
|
@ -1443,6 +1511,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateCurrentProductDisplay(status, weightDatas);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateCurrentProductDisplay(status, weightDatas);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateCurrentProductDisplay(status, weightDatas);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateCurrentProductDisplay(status, weightDatas);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateCurrentProductDisplay(status, weightDatas);
|
||||
|
|
@ -1518,6 +1594,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateEquipmentStatusDisplay(status);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateEquipmentStatusDisplay(status);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateEquipmentStatusDisplay(status);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateEquipmentStatusDisplay(status);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateEquipmentStatusDisplay(status);
|
||||
|
|
@ -1564,6 +1648,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStopWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStopWeightDisplay(status, weightDatas);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStopWeightDisplay(status, weightDatas);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStopWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStopWeightDisplay(status, weightDatas);
|
||||
|
|
@ -1616,6 +1708,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay(status, weightDatas);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay(status, weightDatas);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay(status, weightDatas);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay(status, weightDatas);
|
||||
|
|
@ -1667,6 +1767,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay1(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay1(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay1(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay1(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay1(status, weightData);
|
||||
|
|
@ -1712,6 +1820,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay2(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay2(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay2(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay2(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay2(status, weightData);
|
||||
|
|
@ -1734,32 +1850,40 @@ namespace INT69DC_7C.Forms
|
|||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||
{
|
||||
case 7:
|
||||
if (this.MainDisplayEachBarGraph7 != null)
|
||||
this.MainDisplayEachBarGraph7.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayEachBarGraph7 != null)
|
||||
this.MainDisplayEachBarGraph7.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayDotGraph7 != null)
|
||||
this.MainDisplayDotGraph7.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayTable7 != null)
|
||||
this.MainDisplayTable7.UpdateStartWeightDisplay3(status, weightData);
|
||||
break;
|
||||
case 8:
|
||||
if (this.MainDisplayEachBarGraph8 != null)
|
||||
this.MainDisplayEachBarGraph8.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayEachBarGraph8 != null)
|
||||
this.MainDisplayEachBarGraph8.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayDotGraph8 != null)
|
||||
this.MainDisplayDotGraph8.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayTable8 != null)
|
||||
this.MainDisplayTable8.UpdateStartWeightDisplay3(status, weightData);
|
||||
break;
|
||||
case 10:
|
||||
if (this.MainDisplayEachBarGraph10 != null)
|
||||
this.MainDisplayEachBarGraph10.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayEachBarGraph10 != null)
|
||||
this.MainDisplayEachBarGraph10.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayDotGraph10 != null)
|
||||
this.MainDisplayDotGraph10.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay3(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay3(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayDotGraph12 != null)
|
||||
this.MainDisplayDotGraph12.UpdateStartWeightDisplay3(status, weightData);
|
||||
if (this.MainDisplayTable12 != null)
|
||||
|
|
@ -1802,6 +1926,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay4(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay4(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay4(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay4(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay4(status, weightData);
|
||||
|
|
@ -1847,6 +1979,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay5(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay5(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay5(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay5(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay5(status, weightData);
|
||||
|
|
@ -1892,6 +2032,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay6(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay6(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay6(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay6(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay6(status, weightData);
|
||||
|
|
@ -1937,6 +2085,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay7(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay7(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay7(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay7(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay7(status, weightData);
|
||||
|
|
@ -1976,6 +2132,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay8(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay8(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay8(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay8(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay8(status, weightData);
|
||||
|
|
@ -2007,6 +2171,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay9(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay9(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay9(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay9(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay9(status, weightData);
|
||||
|
|
@ -2038,6 +2210,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateStartWeightDisplay10(status, weightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay10(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay10(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay10(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay10(status, weightData);
|
||||
|
|
@ -2063,6 +2243,14 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
case 10:
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateStartWeightDisplay11(status, weightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateStartWeightDisplay11(status, weightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateStartWeightDisplay11(status, weightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay11(status, weightData);
|
||||
|
|
@ -2088,6 +2276,8 @@ namespace INT69DC_7C.Forms
|
|||
break;
|
||||
case 10:
|
||||
break;
|
||||
case 11:
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay12(status, weightData);
|
||||
|
|
@ -2214,6 +2404,25 @@ namespace INT69DC_7C.Forms
|
|||
if (this.labelATPC_Lack.Text != value)
|
||||
this.labelATPC_Lack.Text = value;
|
||||
}
|
||||
public void UpdateDisplayAlarmView(AlarmList alarm)
|
||||
{
|
||||
if (alarm.IsEntrySensorError == true || alarm.IsLoadcellError == true || alarm.IsEmergencyStop == true)
|
||||
this.pictureBoxAlarm.Visible = true;
|
||||
else
|
||||
{
|
||||
this.pictureBoxAlarm.Visible = false;
|
||||
this.MainDisplayAlarmList.Visible = false;
|
||||
}
|
||||
|
||||
this.MainDisplayAlarmList.listBoxMessage.Items.Clear();
|
||||
|
||||
if (alarm.IsEntrySensorError == true)
|
||||
this.MainDisplayAlarmList.listBoxMessage.AddItem("Entry Sensor Error");
|
||||
if (alarm.IsLoadcellError == true)
|
||||
this.MainDisplayAlarmList.listBoxMessage.AddItem("LoadCell Error");
|
||||
if (alarm.IsEmergencyStop == true)
|
||||
this.MainDisplayAlarmList.listBoxMessage.AddItem("Emergency Stop");
|
||||
}
|
||||
|
||||
public void Clear()
|
||||
{
|
||||
|
|
@ -2246,6 +2455,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.Clear();
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.Clear();
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.Clear();
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.Clear();
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.Clear();
|
||||
|
|
@ -2293,6 +2510,13 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayDotGraph10 != null)
|
||||
this.MainDisplayDotGraph10.RescaleControl();
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.RescaleControl();
|
||||
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.RescaleControl();
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.RescaleControl();
|
||||
|
|
@ -2758,6 +2982,14 @@ namespace INT69DC_7C.Forms
|
|||
if (this.MainDisplayTable10 != null)
|
||||
this.MainDisplayTable10.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||
break;
|
||||
case 11:
|
||||
if (this.MainDisplayEachBarGraph11 != null)
|
||||
this.MainDisplayEachBarGraph11.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||
if (this.MainDisplayDotGraph11 != null)
|
||||
this.MainDisplayDotGraph11.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||
if (this.MainDisplayTable11 != null)
|
||||
this.MainDisplayTable11.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||
break;
|
||||
case 12:
|
||||
if (this.MainDisplayEachBarGraph12 != null)
|
||||
this.MainDisplayEachBarGraph12.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||
|
|
|
|||
|
|
@ -93,12 +93,6 @@
|
|||
<Compile Include="Controls\ControlChildformSystemSetting.Designer.cs">
|
||||
<DependentUpon>ControlChildformSystemSetting.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlCommunicationModbus.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlCommunicationModbus.Designer.cs">
|
||||
<DependentUpon>ControlCommunicationModbus.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlConfiguration1.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
|
|
@ -111,6 +105,12 @@
|
|||
<Compile Include="Controls\ControlEquipmentTest.Designer.cs">
|
||||
<DependentUpon>ControlEquipmentTest.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayAlarm.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayAlarm.Designer.cs">
|
||||
<DependentUpon>ControlMainDisplayAlarm.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayDotGraph10.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
|
|
@ -207,6 +207,30 @@
|
|||
<Compile Include="Controls\ControlUserSetting.designer.cs">
|
||||
<DependentUpon>ControlUserSetting.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlCalibration11.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlCalibration11.Designer.cs">
|
||||
<DependentUpon>ControlCalibration11.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayDotGraph11.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayDotGraph11.Designer.cs">
|
||||
<DependentUpon>ControlMainDisplayDotGraph11.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayEachBarGraph11.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayEachBarGraph11.Designer.cs">
|
||||
<DependentUpon>ControlMainDisplayEachBarGraph11.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayTable11.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Controls\ControlMainDisplayTable11.Designer.cs">
|
||||
<DependentUpon>ControlMainDisplayTable11.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="DataStore.cs" />
|
||||
<Compile Include="DialogForms\DialogFormDataStatistics.cs">
|
||||
<SubType>Form</SubType>
|
||||
|
|
@ -436,6 +460,10 @@
|
|||
<DependentUpon>ControlEquipmentTest.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayAlarm.resx">
|
||||
<DependentUpon>ControlMainDisplayAlarm.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayDotGraph10.resx">
|
||||
<DependentUpon>ControlMainDisplayDotGraph10.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
|
|
@ -500,6 +528,22 @@
|
|||
<DependentUpon>ControlUserSetting.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlCalibration11.resx">
|
||||
<DependentUpon>ControlCalibration11.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayDotGraph11.resx">
|
||||
<DependentUpon>ControlMainDisplayDotGraph11.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayEachBarGraph11.resx">
|
||||
<DependentUpon>ControlMainDisplayEachBarGraph11.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Controls\ControlMainDisplayTable11.resx">
|
||||
<DependentUpon>ControlMainDisplayTable11.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="DialogForms\DialogFormDataStatistics.resx">
|
||||
<DependentUpon>DialogFormDataStatistics.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
DllUserMgr.dll
|
||||
DllAes128.dll
|
||||
DllSerialMgr.dll
|
||||
InModbus.dll
|
||||
|
||||
COM4 : 프린터 전용(데이터통계)
|
||||
|
||||
|
|
@ -23,6 +24,17 @@
|
|||
멀티형 8,10,12열 컨베어/스틱 계량기
|
||||
*/
|
||||
|
||||
@ Ver 12.4.0 by LSJ
|
||||
- 2025.09.05
|
||||
- Ver 12.3.1 Modify
|
||||
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
|
||||
- 커멘드 복구 코드 추가
|
||||
- 메시지박스 이미지 변경(배경색 변경)
|
||||
- 알람 기능 추가
|
||||
SA000 : 1-입력센서, 2-로드셀, 8-비상정지
|
||||
Part11 : TrackingAlarm history 추가
|
||||
- 11열 추가
|
||||
|
||||
@ Ver 12.3.1 by CJY
|
||||
- 2025.08.21
|
||||
- Ver 12.3.0 Modify
|
||||
|
|
|
|||
Loading…
Reference in New Issue