Compare commits
No commits in common. "master" and "V12.2.0" have entirely different histories.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -65,15 +65,52 @@ namespace INT69DC_7C.Controls
|
||||||
this.CollLabelConstant.Clear();
|
this.CollLabelConstant.Clear();
|
||||||
this.CollCalStatus.Clear();
|
this.CollCalStatus.Clear();
|
||||||
|
|
||||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
this.CollButtonLane.Add(this.buttonLine1);
|
||||||
{
|
this.CollButtonLane.Add(this.buttonLine2);
|
||||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
this.CollButtonLane.Add(this.buttonLine3);
|
||||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollButtonLane.Add(this.buttonLine4);
|
||||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollButtonLane.Add(this.buttonLine5);
|
||||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
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 < 10; i++)
|
||||||
this.CollCalStatus.Add(new CalibrationStatus());
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,534 +0,0 @@
|
||||||
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();
|
|
||||||
|
|
||||||
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.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
|
|
@ -65,15 +65,60 @@ namespace INT69DC_7C.Controls
|
||||||
this.CollLabelConstant.Clear();
|
this.CollLabelConstant.Clear();
|
||||||
this.CollCalStatus.Clear();
|
this.CollCalStatus.Clear();
|
||||||
|
|
||||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
this.CollButtonLane.Add(this.buttonLine1);
|
||||||
{
|
this.CollButtonLane.Add(this.buttonLine2);
|
||||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
this.CollButtonLane.Add(this.buttonLine3);
|
||||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollButtonLane.Add(this.buttonLine4);
|
||||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollButtonLane.Add(this.buttonLine5);
|
||||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
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 < 12; i++)
|
||||||
this.CollCalStatus.Add(new CalibrationStatus());
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -65,15 +65,40 @@ namespace INT69DC_7C.Controls
|
||||||
this.CollLabelConstant.Clear();
|
this.CollLabelConstant.Clear();
|
||||||
this.CollCalStatus.Clear();
|
this.CollCalStatus.Clear();
|
||||||
|
|
||||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
this.CollButtonLane.Add(this.buttonLane1);
|
||||||
{
|
this.CollButtonLane.Add(this.buttonLane2);
|
||||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
this.CollButtonLane.Add(this.buttonLane3);
|
||||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollButtonLane.Add(this.buttonLane4);
|
||||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollButtonLane.Add(this.buttonLane5);
|
||||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
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 < 7; i++)
|
||||||
this.CollCalStatus.Add(new CalibrationStatus());
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -65,15 +65,44 @@ namespace INT69DC_7C.Controls
|
||||||
this.CollLabelConstant.Clear();
|
this.CollLabelConstant.Clear();
|
||||||
this.CollCalStatus.Clear();
|
this.CollCalStatus.Clear();
|
||||||
|
|
||||||
for (int i = 1; i <= this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
this.CollButtonLane.Add(this.buttonLine1);
|
||||||
{
|
this.CollButtonLane.Add(this.buttonLine2);
|
||||||
this.CollButtonLane.Add(FindByNameUtil.SmartButton("buttonLane" + i, this));
|
this.CollButtonLane.Add(this.buttonLine3);
|
||||||
this.CollLabelWeight.Add(FindByNameUtil.SmartLabel("labelWeight" + i, this));
|
this.CollButtonLane.Add(this.buttonLine4);
|
||||||
this.CollLabelADC.Add(FindByNameUtil.SmartLabel("labelADC" + i, this));
|
this.CollButtonLane.Add(this.buttonLine5);
|
||||||
this.CollLabelConstant.Add(FindByNameUtil.SmartLabel("labelConstant" + i, this));
|
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 < 8; i++)
|
||||||
this.CollCalStatus.Add(new CalibrationStatus());
|
this.CollCalStatus.Add(new CalibrationStatus());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
private void InitilizeControls()
|
private void InitilizeControls()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,19 @@
|
||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,166 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,78 +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;
|
|
||||||
|
|
||||||
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
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,194 +0,0 @@
|
||||||
<?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>
|
|
||||||
|
|
@ -1,885 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,336 +0,0 @@
|
||||||
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
|
|
@ -1,580 +0,0 @@
|
||||||
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
|
// WeightStorage
|
||||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||||
this.CollectionWeightStorageItem.Clear();
|
this.CollectionWeightStorageItem.Clear();
|
||||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
for (int i = 0; i < 10; i++)
|
||||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||||
|
|
||||||
#region Add Label
|
#region Add Label
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,866 +0,0 @@
|
||||||
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
|
// WeightStorage
|
||||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||||
this.CollectionWeightStorageItem.Clear();
|
this.CollectionWeightStorageItem.Clear();
|
||||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
for (int i = 0; i < 12; i++)
|
||||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||||
|
|
||||||
#region Add Label
|
#region Add Label
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ namespace INT69DC_7C.Controls
|
||||||
// WeightStorage
|
// WeightStorage
|
||||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||||
this.CollectionWeightStorageItem.Clear();
|
this.CollectionWeightStorageItem.Clear();
|
||||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
for (int i = 0; i < 7; i++)
|
||||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||||
|
|
||||||
#region Add Label
|
#region Add Label
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ namespace INT69DC_7C.Controls
|
||||||
// WeightStorage
|
// WeightStorage
|
||||||
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
this.CollectionWeightStorageItem = new Collection<WeightStorageItem>();
|
||||||
this.CollectionWeightStorageItem.Clear();
|
this.CollectionWeightStorageItem.Clear();
|
||||||
for (int i = 0; i < this.ParentForm.ParentForm.SystemConfig.EquipmentColumns; i++)
|
for (int i = 0; i < 8; i++)
|
||||||
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
this.CollectionWeightStorageItem.Add(new WeightStorageItem());
|
||||||
|
|
||||||
#region Add Label
|
#region Add Label
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,6 @@ namespace INT69DC_7C
|
||||||
{
|
{
|
||||||
public class DataStore
|
public class DataStore
|
||||||
{
|
{
|
||||||
public delegate void EventHandlerAlarmStateChange(DataStore.TrackingAlarm alarm, string status);
|
|
||||||
|
|
||||||
#region Enum
|
#region Enum
|
||||||
public enum EquipmentStatus
|
public enum EquipmentStatus
|
||||||
{
|
{
|
||||||
|
|
@ -61,7 +59,6 @@ namespace INT69DC_7C
|
||||||
Chinese,
|
Chinese,
|
||||||
Czech,
|
Czech,
|
||||||
German,
|
German,
|
||||||
Japanese,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
public enum UserGroup
|
public enum UserGroup
|
||||||
|
|
@ -571,10 +568,13 @@ namespace INT69DC_7C
|
||||||
}
|
}
|
||||||
public enum TrackingAlarm
|
public enum TrackingAlarm
|
||||||
{
|
{
|
||||||
a1_EntrySensorError,
|
None,
|
||||||
|
a1_PressureError,
|
||||||
a2_LoadcellError,
|
a2_LoadcellError,
|
||||||
|
a3_EntrySensorError,
|
||||||
a8_EmergencyStop,
|
a4_ServoTorqueAlarm,
|
||||||
|
a5_ServoAlarm,
|
||||||
|
a6_ServoOff,
|
||||||
}
|
}
|
||||||
public enum E_UserGroup_FileIndex
|
public enum E_UserGroup_FileIndex
|
||||||
{
|
{
|
||||||
|
|
@ -877,7 +877,6 @@ namespace INT69DC_7C
|
||||||
private bool m_IsAlarmTotalPassCntEnable;
|
private bool m_IsAlarmTotalPassCntEnable;
|
||||||
private bool m_IsOptPart11;
|
private bool m_IsOptPart11;
|
||||||
private bool m_IsOptPrinter;
|
private bool m_IsOptPrinter;
|
||||||
private bool m_IsSerialDLL;
|
|
||||||
|
|
||||||
private int m_DecimalPlaces;
|
private int m_DecimalPlaces;
|
||||||
private int m_EquipmentColumns;
|
private int m_EquipmentColumns;
|
||||||
|
|
@ -1056,11 +1055,6 @@ namespace INT69DC_7C
|
||||||
get { return this.m_IsOptPrinter; }
|
get { return this.m_IsOptPrinter; }
|
||||||
set { this.m_IsOptPrinter = value; }
|
set { this.m_IsOptPrinter = value; }
|
||||||
}
|
}
|
||||||
public bool IsSerialDLL
|
|
||||||
{
|
|
||||||
get { return this.m_IsSerialDLL; }
|
|
||||||
set { this.m_IsSerialDLL = value; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public int DecimalPlaces
|
public int DecimalPlaces
|
||||||
{
|
{
|
||||||
|
|
@ -1292,7 +1286,6 @@ namespace INT69DC_7C
|
||||||
this.IsAlarmTotalPassCntEnable = false;
|
this.IsAlarmTotalPassCntEnable = false;
|
||||||
this.IsOptPart11 = false;
|
this.IsOptPart11 = false;
|
||||||
this.IsOptPrinter = false;
|
this.IsOptPrinter = false;
|
||||||
this.IsSerialDLL = false;
|
|
||||||
|
|
||||||
this.DecimalPlaces = 1;
|
this.DecimalPlaces = 1;
|
||||||
this.EquipmentColumns = 10;
|
this.EquipmentColumns = 10;
|
||||||
|
|
@ -1326,7 +1319,7 @@ namespace INT69DC_7C
|
||||||
this.DataStoragePeriod = 36;
|
this.DataStoragePeriod = 36;
|
||||||
|
|
||||||
this.Unit = "g";
|
this.Unit = "g";
|
||||||
this.SerialNumber = "25I0000";
|
this.SerialNumber = "23D0000";
|
||||||
this.EthernetServerAddress = "0.0.0.0";
|
this.EthernetServerAddress = "0.0.0.0";
|
||||||
this.User_Level1_Name = "Level 1";
|
this.User_Level1_Name = "Level 1";
|
||||||
this.User_Level2_Name = "Level 2";
|
this.User_Level2_Name = "Level 2";
|
||||||
|
|
@ -1419,7 +1412,7 @@ namespace INT69DC_7C
|
||||||
public bool DummyBool12;
|
public bool DummyBool12;
|
||||||
public bool DummyBool13;
|
public bool DummyBool13;
|
||||||
public bool DummyBool14;
|
public bool DummyBool14;
|
||||||
public bool IsSerialDLL;
|
public bool DummyBool15;
|
||||||
public bool IsOptPrinter;
|
public bool IsOptPrinter;
|
||||||
public bool IsOptPart11;
|
public bool IsOptPart11;
|
||||||
public bool IsAlarmTotalPassCntEnable;
|
public bool IsAlarmTotalPassCntEnable;
|
||||||
|
|
@ -4548,217 +4541,4 @@ namespace INT69DC_7C
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
#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
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -97,7 +97,7 @@ namespace INT69DC_7C.DialogForms
|
||||||
#region File List 품번 순서데로 정렬
|
#region File List 품번 순서데로 정렬
|
||||||
foreach (FileInfo file in files)
|
foreach (FileInfo file in files)
|
||||||
{
|
{
|
||||||
fileName = file.Name.Split('-');
|
fileName = file.Name.Split('_');
|
||||||
dirNames.Add(file.Name, int.Parse(fileName[1].Substring(0, fileName[1].Length - 4)));
|
dirNames.Add(file.Name, int.Parse(fileName[1].Substring(0, fileName[1].Length - 4)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -128,7 +128,7 @@ namespace INT69DC_7C.DialogForms
|
||||||
#region File List 품번 순서데로 정렬
|
#region File List 품번 순서데로 정렬
|
||||||
foreach (FileInfo file in files)
|
foreach (FileInfo file in files)
|
||||||
{
|
{
|
||||||
fileName = file.Name.Split('-');
|
fileName = file.Name.Split('_');
|
||||||
dirNames.Add(file.Name, int.Parse(fileName[1].Substring(0, fileName[1].Length - 4)));
|
dirNames.Add(file.Name, int.Parse(fileName[1].Substring(0, fileName[1].Length - 4)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -316,7 +316,7 @@ namespace INT69DC_7C.DialogForms
|
||||||
fileName = e.Node.Text.Substring(0, e.Node.Text.Length - 4);
|
fileName = e.Node.Text.Substring(0, e.Node.Text.Length - 4);
|
||||||
|
|
||||||
this.ParentForm.SelectFilePath = string.Format("{0}{1}.csv", this.ParentForm.ParentForm.PathDataBackupFolder, fileName);
|
this.ParentForm.SelectFilePath = string.Format("{0}{1}.csv", this.ParentForm.ParentForm.PathDataBackupFolder, fileName);
|
||||||
name = fileName.Split('-');
|
name = fileName.Split('_');
|
||||||
this.labelFileName.Text = fileName;
|
this.labelFileName.Text = fileName;
|
||||||
this.labelDate.Text = string.Format("{0}.{1}.{2}", name[0].Substring(0, 4), name[0].Substring(4, 2), name[0].Substring(6, 2));
|
this.labelDate.Text = string.Format("{0}.{1}.{2}", name[0].Substring(0, 4), name[0].Substring(4, 2), name[0].Substring(6, 2));
|
||||||
this.labelProductNo.Text = name[1];
|
this.labelProductNo.Text = name[1];
|
||||||
|
|
@ -330,7 +330,7 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.ParentForm.ParentForm.PathDataInspectionFolder, fileName.Substring(1, 4), int.Parse(fileName.Substring(5, 2)), fileName);
|
this.ParentForm.ParentForm.PathDataInspectionFolder, fileName.Substring(1, 4), int.Parse(fileName.Substring(5, 2)), fileName);
|
||||||
this.ParentForm.SelectFilePath = pathFileName;
|
this.ParentForm.SelectFilePath = pathFileName;
|
||||||
|
|
||||||
name = fileName.Split('-');
|
name = fileName.Split('_');
|
||||||
this.labelFileName.Text = fileName;
|
this.labelFileName.Text = fileName;
|
||||||
this.labelDate.Text = string.Format("{0}.{1}.{2}", name[0].Substring(1, 4), name[0].Substring(5, 2), name[0].Substring(7, 2));
|
this.labelDate.Text = string.Format("{0}.{1}.{2}", name[0].Substring(1, 4), name[0].Substring(5, 2), name[0].Substring(7, 2));
|
||||||
this.labelProductNo.Text = name[1];
|
this.labelProductNo.Text = name[1];
|
||||||
|
|
|
||||||
|
|
@ -29,144 +29,105 @@
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormMessage));
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormMessage));
|
||||||
this.timerAutoClose = new System.Windows.Forms.Timer();
|
this.panel1 = new System.Windows.Forms.Panel();
|
||||||
this.smartForm1 = new SmartX.SmartForm();
|
|
||||||
this.labelErrorCode = new SmartX.SmartLabel();
|
|
||||||
this.labelMessage2 = new SmartX.SmartLabel();
|
|
||||||
this.labelMessage1 = new SmartX.SmartLabel();
|
|
||||||
this.pictureBoxExclamation = new System.Windows.Forms.PictureBox();
|
this.pictureBoxExclamation = new System.Windows.Forms.PictureBox();
|
||||||
this.pictureBoxHand = new System.Windows.Forms.PictureBox();
|
this.pictureBoxHand = new System.Windows.Forms.PictureBox();
|
||||||
this.pictureBoxAsterisk = new System.Windows.Forms.PictureBox();
|
this.pictureBoxAsterisk = new System.Windows.Forms.PictureBox();
|
||||||
this.pictureBoxQuestion = new System.Windows.Forms.PictureBox();
|
this.pictureBoxQuestion = new System.Windows.Forms.PictureBox();
|
||||||
|
this.labelMessage2 = new System.Windows.Forms.Label();
|
||||||
|
this.labelMessage1 = new System.Windows.Forms.Label();
|
||||||
this.buttonOK = new System.Windows.Forms.Button();
|
this.buttonOK = new System.Windows.Forms.Button();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
this.labelErrorCode = new System.Windows.Forms.Label();
|
||||||
|
this.timerAutoClose = new System.Windows.Forms.Timer();
|
||||||
|
this.panel1.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// timerAutoClose
|
// panel1
|
||||||
//
|
//
|
||||||
this.timerAutoClose.Interval = 1000;
|
this.panel1.BackColor = System.Drawing.Color.White;
|
||||||
this.timerAutoClose.Tick += new System.EventHandler(this.timerAutoClose_Tick);
|
this.panel1.Controls.Add(this.pictureBoxExclamation);
|
||||||
//
|
this.panel1.Controls.Add(this.pictureBoxHand);
|
||||||
// smartForm1
|
this.panel1.Controls.Add(this.pictureBoxAsterisk);
|
||||||
//
|
this.panel1.Controls.Add(this.pictureBoxQuestion);
|
||||||
this.smartForm1.CenterLocation = false;
|
this.panel1.Controls.Add(this.labelMessage2);
|
||||||
this.smartForm1.Image = ((System.Drawing.Image)(resources.GetObject("smartForm1.Image")));
|
this.panel1.Controls.Add(this.labelMessage1);
|
||||||
this.smartForm1.LCDDirection = SmartX.SmartForm.LCDDIRECTIONS.HORIZONTAL;
|
this.panel1.Location = new System.Drawing.Point(15, 34);
|
||||||
this.smartForm1.LCDSize = SmartX.SmartForm.LCDRESOLUTION.CUSTOMIZING;
|
this.panel1.Name = "panel1";
|
||||||
this.smartForm1.Location = new System.Drawing.Point(0, 0);
|
this.panel1.Size = new System.Drawing.Size(420, 95);
|
||||||
this.smartForm1.MainForm = null;
|
|
||||||
this.smartForm1.Mode = SmartX.SmartForm.RUNMODE.RUNTIME;
|
|
||||||
this.smartForm1.MouseCursor = SmartX.SmartForm.OnOff.OFF;
|
|
||||||
this.smartForm1.Name = "smartForm1";
|
|
||||||
this.smartForm1.Size = new System.Drawing.Size(450, 170);
|
|
||||||
this.smartForm1.SpecialFunctionClickPointSize = 100;
|
|
||||||
this.smartForm1.SuspendLayoutInterval = 1;
|
|
||||||
//
|
|
||||||
// labelErrorCode
|
|
||||||
//
|
|
||||||
this.labelErrorCode.BackColor = System.Drawing.Color.Gainsboro;
|
|
||||||
this.labelErrorCode.BackPictureBox = this.smartForm1;
|
|
||||||
this.labelErrorCode.BackPictureBox1 = null;
|
|
||||||
this.labelErrorCode.BackPictureBox2 = null;
|
|
||||||
this.labelErrorCode.BorderColor = System.Drawing.Color.Black;
|
|
||||||
this.labelErrorCode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
||||||
this.labelErrorCode.InitVisible = true;
|
|
||||||
this.labelErrorCode.LineSpacing = 0F;
|
|
||||||
this.labelErrorCode.Location = new System.Drawing.Point(12, 0);
|
|
||||||
this.labelErrorCode.Name = "labelErrorCode";
|
|
||||||
this.labelErrorCode.Size = new System.Drawing.Size(438, 32);
|
|
||||||
this.labelErrorCode.TabIndex = 9;
|
|
||||||
this.labelErrorCode.Text = " Error 0";
|
|
||||||
this.labelErrorCode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
|
||||||
this.labelErrorCode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
|
||||||
this.labelErrorCode.Wordwrap = false;
|
|
||||||
//
|
|
||||||
// labelMessage2
|
|
||||||
//
|
|
||||||
this.labelMessage2.BackPictureBox = this.smartForm1;
|
|
||||||
this.labelMessage2.BackPictureBox1 = null;
|
|
||||||
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("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
|
||||||
this.labelMessage2.InitVisible = true;
|
|
||||||
this.labelMessage2.LineSpacing = 0F;
|
|
||||||
this.labelMessage2.Location = new System.Drawing.Point(78, 90);
|
|
||||||
this.labelMessage2.Name = "labelMessage2";
|
|
||||||
this.labelMessage2.Size = new System.Drawing.Size(350, 20);
|
|
||||||
this.labelMessage2.TabIndex = 29;
|
|
||||||
this.labelMessage2.Text = "COM2 port problem. Please contact a manufacturer.";
|
|
||||||
this.labelMessage2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
|
||||||
this.labelMessage2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
|
||||||
this.labelMessage2.Wordwrap = false;
|
|
||||||
//
|
|
||||||
// labelMessage1
|
|
||||||
//
|
|
||||||
this.labelMessage1.BackPictureBox = this.smartForm1;
|
|
||||||
this.labelMessage1.BackPictureBox1 = null;
|
|
||||||
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("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
|
||||||
this.labelMessage1.InitVisible = true;
|
|
||||||
this.labelMessage1.LineSpacing = 0F;
|
|
||||||
this.labelMessage1.Location = new System.Drawing.Point(78, 60);
|
|
||||||
this.labelMessage1.Name = "labelMessage1";
|
|
||||||
this.labelMessage1.Size = new System.Drawing.Size(350, 20);
|
|
||||||
this.labelMessage1.TabIndex = 28;
|
|
||||||
this.labelMessage1.Text = "COM2 port problem. Please contact a manufacturer.";
|
|
||||||
this.labelMessage1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
|
||||||
this.labelMessage1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
|
||||||
this.labelMessage1.Wordwrap = false;
|
|
||||||
//
|
//
|
||||||
// pictureBoxExclamation
|
// pictureBoxExclamation
|
||||||
//
|
//
|
||||||
this.pictureBoxExclamation.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxExclamation.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxExclamation.Image")));
|
this.pictureBoxExclamation.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxExclamation.Image")));
|
||||||
this.pictureBoxExclamation.Location = new System.Drawing.Point(22, 60);
|
this.pictureBoxExclamation.Location = new System.Drawing.Point(11, 20);
|
||||||
this.pictureBoxExclamation.Name = "pictureBoxExclamation";
|
this.pictureBoxExclamation.Name = "pictureBoxExclamation";
|
||||||
this.pictureBoxExclamation.Size = new System.Drawing.Size(50, 50);
|
this.pictureBoxExclamation.Size = new System.Drawing.Size(50, 50);
|
||||||
//
|
//
|
||||||
// pictureBoxHand
|
// pictureBoxHand
|
||||||
//
|
//
|
||||||
this.pictureBoxHand.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxHand.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxHand.Image")));
|
this.pictureBoxHand.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxHand.Image")));
|
||||||
this.pictureBoxHand.Location = new System.Drawing.Point(22, 60);
|
this.pictureBoxHand.Location = new System.Drawing.Point(11, 20);
|
||||||
this.pictureBoxHand.Name = "pictureBoxHand";
|
this.pictureBoxHand.Name = "pictureBoxHand";
|
||||||
this.pictureBoxHand.Size = new System.Drawing.Size(50, 50);
|
this.pictureBoxHand.Size = new System.Drawing.Size(50, 50);
|
||||||
this.pictureBoxHand.Visible = false;
|
this.pictureBoxHand.Visible = false;
|
||||||
//
|
//
|
||||||
// pictureBoxAsterisk
|
// pictureBoxAsterisk
|
||||||
//
|
//
|
||||||
this.pictureBoxAsterisk.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxAsterisk.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxAsterisk.Image")));
|
this.pictureBoxAsterisk.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxAsterisk.Image")));
|
||||||
this.pictureBoxAsterisk.Location = new System.Drawing.Point(22, 60);
|
this.pictureBoxAsterisk.Location = new System.Drawing.Point(11, 20);
|
||||||
this.pictureBoxAsterisk.Name = "pictureBoxAsterisk";
|
this.pictureBoxAsterisk.Name = "pictureBoxAsterisk";
|
||||||
this.pictureBoxAsterisk.Size = new System.Drawing.Size(50, 50);
|
this.pictureBoxAsterisk.Size = new System.Drawing.Size(50, 50);
|
||||||
this.pictureBoxAsterisk.Visible = false;
|
this.pictureBoxAsterisk.Visible = false;
|
||||||
//
|
//
|
||||||
// pictureBoxQuestion
|
// pictureBoxQuestion
|
||||||
//
|
//
|
||||||
this.pictureBoxQuestion.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxQuestion.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxQuestion.Image")));
|
this.pictureBoxQuestion.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxQuestion.Image")));
|
||||||
this.pictureBoxQuestion.Location = new System.Drawing.Point(22, 60);
|
this.pictureBoxQuestion.Location = new System.Drawing.Point(11, 20);
|
||||||
this.pictureBoxQuestion.Name = "pictureBoxQuestion";
|
this.pictureBoxQuestion.Name = "pictureBoxQuestion";
|
||||||
this.pictureBoxQuestion.Size = new System.Drawing.Size(50, 50);
|
this.pictureBoxQuestion.Size = new System.Drawing.Size(50, 50);
|
||||||
this.pictureBoxQuestion.Visible = false;
|
this.pictureBoxQuestion.Visible = false;
|
||||||
//
|
//
|
||||||
|
// labelMessage2
|
||||||
|
//
|
||||||
|
this.labelMessage2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||||
|
this.labelMessage2.Location = new System.Drawing.Point(67, 51);
|
||||||
|
this.labelMessage2.Name = "labelMessage2";
|
||||||
|
this.labelMessage2.Size = new System.Drawing.Size(350, 20);
|
||||||
|
this.labelMessage2.Text = "COM2 port problem. Please contact a manufacturer.";
|
||||||
|
//
|
||||||
|
// labelMessage1
|
||||||
|
//
|
||||||
|
this.labelMessage1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||||
|
this.labelMessage1.Location = new System.Drawing.Point(67, 20);
|
||||||
|
this.labelMessage1.Name = "labelMessage1";
|
||||||
|
this.labelMessage1.Size = new System.Drawing.Size(350, 20);
|
||||||
|
this.labelMessage1.Text = "COM2 port problem. Please contact a manufacturer.";
|
||||||
|
//
|
||||||
// buttonOK
|
// buttonOK
|
||||||
//
|
//
|
||||||
this.buttonOK.BackColor = System.Drawing.Color.WhiteSmoke;
|
this.buttonOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonOK.Font = new System.Drawing.Font("New Gulim", 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.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonOK.Location = new System.Drawing.Point(335, 135);
|
this.buttonOK.Location = new System.Drawing.Point(335, 135);
|
||||||
this.buttonOK.Name = "buttonOK";
|
this.buttonOK.Name = "buttonOK";
|
||||||
this.buttonOK.Size = new System.Drawing.Size(100, 25);
|
this.buttonOK.Size = new System.Drawing.Size(100, 25);
|
||||||
this.buttonOK.TabIndex = 27;
|
this.buttonOK.TabIndex = 5;
|
||||||
this.buttonOK.TabStop = false;
|
this.buttonOK.TabStop = false;
|
||||||
this.buttonOK.Text = "OK";
|
this.buttonOK.Text = "OK";
|
||||||
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
||||||
//
|
//
|
||||||
|
// labelErrorCode
|
||||||
|
//
|
||||||
|
this.labelErrorCode.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||||
|
this.labelErrorCode.Location = new System.Drawing.Point(15, 11);
|
||||||
|
this.labelErrorCode.Name = "labelErrorCode";
|
||||||
|
this.labelErrorCode.Size = new System.Drawing.Size(350, 20);
|
||||||
|
this.labelErrorCode.Text = "Error 0";
|
||||||
|
//
|
||||||
|
// timerAutoClose
|
||||||
|
//
|
||||||
|
this.timerAutoClose.Interval = 1000;
|
||||||
|
this.timerAutoClose.Tick += new System.EventHandler(this.timerAutoClose_Tick);
|
||||||
|
//
|
||||||
// DialogFormMessage
|
// DialogFormMessage
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
|
|
@ -174,34 +135,28 @@
|
||||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(200)))), ((int)(((byte)(250)))));
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(200)))), ((int)(((byte)(250)))));
|
||||||
this.ClientSize = new System.Drawing.Size(450, 170);
|
this.ClientSize = new System.Drawing.Size(450, 170);
|
||||||
this.ControlBox = false;
|
this.ControlBox = false;
|
||||||
this.Controls.Add(this.pictureBoxAsterisk);
|
this.Controls.Add(this.panel1);
|
||||||
this.Controls.Add(this.pictureBoxHand);
|
|
||||||
this.Controls.Add(this.pictureBoxExclamation);
|
|
||||||
this.Controls.Add(this.labelMessage2);
|
|
||||||
this.Controls.Add(this.labelMessage1);
|
|
||||||
this.Controls.Add(this.pictureBoxQuestion);
|
|
||||||
this.Controls.Add(this.buttonOK);
|
this.Controls.Add(this.buttonOK);
|
||||||
this.Controls.Add(this.labelErrorCode);
|
this.Controls.Add(this.labelErrorCode);
|
||||||
this.Controls.Add(this.smartForm1);
|
|
||||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.Name = "DialogFormMessage";
|
this.Name = "DialogFormMessage";
|
||||||
this.Text = "DialogFormMessage1";
|
this.Text = "DialogFormMessage1";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
this.panel1.ResumeLayout(false);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private System.Windows.Forms.Timer timerAutoClose;
|
private System.Windows.Forms.Panel panel1;
|
||||||
private SmartX.SmartForm smartForm1;
|
|
||||||
private SmartX.SmartLabel labelErrorCode;
|
|
||||||
private SmartX.SmartLabel labelMessage2;
|
|
||||||
private SmartX.SmartLabel labelMessage1;
|
|
||||||
private System.Windows.Forms.PictureBox pictureBoxExclamation;
|
private System.Windows.Forms.PictureBox pictureBoxExclamation;
|
||||||
|
private System.Windows.Forms.Label labelMessage2;
|
||||||
|
private System.Windows.Forms.Label labelMessage1;
|
||||||
|
private System.Windows.Forms.Button buttonOK;
|
||||||
|
private System.Windows.Forms.Label labelErrorCode;
|
||||||
private System.Windows.Forms.PictureBox pictureBoxHand;
|
private System.Windows.Forms.PictureBox pictureBoxHand;
|
||||||
private System.Windows.Forms.PictureBox pictureBoxAsterisk;
|
private System.Windows.Forms.PictureBox pictureBoxAsterisk;
|
||||||
private System.Windows.Forms.PictureBox pictureBoxQuestion;
|
private System.Windows.Forms.PictureBox pictureBoxQuestion;
|
||||||
private System.Windows.Forms.Button buttonOK;
|
private System.Windows.Forms.Timer timerAutoClose;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -170,52 +170,12 @@ namespace INT69DC_7C.DialogForms
|
||||||
break;
|
break;
|
||||||
case 34:
|
case 34:
|
||||||
this.labelErrorCode.Text = "Error 34";
|
this.labelErrorCode.Text = "Error 34";
|
||||||
this.labelMessage1.Text = "ID : 동일한 ID가 있습니다";
|
this.labelMessage1.Text = "동일한 ID가 있습니다!";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 35:
|
case 35:
|
||||||
this.labelErrorCode.Text = "Error 35";
|
this.labelErrorCode.Text = "Error 35";
|
||||||
this.labelMessage1.Text = "ID : 6~20자 입력 하세요";
|
this.labelMessage1.Text = "4~10자 입력 하세요!";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 36:
|
|
||||||
this.labelErrorCode.Text = "Error 36";
|
|
||||||
this.labelMessage1.Text = "ID : 동일한 문자(111,222,aaa...)를";
|
|
||||||
this.labelMessage2.Text = "3번 이상 사용할 수 없습니다";
|
|
||||||
break;
|
|
||||||
case 37:
|
|
||||||
this.labelErrorCode.Text = "Error 37";
|
|
||||||
this.labelMessage1.Text = "ID : 연속된 문자(123,321,abc,cba...)를";
|
|
||||||
this.labelMessage2.Text = "사용할 수 없습니다";
|
|
||||||
break;
|
|
||||||
case 38:
|
|
||||||
this.labelErrorCode.Text = "Error 38";
|
|
||||||
this.labelMessage1.Text = "PASSWORD : 6~20자 입력 하세요";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 39:
|
|
||||||
this.labelErrorCode.Text = "Error 39";
|
|
||||||
this.labelMessage1.Text = "PASSWORD : 동일한 문자(111,222,aaa...)를";
|
|
||||||
this.labelMessage2.Text = "3번 이상 사용할 수 없습니다";
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
this.labelErrorCode.Text = "Error 40";
|
|
||||||
this.labelMessage1.Text = "PASSWORD : 연속된 문자(123,321,abc,cba...)를";
|
|
||||||
this.labelMessage2.Text = "사용할 수 없습니다";
|
|
||||||
break;
|
|
||||||
case 41:
|
|
||||||
this.labelErrorCode.Text = "Error 41";
|
|
||||||
this.labelMessage1.Text = "PASSWORD : 영문1이상, 숫자1이상, 특수문자1이상";
|
|
||||||
this.labelMessage2.Text = "포함하여 주십시오";
|
|
||||||
break;
|
|
||||||
case 42:
|
|
||||||
this.labelErrorCode.Text = "Error 42";
|
|
||||||
this.labelMessage1.Text = "PASSWORD : 이전에 설정한 패스워드입니다";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 43:
|
|
||||||
this.labelErrorCode.Text = "Notice 43";
|
|
||||||
this.labelMessage1.Text = "자동 로그아웃 됩니다";
|
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
@ -302,8 +262,9 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.labelMessage1.Text = "Please run the initialization";
|
this.labelMessage1.Text = "Please run the initialization";
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
this.labelErrorCode.Text = "Error 18";
|
this.labelErrorCode.Text = "Info 18";
|
||||||
this.labelMessage1.Text = "Turn the power off and back on.";
|
this.labelMessage1.Text = "Turn OFF the power";
|
||||||
|
this.labelMessage2.Text = "and then turn ON the power.";
|
||||||
break;
|
break;
|
||||||
case 19:
|
case 19:
|
||||||
break;
|
break;
|
||||||
|
|
@ -334,46 +295,6 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.labelMessage1.Text = "Please enter 4-10 characters";
|
this.labelMessage1.Text = "Please enter 4-10 characters";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 36:
|
|
||||||
this.labelErrorCode.Text = "Error 36";
|
|
||||||
this.labelMessage1.Text = "ID: The same character (111,222,aaa...)";
|
|
||||||
this.labelMessage2.Text = "cannot be used more than 3 times";
|
|
||||||
break;
|
|
||||||
case 37:
|
|
||||||
this.labelErrorCode.Text = "Error 37";
|
|
||||||
this.labelMessage1.Text = "ID: Consecutive characters (123,321,abc,cba...)";
|
|
||||||
this.labelMessage2.Text = "cannot be used";
|
|
||||||
break;
|
|
||||||
case 38:
|
|
||||||
this.labelErrorCode.Text = "Error 38";
|
|
||||||
this.labelMessage1.Text = "PASSWORD: Enter 6~20 characters";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 39:
|
|
||||||
this.labelErrorCode.Text = "Error 39";
|
|
||||||
this.labelMessage1.Text = "PASSWORD: The same character (111,222,aaa...)";
|
|
||||||
this.labelMessage2.Text = "cannot be used more than 3 times";
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
this.labelErrorCode.Text = "Error 40";
|
|
||||||
this.labelMessage1.Text = "PASSWORD: Consecutive characters";
|
|
||||||
this.labelMessage2.Text = "(123,321,abc,cba...) cannot be used";
|
|
||||||
break;
|
|
||||||
case 41:
|
|
||||||
this.labelErrorCode.Text = "Error 41";
|
|
||||||
this.labelMessage1.Text = "PASSWORD: Include at least 1 English letter,";
|
|
||||||
this.labelMessage2.Text = "at least 1 number, and at least 1 special character";
|
|
||||||
break;
|
|
||||||
case 42:
|
|
||||||
this.labelErrorCode.Text = "Error 42";
|
|
||||||
this.labelMessage1.Text = "PASSWORD: This is the password you set previously";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 43:
|
|
||||||
this.labelErrorCode.Text = "Notice 43";
|
|
||||||
this.labelMessage1.Text = "You will be automatically logged out";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
this.labelErrorCode.Text = "Error 99";
|
this.labelErrorCode.Text = "Error 99";
|
||||||
this.labelMessage1.Text = "Please contact a manufacturer";
|
this.labelMessage1.Text = "Please contact a manufacturer";
|
||||||
|
|
@ -421,7 +342,7 @@ namespace INT69DC_7C.DialogForms
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
this.labelErrorCode.Text = "錯誤 09";
|
this.labelErrorCode.Text = "錯誤 09";
|
||||||
this.labelMessage1.Text = "USB没有文件夹需要更新文件다";
|
this.labelMessage1.Text = "USB没有文件夹需要更新文件";
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
this.labelErrorCode.Text = "錯誤 10";
|
this.labelErrorCode.Text = "錯誤 10";
|
||||||
|
|
@ -429,38 +350,38 @@ namespace INT69DC_7C.DialogForms
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 11:
|
||||||
this.labelErrorCode.Text = "錯誤 11";
|
this.labelErrorCode.Text = "錯誤 11";
|
||||||
this.labelMessage1.Text = "由于入口传感器错误导致紧急停止";
|
this.labelMessage1.Text = "由于进入传感器错误导致紧急停止";
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
this.labelErrorCode.Text = "注意 12";
|
this.labelErrorCode.Text = "警告 12";
|
||||||
this.labelMessage1.Text = "检查您的反馈设置!死区范围";
|
this.labelMessage1.Text = "检查您的反馈设置!";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "DeadZone Range";
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 13:
|
||||||
this.labelErrorCode.Text = "錯誤 13";
|
this.labelErrorCode.Text = "錯誤 13";
|
||||||
this.labelMessage1.Text = "不支援这个档案";
|
this.labelMessage1.Text = "不支援这个档案";
|
||||||
break;
|
break;
|
||||||
case 14:
|
case 14:
|
||||||
this.labelErrorCode.Text = "注意 14";
|
this.labelErrorCode.Text = "警告 14";
|
||||||
this.labelMessage1.Text = "检查您的反馈设置!上限范围";
|
this.labelMessage1.Text = "检查您的反馈设置!";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "High Limit Range";
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
this.labelErrorCode.Text = "注意 15";
|
this.labelErrorCode.Text = "警告 15";
|
||||||
this.labelMessage1.Text = "检查您的反馈设置!下限范围";
|
this.labelMessage1.Text = "检查您的反馈设置!";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "Low Limit Range";
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
this.labelErrorCode.Text = "錯誤 16";
|
this.labelErrorCode.Text = "Error 16";
|
||||||
this.labelMessage1.Text = "目前,Modbus 仅支持“客户端”。";
|
this.labelMessage1.Text = "目前,Modbus 仅支持“客户端”。";
|
||||||
this.labelMessage2.Text = "切换到“客户端”模式。";
|
this.labelMessage2.Text = "切换到客户端模式。";
|
||||||
break;
|
break;
|
||||||
case 17:
|
case 17:
|
||||||
this.labelErrorCode.Text = "錯誤 17";
|
this.labelErrorCode.Text = "錯誤 17";
|
||||||
this.labelMessage1.Text = "运行初始化";
|
this.labelMessage1.Text = "运行初始化";
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
this.labelErrorCode.Text = "錯誤 18";
|
this.labelErrorCode.Text = "信息 18";
|
||||||
this.labelMessage1.Text = "关掉电源,然后在打开电源";
|
this.labelMessage1.Text = "关掉电源,然后在打开电源";
|
||||||
break;
|
break;
|
||||||
case 19:
|
case 19:
|
||||||
|
|
@ -492,46 +413,6 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.labelMessage1.Text = "请输入4-10个字符";
|
this.labelMessage1.Text = "请输入4-10个字符";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 36:
|
|
||||||
this.labelErrorCode.Text = "錯誤 36";
|
|
||||||
this.labelMessage1.Text = "ID:相同字符(111、222、aaa……)不能使用超过3次";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 37:
|
|
||||||
this.labelErrorCode.Text = "錯誤 37";
|
|
||||||
this.labelMessage1.Text = "ID:连续字符(123、321、abc、cba……)不能使用";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 38:
|
|
||||||
this.labelErrorCode.Text = "錯誤 38";
|
|
||||||
this.labelMessage1.Text = "密码:请输入6至20个字符";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 39:
|
|
||||||
this.labelErrorCode.Text = "錯誤 39";
|
|
||||||
this.labelMessage1.Text = "密码:相同字符(111、222、aaa……)不能使用超过3次";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
this.labelErrorCode.Text = "錯誤 40";
|
|
||||||
this.labelMessage1.Text = "密码:连续字符(123、321、abc、cba……)不能使用";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 41:
|
|
||||||
this.labelErrorCode.Text = "錯誤 41";
|
|
||||||
this.labelMessage1.Text = "密码:至少包含1个英文字母、1个数字和1个特殊字符";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 42:
|
|
||||||
this.labelErrorCode.Text = "錯誤 42";
|
|
||||||
this.labelMessage1.Text = "密码:这是您之前设置的密码";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 43:
|
|
||||||
this.labelErrorCode.Text = "注意 43";
|
|
||||||
this.labelMessage1.Text = "您将自动退出";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
this.labelErrorCode.Text = "錯誤 99";
|
this.labelErrorCode.Text = "錯誤 99";
|
||||||
this.labelMessage1.Text = "请联系厂商";
|
this.labelMessage1.Text = "请联系厂商";
|
||||||
|
|
@ -544,63 +425,53 @@ namespace INT69DC_7C.DialogForms
|
||||||
switch (code)
|
switch (code)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
this.labelErrorCode.Text = "Chyba 01";
|
this.labelErrorCode.Text = "Chybě 01";
|
||||||
this.labelMessage1.Text = "Potvrďte zadanou hodnotu";
|
this.labelMessage1.Text = "Potvrďte vstupní rozsah.";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
this.labelErrorCode.Text = "Chyba 02";
|
this.labelErrorCode.Text = "Chybě 02";
|
||||||
this.labelMessage1.Text = "Software je aktuální";
|
this.labelMessage1.Text = "Aplikace je aktuální.";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
this.labelErrorCode.Text = "Chyba 03";
|
this.labelErrorCode.Text = "Chybě 03";
|
||||||
this.labelMessage1.Text = "Detekovat neustále chybějící produkt";
|
this.labelMessage1.Text = "Detekce plynulosti N.G.";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
this.labelErrorCode.Text = "Chyba 04";
|
this.labelErrorCode.Text = "Chybě 04";
|
||||||
this.labelMessage1.Text = "Chybí zálohové soubory";
|
this.labelMessage1.Text = "Neexistují žádné záložní soubory.";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
this.labelErrorCode.Text = "Chyba 05";
|
this.labelErrorCode.Text = "Chybě 05";
|
||||||
this.labelMessage1.Text = "USB nepřipojeno";
|
this.labelMessage1.Text = "USB disk není připojen";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
this.labelErrorCode.Text = "Chyba 06";
|
this.labelErrorCode.Text = "Chybě 06";
|
||||||
this.labelMessage1.Text = "Kontaktujte výrobce";
|
this.labelMessage1.Text = "Kontaktujte výrobce";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
this.labelErrorCode.Text = "Chyba 07";
|
this.labelErrorCode.Text = "Chybě 07";
|
||||||
this.labelMessage1.Text = "Na USB chybí aktualizační soubory";
|
this.labelMessage1.Text = "Na USB disku nejsou žádné aktualizační soubory";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
this.labelErrorCode.Text = "Chyba 08";
|
this.labelErrorCode.Text = "Chybě 08";
|
||||||
this.labelMessage1.Text = "Příliš mnoho souboru k aktualizaci";
|
this.labelMessage1.Text = "Příliš mnoho souboru k aktualizaci";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
this.labelErrorCode.Text = "Chyba 09";
|
this.labelErrorCode.Text = "Chybě 09";
|
||||||
this.labelMessage1.Text = "Na USB disku není žádná složka s aktualizačními soubory.";
|
this.labelMessage1.Text = "Na USB disku není žádná složka s aktualizačními soubory.";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
this.labelErrorCode.Text = "Chyba 10";
|
this.labelErrorCode.Text = "Chybě 10";
|
||||||
this.labelMessage1.Text = "Chybí paměť";
|
this.labelMessage1.Text = "Není žádná PAMĚTI";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 11:
|
||||||
this.labelErrorCode.Text = "Chyba 11";
|
this.labelErrorCode.Text = "Chybě 11";
|
||||||
this.labelMessage1.Text = "Nouzové zastavení z důvodu chyby vstupního senzoru";
|
this.labelMessage1.Text = "Nouzové zastavení z důvodu chyby snímače vstupu";
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
this.labelErrorCode.Text = "Varování 12";
|
this.labelErrorCode.Text = "Varování 12";
|
||||||
this.labelMessage1.Text = "Zkontrolujte nastavení zpětné vazby!";
|
this.labelMessage1.Text = "Zkontrolujte nastavení zpětné vazby!";
|
||||||
this.labelMessage2.Text = "Rozsah mrtvé zóny";
|
this.labelMessage2.Text = "DeadZone Range";
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 13:
|
||||||
this.labelErrorCode.Text = "Chybě 13";
|
this.labelErrorCode.Text = "Chybě 13";
|
||||||
|
|
@ -609,27 +480,26 @@ namespace INT69DC_7C.DialogForms
|
||||||
case 14:
|
case 14:
|
||||||
this.labelErrorCode.Text = "Varování 14";
|
this.labelErrorCode.Text = "Varování 14";
|
||||||
this.labelMessage1.Text = "Zkontrolujte nastavení zpětné vazby!";
|
this.labelMessage1.Text = "Zkontrolujte nastavení zpětné vazby!";
|
||||||
this.labelMessage2.Text = "Rozsah horního limitu";
|
this.labelMessage2.Text = "High Limit Range";
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
this.labelErrorCode.Text = "Varování 15";
|
this.labelErrorCode.Text = "Varování 15";
|
||||||
this.labelMessage1.Text = "Zkontrolujte nastavení zpětné vazby!";
|
this.labelMessage1.Text = "Zkontrolujte nastavení zpětné vazby!";
|
||||||
this.labelMessage2.Text = "Rozsah dolního limitu";
|
this.labelMessage2.Text = "Low Limit Range";
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
this.labelErrorCode.Text = "Chyba 16";
|
this.labelErrorCode.Text = "Error 16";
|
||||||
this.labelMessage1.Text = "V současné době je pro Modbus podporován";
|
this.labelMessage1.Text = "V současné době je pro Modbus podporován";
|
||||||
this.labelMessage2.Text = "pouze režim „Klient“. Přepne do režimu „Klient“.";
|
this.labelMessage2.Text = "pouze 'Klient'. Přepne do režimu „Klient“.";
|
||||||
break;
|
break;
|
||||||
case 17:
|
case 17:
|
||||||
this.labelErrorCode.Text = "Chybě 17";
|
this.labelErrorCode.Text = "Chybě 17";
|
||||||
this.labelMessage1.Text = "Prosím proveďte spuštění";
|
this.labelMessage1.Text = "Spusťte inicializaci";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
this.labelErrorCode.Text = "Chybě 18";
|
this.labelErrorCode.Text = "informace 18";
|
||||||
this.labelMessage1.Text = "Vypněte a zapněte hlavním vypínačem";
|
this.labelMessage1.Text = "Nejprve zařízení";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "vypněte a pak opět zapněte.";
|
||||||
break;
|
break;
|
||||||
case 19:
|
case 19:
|
||||||
break;
|
break;
|
||||||
|
|
@ -660,50 +530,9 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.labelMessage1.Text = "Zadejte 4–10 znaků";
|
this.labelMessage1.Text = "Zadejte 4–10 znaků";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 36:
|
|
||||||
this.labelErrorCode.Text = "Chybě 36";
|
|
||||||
this.labelMessage1.Text = "ID: Stejný znak (111, 222, aaa...) nelze použít více";
|
|
||||||
this.labelMessage2.Text = "než 3krát";
|
|
||||||
break;
|
|
||||||
case 37:
|
|
||||||
this.labelErrorCode.Text = "Chybě 37";
|
|
||||||
this.labelMessage1.Text = "ID: Nelze použít po sobě jdoucí znaky";
|
|
||||||
this.labelMessage2.Text = "(123, 321, abc, cba...)";
|
|
||||||
break;
|
|
||||||
case 38:
|
|
||||||
this.labelErrorCode.Text = "Chybě 38";
|
|
||||||
this.labelMessage1.Text = "HESLO: Zadejte 6–20 znaků";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 39:
|
|
||||||
this.labelErrorCode.Text = "Chybě 39";
|
|
||||||
this.labelMessage1.Text = "HESLO: Stejný znak (111, 222, aaa...)";
|
|
||||||
this.labelMessage2.Text = "nelze použít více než 3krát";
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
this.labelErrorCode.Text = "Chybě 40";
|
|
||||||
this.labelMessage1.Text = "HESLO: Nelze použít po sobě jdoucí znaky";
|
|
||||||
this.labelMessage2.Text = "(123, 321, abc, cba...)";
|
|
||||||
break;
|
|
||||||
case 41:
|
|
||||||
this.labelErrorCode.Text = "Chybě 41";
|
|
||||||
this.labelMessage1.Text = "HESLO: Obsahuje alespoň 1 anglické písmeno,";
|
|
||||||
this.labelMessage2.Text = "alespoň 1 číslici a alespoň 1 speciální znak";
|
|
||||||
break;
|
|
||||||
case 42:
|
|
||||||
this.labelErrorCode.Text = "Chybě 42";
|
|
||||||
this.labelMessage1.Text = "HESLO: Toto je heslo, které jste si nastavili dříve";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 43:
|
|
||||||
this.labelErrorCode.Text = "Upozornění 43";
|
|
||||||
this.labelMessage1.Text = "Budete automaticky odhlášeni";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
this.labelErrorCode.Text = "Chybě 99";
|
this.labelErrorCode.Text = "Chybě 99";
|
||||||
this.labelMessage1.Text = "Kontaktujte výrobce";
|
this.labelMessage1.Text = "Kontaktujte výrobce";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
@ -756,38 +585,38 @@ namespace INT69DC_7C.DialogForms
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 11:
|
||||||
this.labelErrorCode.Text = "Fehler 11";
|
this.labelErrorCode.Text = "Fehler 11";
|
||||||
this.labelMessage1.Text = "Notstopp aufgrund eines Eingangssensorfehlers";
|
this.labelMessage1.Text = "Notstopp aufgrund eines Eintrittssensorfehlers";
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
this.labelErrorCode.Text = "Warnung 12";
|
this.labelErrorCode.Text = "Warning 12";
|
||||||
this.labelMessage1.Text = "Überprüfen Sie Ihre Feedback-Einstellungen!";
|
this.labelMessage1.Text = "Überprüfen Sie Ihre Feedback-Einstellungen!";
|
||||||
this.labelMessage2.Text = "Totzonenbereich";
|
this.labelMessage2.Text = "DeadZone Range";
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 13:
|
||||||
this.labelErrorCode.Text = "Fehler 13";
|
this.labelErrorCode.Text = "Fehler 13";
|
||||||
this.labelMessage1.Text = "Diese Datei wird nicht unterstützt";
|
this.labelMessage1.Text = "Diese Datei wird nicht unterstützt";
|
||||||
break;
|
break;
|
||||||
case 14:
|
case 14:
|
||||||
this.labelErrorCode.Text = "Warnung 14";
|
this.labelErrorCode.Text = "Warning 14";
|
||||||
this.labelMessage1.Text = "Überprüfen Sie Ihre Feedback-Einstellungen!";
|
this.labelMessage1.Text = "Überprüfen Sie Ihre Feedback-Einstellungen!";
|
||||||
this.labelMessage2.Text = "Oberer Grenzwertbereich";
|
this.labelMessage2.Text = "High Limit Range";
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
this.labelErrorCode.Text = "Warnung 15";
|
this.labelErrorCode.Text = "Warning 15";
|
||||||
this.labelMessage1.Text = "Überprüfen Sie Ihre Feedback-Einstellungen!";
|
this.labelMessage1.Text = "Überprüfen Sie Ihre Feedback-Einstellungen!";
|
||||||
this.labelMessage2.Text = "Unterer Grenzwertbereich";
|
this.labelMessage2.Text = "Low Limit Range";
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
this.labelErrorCode.Text = "Fehler 16";
|
this.labelErrorCode.Text = "Error 16";
|
||||||
this.labelMessage1.Text = "Derzeit wird nur der „Client“-Modus für Modbus unterstützt.";
|
this.labelMessage1.Text = "Derzeit wird für Modbus nur der 'Client' unterstützt.";
|
||||||
this.labelMessage2.Text = "Wechselt in den „Client“-Modus.";
|
this.labelMessage2.Text = "Wechselt in den 'Client'-Modus.";
|
||||||
break;
|
break;
|
||||||
case 17:
|
case 17:
|
||||||
this.labelErrorCode.Text = "Fehler 17";
|
this.labelErrorCode.Text = "Fehler 17";
|
||||||
this.labelMessage1.Text = "Bitte starten";
|
this.labelMessage1.Text = "Bitte starten";
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
this.labelErrorCode.Text = "Fehler 18";
|
this.labelErrorCode.Text = "Information 18";
|
||||||
this.labelMessage1.Text = "Mit dem Hauptschalter";
|
this.labelMessage1.Text = "Mit dem Hauptschalter";
|
||||||
this.labelMessage2.Text = "aus- und einschalten";
|
this.labelMessage2.Text = "aus- und einschalten";
|
||||||
break;
|
break;
|
||||||
|
|
@ -820,46 +649,6 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.labelMessage1.Text = "Bitte geben Sie 4-10 Zeichen ein";
|
this.labelMessage1.Text = "Bitte geben Sie 4-10 Zeichen ein";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 36:
|
|
||||||
this.labelErrorCode.Text = "Fehler 36";
|
|
||||||
this.labelMessage1.Text = "ID: Dasselbe Zeichen (111, 222, aaa…) darf";
|
|
||||||
this.labelMessage2.Text = "maximal dreimal verwendet werden.";
|
|
||||||
break;
|
|
||||||
case 37:
|
|
||||||
this.labelErrorCode.Text = "Fehler 37";
|
|
||||||
this.labelMessage1.Text = "ID: Aufeinanderfolgende Zeichen (123, 321, abc, cba…)";
|
|
||||||
this.labelMessage2.Text = "dürfen nicht verwendet werden.";
|
|
||||||
break;
|
|
||||||
case 38:
|
|
||||||
this.labelErrorCode.Text = "Fehler 38";
|
|
||||||
this.labelMessage1.Text = "PASSWORT: Geben Sie 6–20 Zeichen ein.";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 39:
|
|
||||||
this.labelErrorCode.Text = "Fehler 39";
|
|
||||||
this.labelMessage1.Text = "PASSWORT: Dasselbe Zeichen (111, 222, aaa…)";
|
|
||||||
this.labelMessage2.Text = "darf maximal dreimal verwendet werden.";
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
this.labelErrorCode.Text = "Fehler 40";
|
|
||||||
this.labelMessage1.Text = "PASSWORT: Aufeinanderfolgende Zeichen";
|
|
||||||
this.labelMessage2.Text = "(123, 321, abc, cba…) dürfen nicht verwendet werden.";
|
|
||||||
break;
|
|
||||||
case 41:
|
|
||||||
this.labelErrorCode.Text = "Fehler 41";
|
|
||||||
this.labelMessage1.Text = "PASSWORT: Mindestens ein englischer Buchstabe,";
|
|
||||||
this.labelMessage2.Text = "mindestens eine Zahl und mindestens ein Sonderzeichen.";
|
|
||||||
break;
|
|
||||||
case 42:
|
|
||||||
this.labelErrorCode.Text = "Fehler 42";
|
|
||||||
this.labelMessage1.Text = "PASSWORT: Dies ist das zuvor von Ihnen festgelegte";
|
|
||||||
this.labelMessage2.Text = "Passwort.";
|
|
||||||
break;
|
|
||||||
case 43:
|
|
||||||
this.labelErrorCode.Text = "Hinweis 43";
|
|
||||||
this.labelMessage1.Text = "Sie werden automatisch abgemeldet.";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
this.labelErrorCode.Text = "Fehler 99";
|
this.labelErrorCode.Text = "Fehler 99";
|
||||||
this.labelMessage1.Text = "Hersteller kontaktieren";
|
this.labelMessage1.Text = "Hersteller kontaktieren";
|
||||||
|
|
@ -867,169 +656,122 @@ namespace INT69DC_7C.DialogForms
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
break;
|
break;
|
||||||
case DataStore.LanguageID.Japanese:
|
default:
|
||||||
#region Japanese
|
#region 한글
|
||||||
switch (code)
|
switch (code)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
this.labelErrorCode.Text = "エラㅡ 01";
|
this.labelErrorCode.Text = "Error 01";
|
||||||
this.labelMessage1.Text = "入力範囲を確認する";
|
this.labelMessage1.Text = "입력범위를 확인하세요.";
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
this.labelErrorCode.Text = "エラㅡ 02";
|
this.labelErrorCode.Text = "Error 02";
|
||||||
this.labelMessage1.Text = "アプリケㅡションは最新である";
|
this.labelMessage1.Text = "최신 프로그램입니다.";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
this.labelErrorCode.Text = "エラㅡ 03";
|
this.labelErrorCode.Text = "Error 03";
|
||||||
this.labelMessage1.Text = "連続NGを検出する";
|
this.labelMessage1.Text = "연속으로 불량이 발생했습니다";
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
this.labelErrorCode.Text = "エラㅡ 04";
|
this.labelErrorCode.Text = "Error 04";
|
||||||
this.labelMessage1.Text = "バックアップファイルがない";
|
this.labelMessage1.Text = "백업할 파일이 없습니다";
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
this.labelErrorCode.Text = "エラㅡ 05";
|
this.labelErrorCode.Text = "Error 05";
|
||||||
this.labelMessage1.Text = "USBメモリなし";
|
this.labelMessage1.Text = "USB메모리가 장착되지 않았습니다";
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
this.labelErrorCode.Text = "エラㅡ 06";
|
this.labelErrorCode.Text = "Error 06";
|
||||||
this.labelMessage1.Text = "メㅡカㅡにお問い合わせください";
|
this.labelMessage1.Text = "제조사에 문의하세요";
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 7:
|
||||||
this.labelErrorCode.Text = "エラㅡ 07";
|
this.labelErrorCode.Text = "Error 07";
|
||||||
this.labelMessage1.Text = "USBに更新ファイルがない";
|
this.labelMessage1.Text = "USB에 업데이트 할 파일이 없습니다";
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
this.labelErrorCode.Text = "エラㅡ 08";
|
this.labelErrorCode.Text = "Error 08";
|
||||||
this.labelMessage1.Text = "更新用ファイルが多すぎる";
|
this.labelMessage1.Text = "업데이트 할 실행파일 개수가 많습니다";
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 9:
|
||||||
this.labelErrorCode.Text = "エラㅡ 09";
|
this.labelErrorCode.Text = "Error 09";
|
||||||
this.labelMessage1.Text = "USBに更新ファイルが入ったフォルダㅡがない";
|
this.labelMessage1.Text = "USB에 업데이트 폴더가 없습니다";
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
this.labelErrorCode.Text = "エラㅡ 10";
|
this.labelErrorCode.Text = "Error 10";
|
||||||
this.labelMessage1.Text = "メモリㅡがない";
|
this.labelMessage1.Text = "해당 메모리가 장착되지 않았습니다";
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 11:
|
||||||
this.labelErrorCode.Text = "注意 11";
|
this.labelErrorCode.Text = "Error 11";
|
||||||
this.labelMessage1.Text = "重量制限設定を確認してください!";
|
this.labelMessage1.Text = "입력센서 에러에 의해 정지하였습니다";
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
this.labelErrorCode.Text = "警告 12";
|
this.labelErrorCode.Text = "Warning 12";
|
||||||
this.labelMessage1.Text = "フィードバック設定を確認してください!";
|
this.labelMessage1.Text = "피드백 설정 확인하세요!";
|
||||||
this.labelMessage2.Text = "デッドゾーン範囲";
|
this.labelMessage2.Text = "DeadZone Range";
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 13:
|
||||||
this.labelErrorCode.Text = "エラㅡ 13";
|
this.labelErrorCode.Text = "Error 13";
|
||||||
this.labelMessage1.Text = "このファイルはサポートされていません";
|
this.labelMessage1.Text = "이 파일은 지원이 되지 않습니다";
|
||||||
break;
|
break;
|
||||||
case 14:
|
case 14:
|
||||||
this.labelErrorCode.Text = "警告 14";
|
this.labelErrorCode.Text = "Warning 14";
|
||||||
this.labelMessage1.Text = "フィードバック設定を確認してください!";
|
this.labelMessage1.Text = "피드백 설정 확인하세요!";
|
||||||
this.labelMessage2.Text = "上限範囲";
|
this.labelMessage2.Text = "High Limit Range";
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 15:
|
||||||
this.labelErrorCode.Text = "警告 15";
|
this.labelErrorCode.Text = "Warning 15";
|
||||||
this.labelMessage1.Text = "フィードバック設定を確認してください!";
|
this.labelMessage1.Text = "피드백 설정 확인하세요!";
|
||||||
this.labelMessage2.Text = "下限範囲";
|
this.labelMessage2.Text = "Low Limit Range";
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
this.labelErrorCode.Text = "エラㅡ 16";
|
this.labelErrorCode.Text = "Error 16";
|
||||||
this.labelMessage1.Text = "現在、ModbusはClientのみサポートされています。";
|
this.labelMessage1.Text = "현재 Modbus는 Client만 지원됩니다.";
|
||||||
this.labelMessage2.Text = "Client モードに切り替わります。";
|
this.labelMessage2.Text = "Client 모드로 전환됩니다.";
|
||||||
break;
|
break;
|
||||||
case 17:
|
case 17:
|
||||||
this.labelErrorCode.Text = "エラㅡ 17";
|
this.labelErrorCode.Text = "Error 17";
|
||||||
this.labelMessage1.Text = "初期化を実行してください";
|
this.labelMessage1.Text = "초기화를 실행해 주세요";
|
||||||
break;
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
this.labelErrorCode.Text = "注意 18";
|
this.labelErrorCode.Text = "Info 18";
|
||||||
this.labelMessage1.Text = "電源をOFFにしてから電源をONにする";
|
this.labelMessage1.Text = "전원을 끄고 다시 켜주세요";
|
||||||
break;
|
break;
|
||||||
case 19:
|
case 19:
|
||||||
break;
|
break;
|
||||||
case 20:
|
case 20:
|
||||||
break;
|
break;
|
||||||
case 23:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 23";
|
|
||||||
this.labelMessage1.Text = "通信接続状態を確認する";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 31:
|
case 31:
|
||||||
this.labelErrorCode.Text = "エラㅡ 31";
|
this.labelErrorCode.Text = "Error 31";
|
||||||
this.labelMessage1.Text = "ユㅡザㅡファイルエラㅡ";
|
this.labelMessage1.Text = "유저 파일 에러";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 32:
|
case 32:
|
||||||
this.labelErrorCode.Text = "エラㅡ 32";
|
this.labelErrorCode.Text = "Error 32";
|
||||||
this.labelMessage1.Text = "IDを確認する";
|
this.labelMessage1.Text = "ID 확인하세요";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 33:
|
case 33:
|
||||||
this.labelErrorCode.Text = "エラㅡ 33";
|
this.labelErrorCode.Text = "Error 33";
|
||||||
this.labelMessage1.Text = "パスワㅡドを確認する";
|
this.labelMessage1.Text = "Password 확인하세요";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 34:
|
case 34:
|
||||||
this.labelErrorCode.Text = "エラㅡ 34";
|
this.labelErrorCode.Text = "Error 34";
|
||||||
this.labelMessage1.Text = "システムに既に同じIDがある";
|
this.labelMessage1.Text = "동일한 ID가 있습니다!";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
case 35:
|
case 35:
|
||||||
this.labelErrorCode.Text = "エラㅡ 35";
|
this.labelErrorCode.Text = "Error 35";
|
||||||
this.labelMessage1.Text = "4~10文字を入力してください";
|
this.labelMessage1.Text = "4~10자 입력 하세요!";
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 36:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 36";
|
|
||||||
this.labelMessage1.Text = "ID: 同じ文字 (111,222,aaa...) は3回以上";
|
|
||||||
this.labelMessage2.Text = "使用できません";
|
|
||||||
break;
|
|
||||||
case 37:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 37";
|
|
||||||
this.labelMessage1.Text = "ID: 連続する文字 (123,321,abc,cba...) は";
|
|
||||||
this.labelMessage2.Text = "使用できません";
|
|
||||||
break;
|
|
||||||
case 38:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 38";
|
|
||||||
this.labelMessage1.Text = "パスワード: 6~20文字を入力してください";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 39:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 39";
|
|
||||||
this.labelMessage1.Text = "パスワード: 同じ文字 (111,222,aaa...) は";
|
|
||||||
this.labelMessage2.Text = "3回以上使用できません";
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 40";
|
|
||||||
this.labelMessage1.Text = "パスワード: 連続する文字 (123,321,abc,cba...) は";
|
|
||||||
this.labelMessage2.Text = "使用できません";
|
|
||||||
break;
|
|
||||||
case 41:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 41";
|
|
||||||
this.labelMessage1.Text = "パスワード: 英字、数字、特殊文字を";
|
|
||||||
this.labelMessage2.Text = "それぞれ1文字以上含めてください";
|
|
||||||
break;
|
|
||||||
case 42:
|
|
||||||
this.labelErrorCode.Text = "エラㅡ 42";
|
|
||||||
this.labelMessage1.Text = "パスワード: 以前に設定したパスワードです";
|
|
||||||
this.labelMessage2.Text = "";
|
|
||||||
break;
|
|
||||||
case 43:
|
|
||||||
this.labelErrorCode.Text = "お知らせ 43";
|
|
||||||
this.labelMessage1.Text = "自動的にログアウトされます";
|
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.labelErrorCode.Text = "エラㅡ 99";
|
this.labelErrorCode.Text = "Error 99";
|
||||||
this.labelMessage1.Text = "メㅡカㅡにお問い合わせください";
|
this.labelMessage1.Text = "제조사에 문의하세요";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
break;
|
break;
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public DialogFormMessage(int code, DataStore.LanguageID language, FormMain parent)
|
public DialogFormMessage(int code, DataStore.LanguageID language, FormMain parent)
|
||||||
|
|
|
||||||
|
|
@ -117,73 +117,10 @@
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<metadata name="timerAutoClose.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<value>17, 17</value>
|
|
||||||
</metadata>
|
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="smartForm1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAAcIAAACqCAIAAACxqtiRAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
|
||||||
sf0ABniAAaYAMFnpqb5B7sFAJC83F3q6yAn8i94MAUj8vmXo6U+ng/9P0qxUvgAAyF/E5mxOOkvE+SJO
|
|
||||||
yhSkiu0zIqbGJIoZRomZL0pQxHJijlvkpZ99FtlRzOxkHlvE4pxT2clsMfeIeHuGkCNixEfEBRlcTqaI
|
|
||||||
b4tYM0mYzBXxW3FsMoeZDgCKJLYLOKx4EZuImMQPDnQR8XIAcKS4LzjmCxZwsgTiQ7mkpGbzuXHxArou
|
|
||||||
S49uam3NoHtyMpM4AoGhP5OVyOSz6S4pyalMXjYAi2f+LBlxbemiIluaWltaGpoZmX5RqP+6+Dcl7u0i
|
|
||||||
vQr43DOI1veH7a/8UuoAYMyKarPrD1vMfgA6tgIgd/8Pm+YhACRFfWu/8cV5aOJ5iRcIUm2MjTMzM424
|
|
||||||
HJaRuKC/6386/A198T0j8Xa/l4fuyollCpMEdHHdWClJKUI+PT2VyeLQDf88xP848K/zWBrIieXwOTxR
|
|
||||||
RKhoyri8OFG7eWyugJvCo3N5/6mJ/zDsT1qca5Eo9Z8ANcoISN2gAuTnPoCiEAESeVDc9d/75oMPBeKb
|
|
||||||
F6Y6sTj3nwX9+65wifiRzo37HOcSGExnCfkZi2viawnQgAAkARXIAxWgAXSBITADVsAWOAI3sAL4gWAQ
|
|
||||||
DtYCFogHyYAPMkEu2AwKQBHYBfaCSlAD6kEjaAEnQAc4DS6Ay+A6uAnugAdgBIyD52AGvAHzEARhITJE
|
|
||||||
geQhVUgLMoDMIAZkD7lBPlAgFA5FQ3EQDxJCudAWqAgqhSqhWqgR+hY6BV2ArkID0D1oFJqCfoXewwhM
|
|
||||||
gqmwMqwNG8MM2An2hoPhNXAcnAbnwPnwTrgCroOPwe3wBfg6fAcegZ/DswhAiAgNUUMMEQbigvghEUgs
|
|
||||||
wkc2IIVIOVKHtCBdSC9yCxlBppF3KAyKgqKjDFG2KE9UCIqFSkNtQBWjKlFHUe2oHtQt1ChqBvUJTUYr
|
|
||||||
oQ3QNmgv9Cp0HDoTXYAuRzeg29CX0HfQ4+g3GAyGhtHBWGE8MeGYBMw6TDHmAKYVcx4zgBnDzGKxWHms
|
|
||||||
AdYO64dlYgXYAux+7DHsOewgdhz7FkfEqeLMcO64CBwPl4crxzXhzuIGcRO4ebwUXgtvg/fDs/HZ+BJ8
|
|
||||||
Pb4LfwM/jp8nSBN0CHaEYEICYTOhgtBCuER4SHhFJBLVidbEACKXuIlYQTxOvEIcJb4jyZD0SS6kSJKQ
|
|
||||||
tJN0hHSedI/0ikwma5MdyRFkAXknuZF8kfyY/FaCImEk4SXBltgoUSXRLjEo8UISL6kl6SS5VjJHslzy
|
|
||||||
pOQNyWkpvJS2lIsUU2qDVJXUKalhqVlpirSptJ90snSxdJP0VelJGayMtoybDFsmX+awzEWZMQpC0aC4
|
|
||||||
UFiULZR6yiXKOBVD1aF6UROoRdRvqP3UGVkZ2WWyobJZslWyZ2RHaAhNm+ZFS6KV0E7QhmjvlygvcVrC
|
|
||||||
WbJjScuSwSVzcopyjnIcuUK5Vrk7cu/l6fJu8onyu+U75B8poBT0FQIUMhUOKlxSmFakKtoqshQLFU8o
|
|
||||||
3leClfSVApXWKR1W6lOaVVZR9lBOVd6vfFF5WoWm4qiSoFKmclZlSpWiaq/KVS1TPaf6jC5Ld6In0Svo
|
|
||||||
PfQZNSU1TzWhWq1av9q8uo56iHqeeqv6Iw2CBkMjVqNMo1tjRlNV01czV7NZ874WXouhFa+1T6tXa05b
|
|
||||||
RztMe5t2h/akjpyOl06OTrPOQ12yroNumm6d7m09jB5DL1HvgN5NfVjfQj9ev0r/hgFsYGnANThgMLAU
|
|
||||||
vdR6KW9p3dJhQ5Khk2GGYbPhqBHNyMcoz6jD6IWxpnGE8W7jXuNPJhYmSSb1Jg9MZUxXmOaZdpn+aqZv
|
|
||||||
xjKrMrttTjZ3N99o3mn+cpnBMs6yg8vuWlAsfC22WXRbfLS0suRbtlhOWWlaRVtVWw0zqAx/RjHjijXa
|
|
||||||
2tl6o/Vp63c2ljYCmxM2v9ga2ibaNtlOLtdZzllev3zMTt2OaVdrN2JPt4+2P2Q/4qDmwHSoc3jiqOHI
|
|
||||||
dmxwnHDSc0pwOub0wtnEme/c5jznYuOy3uW8K+Lq4Vro2u8m4xbiVun22F3dPc692X3Gw8Jjncd5T7Sn
|
|
||||||
t+duz2EvZS+WV6PXzAqrFetX9HiTvIO8K72f+Oj78H26fGHfFb57fB+u1FrJW9nhB/y8/Pb4PfLX8U/z
|
|
||||||
/z4AE+AfUBXwNNA0MDewN4gSFBXUFPQm2Dm4JPhBiG6IMKQ7VDI0MrQxdC7MNaw0bGSV8ar1q66HK4Rz
|
|
||||||
wzsjsBGhEQ0Rs6vdVu9dPR5pEVkQObRGZ03WmqtrFdYmrT0TJRnFjDoZjY4Oi26K/sD0Y9YxZ2O8Yqpj
|
|
||||||
ZlgurH2s52xHdhl7imPHKeVMxNrFlsZOxtnF7YmbineIL4+f5rpwK7kvEzwTahLmEv0SjyQuJIUltSbj
|
|
||||||
kqOTT/FkeIm8nhSVlKyUgVSD1ILUkTSbtL1pM3xvfkM6lL4mvVNAFf1M9Ql1hVuFoxn2GVUZbzNDM09m
|
|
||||||
SWfxsvqy9bN3ZE/kuOd8vQ61jrWuO1ctd3Pu6Hqn9bUboA0xG7o3amzM3zi+yWPT0c2EzYmbf8gzySvN
|
|
||||||
e70lbEtXvnL+pvyxrR5bmwskCvgFw9tst9VsR23nbu/fYb5j/45PhezCa0UmReVFH4pZxde+Mv2q4quF
|
|
||||||
nbE7+0ssSw7uwuzi7Rra7bD7aKl0aU7p2B7fPe1l9LLCstd7o/ZeLV9WXrOPsE+4b6TCp6Jzv+b+Xfs/
|
|
||||||
VMZX3qlyrmqtVqreUT13gH1g8KDjwZYa5ZqimveHuIfu1nrUttdp15UfxhzOOPy0PrS+92vG140NCg1F
|
|
||||||
DR+P8I6MHA082tNo1djYpNRU0gw3C5unjkUeu/mN6zedLYYtta201qLj4Ljw+LNvo78dOuF9ovsk42TL
|
|
||||||
d1rfVbdR2grbofbs9pmO+I6RzvDOgVMrTnV32Xa1fW/0/ZHTaqerzsieKTlLOJt/duFczrnZ86nnpy/E
|
|
||||||
XRjrjup+cHHVxds9AT39l7wvXbnsfvlir1PvuSt2V05ftbl66hrjWsd1y+vtfRZ9bT9Y/NDWb9nffsPq
|
|
||||||
RudN65tdA8sHzg46DF645Xrr8m2v29fvrLwzMBQydHc4cnjkLvvu5L2key/vZ9yff7DpIfph4SOpR+WP
|
|
||||||
lR7X/aj3Y+uI5ciZUdfRvidBTx6Mscae/5T+04fx/Kfkp+UTqhONk2aTp6fcp24+W/1s/Hnq8/npgp+l
|
|
||||||
f65+ofviu18cf+mbWTUz/pL/cuHX4lfyr468Xva6e9Z/9vGb5Dfzc4Vv5d8efcd41/s+7P3EfOYH7IeK
|
|
||||||
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">
|
<data name="pictureBoxExclamation.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -228,24 +165,24 @@
|
||||||
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
|
YII=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="pictureBoxHand.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="pictureBoxHand.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -290,46 +227,43 @@
|
||||||
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
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="pictureBoxAsterisk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="pictureBoxAsterisk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -374,37 +308,36 @@
|
||||||
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
|
||||||
SUVORK5CYII=
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="pictureBoxQuestion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="pictureBoxQuestion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -449,43 +382,43 @@
|
||||||
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
|
|
||||||
IP8HtFPN//2XDj4AAAAASUVORK5CYII=
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<metadata name="timerAutoClose.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||||
<value>WEBPAD</value>
|
<value>WEBPAD</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormNumKeyPad));
|
|
||||||
this.labelScreen = new System.Windows.Forms.Label();
|
this.labelScreen = new System.Windows.Forms.Label();
|
||||||
this.buttonEnter = new System.Windows.Forms.Button();
|
this.buttonEnter = new System.Windows.Forms.Button();
|
||||||
this.buttonCancel = new System.Windows.Forms.Button();
|
this.buttonCancel = new System.Windows.Forms.Button();
|
||||||
|
|
@ -44,8 +43,6 @@
|
||||||
this.buttonNumber4 = new System.Windows.Forms.Button();
|
this.buttonNumber4 = new System.Windows.Forms.Button();
|
||||||
this.buttonNumber1 = new System.Windows.Forms.Button();
|
this.buttonNumber1 = new System.Windows.Forms.Button();
|
||||||
this.label1 = new System.Windows.Forms.Label();
|
this.label1 = new System.Windows.Forms.Label();
|
||||||
this.smartForm1 = new SmartX.SmartForm();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// labelScreen
|
// labelScreen
|
||||||
|
|
@ -61,7 +58,7 @@
|
||||||
// buttonEnter
|
// buttonEnter
|
||||||
//
|
//
|
||||||
this.buttonEnter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonEnter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonEnter.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonEnter.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonEnter.ForeColor = System.Drawing.Color.White;
|
this.buttonEnter.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonEnter.Location = new System.Drawing.Point(13, 382);
|
this.buttonEnter.Location = new System.Drawing.Point(13, 382);
|
||||||
this.buttonEnter.Name = "buttonEnter";
|
this.buttonEnter.Name = "buttonEnter";
|
||||||
|
|
@ -74,7 +71,7 @@
|
||||||
// buttonCancel
|
// buttonCancel
|
||||||
//
|
//
|
||||||
this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonCancel.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonCancel.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonCancel.ForeColor = System.Drawing.Color.White;
|
this.buttonCancel.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonCancel.Location = new System.Drawing.Point(165, 306);
|
this.buttonCancel.Location = new System.Drawing.Point(165, 306);
|
||||||
this.buttonCancel.Name = "buttonCancel";
|
this.buttonCancel.Name = "buttonCancel";
|
||||||
|
|
@ -87,7 +84,7 @@
|
||||||
// buttonNumber9
|
// buttonNumber9
|
||||||
//
|
//
|
||||||
this.buttonNumber9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber9.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber9.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber9.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber9.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber9.Location = new System.Drawing.Point(165, 230);
|
this.buttonNumber9.Location = new System.Drawing.Point(165, 230);
|
||||||
this.buttonNumber9.Name = "buttonNumber9";
|
this.buttonNumber9.Name = "buttonNumber9";
|
||||||
|
|
@ -100,7 +97,7 @@
|
||||||
// buttonNumber6
|
// buttonNumber6
|
||||||
//
|
//
|
||||||
this.buttonNumber6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber6.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber6.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber6.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber6.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber6.Location = new System.Drawing.Point(165, 154);
|
this.buttonNumber6.Location = new System.Drawing.Point(165, 154);
|
||||||
this.buttonNumber6.Name = "buttonNumber6";
|
this.buttonNumber6.Name = "buttonNumber6";
|
||||||
|
|
@ -113,7 +110,7 @@
|
||||||
// buttonNumber3
|
// buttonNumber3
|
||||||
//
|
//
|
||||||
this.buttonNumber3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber3.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber3.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber3.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber3.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber3.Location = new System.Drawing.Point(165, 78);
|
this.buttonNumber3.Location = new System.Drawing.Point(165, 78);
|
||||||
this.buttonNumber3.Name = "buttonNumber3";
|
this.buttonNumber3.Name = "buttonNumber3";
|
||||||
|
|
@ -126,7 +123,7 @@
|
||||||
// buttonNumber0
|
// buttonNumber0
|
||||||
//
|
//
|
||||||
this.buttonNumber0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber0.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber0.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber0.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber0.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber0.Location = new System.Drawing.Point(89, 306);
|
this.buttonNumber0.Location = new System.Drawing.Point(89, 306);
|
||||||
this.buttonNumber0.Name = "buttonNumber0";
|
this.buttonNumber0.Name = "buttonNumber0";
|
||||||
|
|
@ -139,7 +136,7 @@
|
||||||
// buttonNumber8
|
// buttonNumber8
|
||||||
//
|
//
|
||||||
this.buttonNumber8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber8.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber8.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber8.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber8.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber8.Location = new System.Drawing.Point(89, 230);
|
this.buttonNumber8.Location = new System.Drawing.Point(89, 230);
|
||||||
this.buttonNumber8.Name = "buttonNumber8";
|
this.buttonNumber8.Name = "buttonNumber8";
|
||||||
|
|
@ -152,7 +149,7 @@
|
||||||
// buttonNumber5
|
// buttonNumber5
|
||||||
//
|
//
|
||||||
this.buttonNumber5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber5.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber5.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber5.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber5.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber5.Location = new System.Drawing.Point(89, 154);
|
this.buttonNumber5.Location = new System.Drawing.Point(89, 154);
|
||||||
this.buttonNumber5.Name = "buttonNumber5";
|
this.buttonNumber5.Name = "buttonNumber5";
|
||||||
|
|
@ -165,7 +162,7 @@
|
||||||
// buttonNumber2
|
// buttonNumber2
|
||||||
//
|
//
|
||||||
this.buttonNumber2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber2.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber2.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber2.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber2.Location = new System.Drawing.Point(89, 78);
|
this.buttonNumber2.Location = new System.Drawing.Point(89, 78);
|
||||||
this.buttonNumber2.Name = "buttonNumber2";
|
this.buttonNumber2.Name = "buttonNumber2";
|
||||||
|
|
@ -178,7 +175,7 @@
|
||||||
// buttonSign
|
// buttonSign
|
||||||
//
|
//
|
||||||
this.buttonSign.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonSign.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonSign.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonSign.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonSign.ForeColor = System.Drawing.Color.White;
|
this.buttonSign.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonSign.Location = new System.Drawing.Point(13, 306);
|
this.buttonSign.Location = new System.Drawing.Point(13, 306);
|
||||||
this.buttonSign.Name = "buttonSign";
|
this.buttonSign.Name = "buttonSign";
|
||||||
|
|
@ -191,7 +188,7 @@
|
||||||
// buttonNumber7
|
// buttonNumber7
|
||||||
//
|
//
|
||||||
this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber7.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber7.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber7.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber7.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber7.Location = new System.Drawing.Point(13, 230);
|
this.buttonNumber7.Location = new System.Drawing.Point(13, 230);
|
||||||
this.buttonNumber7.Name = "buttonNumber7";
|
this.buttonNumber7.Name = "buttonNumber7";
|
||||||
|
|
@ -204,7 +201,7 @@
|
||||||
// buttonNumber4
|
// buttonNumber4
|
||||||
//
|
//
|
||||||
this.buttonNumber4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber4.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber4.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber4.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber4.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber4.Location = new System.Drawing.Point(13, 154);
|
this.buttonNumber4.Location = new System.Drawing.Point(13, 154);
|
||||||
this.buttonNumber4.Name = "buttonNumber4";
|
this.buttonNumber4.Name = "buttonNumber4";
|
||||||
|
|
@ -217,7 +214,7 @@
|
||||||
// buttonNumber1
|
// buttonNumber1
|
||||||
//
|
//
|
||||||
this.buttonNumber1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber1.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber1.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber1.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber1.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber1.Location = new System.Drawing.Point(13, 78);
|
this.buttonNumber1.Location = new System.Drawing.Point(13, 78);
|
||||||
this.buttonNumber1.Name = "buttonNumber1";
|
this.buttonNumber1.Name = "buttonNumber1";
|
||||||
|
|
@ -229,28 +226,12 @@
|
||||||
//
|
//
|
||||||
// label1
|
// 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.Location = new System.Drawing.Point(3, 3);
|
||||||
this.label1.Name = "label1";
|
this.label1.Name = "label1";
|
||||||
this.label1.Size = new System.Drawing.Size(237, 20);
|
this.label1.Size = new System.Drawing.Size(100, 20);
|
||||||
this.label1.Text = "keypad";
|
this.label1.Text = "keypad";
|
||||||
//
|
//
|
||||||
// smartForm1
|
|
||||||
//
|
|
||||||
this.smartForm1.CenterLocation = false;
|
|
||||||
this.smartForm1.Image = ((System.Drawing.Image)(resources.GetObject("smartForm1.Image")));
|
|
||||||
this.smartForm1.LCDDirection = SmartX.SmartForm.LCDDIRECTIONS.HORIZONTAL;
|
|
||||||
this.smartForm1.LCDSize = SmartX.SmartForm.LCDRESOLUTION.CUSTOMIZING;
|
|
||||||
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.OFF;
|
|
||||||
this.smartForm1.Name = "smartForm1";
|
|
||||||
this.smartForm1.Size = new System.Drawing.Size(250, 443);
|
|
||||||
this.smartForm1.SpecialFunctionClickPointSize = 100;
|
|
||||||
this.smartForm1.SuspendLayoutInterval = 1;
|
|
||||||
//
|
|
||||||
// DialogFormNumKeyPad
|
// DialogFormNumKeyPad
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
|
|
@ -273,11 +254,9 @@
|
||||||
this.Controls.Add(this.buttonNumber4);
|
this.Controls.Add(this.buttonNumber4);
|
||||||
this.Controls.Add(this.buttonNumber1);
|
this.Controls.Add(this.buttonNumber1);
|
||||||
this.Controls.Add(this.label1);
|
this.Controls.Add(this.label1);
|
||||||
this.Controls.Add(this.smartForm1);
|
|
||||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.Name = "DialogFormNumKeyPad";
|
this.Name = "DialogFormNumKeyPad";
|
||||||
this.Text = "DialogFormNumKeyPad1";
|
this.Text = "DialogFormNumKeyPad1";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -299,6 +278,5 @@
|
||||||
private System.Windows.Forms.Button buttonNumber4;
|
private System.Windows.Forms.Button buttonNumber4;
|
||||||
private System.Windows.Forms.Button buttonNumber1;
|
private System.Windows.Forms.Button buttonNumber1;
|
||||||
private System.Windows.Forms.Label label1;
|
private System.Windows.Forms.Label label1;
|
||||||
private SmartX.SmartForm smartForm1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -117,78 +117,6 @@
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
||||||
<data name="smartForm1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
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
|
|
||||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
|
||||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
|
||||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I
|
|
||||||
3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC
|
|
||||||
7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
|
||||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
|
||||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
|
||||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
|
||||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
|
||||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTcu0OBXYnZAMowgfc10fpWwAAAABJRU5ErkJg
|
|
||||||
gg==
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||||
<value>WEBPAD</value>
|
<value>WEBPAD</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,6 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormPasswordKeyPad1));
|
|
||||||
this.labelScreen = new System.Windows.Forms.Label();
|
this.labelScreen = new System.Windows.Forms.Label();
|
||||||
this.buttonEnter = new System.Windows.Forms.Button();
|
this.buttonEnter = new System.Windows.Forms.Button();
|
||||||
this.buttonNumber9 = new System.Windows.Forms.Button();
|
this.buttonNumber9 = new System.Windows.Forms.Button();
|
||||||
|
|
@ -43,8 +42,6 @@
|
||||||
this.buttonNumber4 = new System.Windows.Forms.Button();
|
this.buttonNumber4 = new System.Windows.Forms.Button();
|
||||||
this.buttonNumber1 = new System.Windows.Forms.Button();
|
this.buttonNumber1 = new System.Windows.Forms.Button();
|
||||||
this.labelSubject = new System.Windows.Forms.Label();
|
this.labelSubject = new System.Windows.Forms.Label();
|
||||||
this.smartForm1 = new SmartX.SmartForm();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// labelScreen
|
// labelScreen
|
||||||
|
|
@ -60,7 +57,7 @@
|
||||||
// buttonEnter
|
// buttonEnter
|
||||||
//
|
//
|
||||||
this.buttonEnter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonEnter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonEnter.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
this.buttonEnter.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonEnter.ForeColor = System.Drawing.Color.White;
|
this.buttonEnter.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonEnter.Location = new System.Drawing.Point(165, 309);
|
this.buttonEnter.Location = new System.Drawing.Point(165, 309);
|
||||||
this.buttonEnter.Name = "buttonEnter";
|
this.buttonEnter.Name = "buttonEnter";
|
||||||
|
|
@ -73,7 +70,7 @@
|
||||||
// buttonNumber9
|
// buttonNumber9
|
||||||
//
|
//
|
||||||
this.buttonNumber9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber9.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber9.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber9.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber9.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber9.Location = new System.Drawing.Point(165, 233);
|
this.buttonNumber9.Location = new System.Drawing.Point(165, 233);
|
||||||
this.buttonNumber9.Name = "buttonNumber9";
|
this.buttonNumber9.Name = "buttonNumber9";
|
||||||
|
|
@ -86,7 +83,7 @@
|
||||||
// buttonNumber6
|
// buttonNumber6
|
||||||
//
|
//
|
||||||
this.buttonNumber6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber6.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber6.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber6.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber6.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber6.Location = new System.Drawing.Point(165, 157);
|
this.buttonNumber6.Location = new System.Drawing.Point(165, 157);
|
||||||
this.buttonNumber6.Name = "buttonNumber6";
|
this.buttonNumber6.Name = "buttonNumber6";
|
||||||
|
|
@ -99,7 +96,7 @@
|
||||||
// buttonNumber3
|
// buttonNumber3
|
||||||
//
|
//
|
||||||
this.buttonNumber3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber3.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber3.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber3.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber3.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber3.Location = new System.Drawing.Point(165, 81);
|
this.buttonNumber3.Location = new System.Drawing.Point(165, 81);
|
||||||
this.buttonNumber3.Name = "buttonNumber3";
|
this.buttonNumber3.Name = "buttonNumber3";
|
||||||
|
|
@ -112,7 +109,7 @@
|
||||||
// buttonNumber0
|
// buttonNumber0
|
||||||
//
|
//
|
||||||
this.buttonNumber0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber0.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber0.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber0.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber0.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber0.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber0.Location = new System.Drawing.Point(89, 309);
|
this.buttonNumber0.Location = new System.Drawing.Point(89, 309);
|
||||||
this.buttonNumber0.Name = "buttonNumber0";
|
this.buttonNumber0.Name = "buttonNumber0";
|
||||||
|
|
@ -125,7 +122,7 @@
|
||||||
// buttonNumber8
|
// buttonNumber8
|
||||||
//
|
//
|
||||||
this.buttonNumber8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber8.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber8.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber8.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber8.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber8.Location = new System.Drawing.Point(89, 233);
|
this.buttonNumber8.Location = new System.Drawing.Point(89, 233);
|
||||||
this.buttonNumber8.Name = "buttonNumber8";
|
this.buttonNumber8.Name = "buttonNumber8";
|
||||||
|
|
@ -138,7 +135,7 @@
|
||||||
// buttonNumber5
|
// buttonNumber5
|
||||||
//
|
//
|
||||||
this.buttonNumber5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber5.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber5.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber5.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber5.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber5.Location = new System.Drawing.Point(89, 157);
|
this.buttonNumber5.Location = new System.Drawing.Point(89, 157);
|
||||||
this.buttonNumber5.Name = "buttonNumber5";
|
this.buttonNumber5.Name = "buttonNumber5";
|
||||||
|
|
@ -151,7 +148,7 @@
|
||||||
// buttonNumber2
|
// buttonNumber2
|
||||||
//
|
//
|
||||||
this.buttonNumber2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber2.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber2.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber2.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber2.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber2.Location = new System.Drawing.Point(89, 81);
|
this.buttonNumber2.Location = new System.Drawing.Point(89, 81);
|
||||||
this.buttonNumber2.Name = "buttonNumber2";
|
this.buttonNumber2.Name = "buttonNumber2";
|
||||||
|
|
@ -164,7 +161,7 @@
|
||||||
// buttonCancel
|
// buttonCancel
|
||||||
//
|
//
|
||||||
this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonCancel.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
this.buttonCancel.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonCancel.ForeColor = System.Drawing.Color.White;
|
this.buttonCancel.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonCancel.Location = new System.Drawing.Point(13, 309);
|
this.buttonCancel.Location = new System.Drawing.Point(13, 309);
|
||||||
this.buttonCancel.Name = "buttonCancel";
|
this.buttonCancel.Name = "buttonCancel";
|
||||||
|
|
@ -177,7 +174,7 @@
|
||||||
// buttonNumber7
|
// buttonNumber7
|
||||||
//
|
//
|
||||||
this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber7.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber7.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber7.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber7.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber7.Location = new System.Drawing.Point(13, 233);
|
this.buttonNumber7.Location = new System.Drawing.Point(13, 233);
|
||||||
this.buttonNumber7.Name = "buttonNumber7";
|
this.buttonNumber7.Name = "buttonNumber7";
|
||||||
|
|
@ -190,7 +187,7 @@
|
||||||
// buttonNumber4
|
// buttonNumber4
|
||||||
//
|
//
|
||||||
this.buttonNumber4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber4.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber4.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber4.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber4.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber4.Location = new System.Drawing.Point(13, 157);
|
this.buttonNumber4.Location = new System.Drawing.Point(13, 157);
|
||||||
this.buttonNumber4.Name = "buttonNumber4";
|
this.buttonNumber4.Name = "buttonNumber4";
|
||||||
|
|
@ -203,7 +200,7 @@
|
||||||
// buttonNumber1
|
// buttonNumber1
|
||||||
//
|
//
|
||||||
this.buttonNumber1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
this.buttonNumber1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNumber1.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
this.buttonNumber1.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||||
this.buttonNumber1.ForeColor = System.Drawing.Color.White;
|
this.buttonNumber1.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNumber1.Location = new System.Drawing.Point(13, 81);
|
this.buttonNumber1.Location = new System.Drawing.Point(13, 81);
|
||||||
this.buttonNumber1.Name = "buttonNumber1";
|
this.buttonNumber1.Name = "buttonNumber1";
|
||||||
|
|
@ -215,28 +212,12 @@
|
||||||
//
|
//
|
||||||
// labelSubject
|
// 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.Location = new System.Drawing.Point(3, 3);
|
||||||
this.labelSubject.Name = "labelSubject";
|
this.labelSubject.Name = "labelSubject";
|
||||||
this.labelSubject.Size = new System.Drawing.Size(237, 20);
|
this.labelSubject.Size = new System.Drawing.Size(100, 20);
|
||||||
this.labelSubject.Text = "keypad";
|
this.labelSubject.Text = "keypad";
|
||||||
//
|
//
|
||||||
// smartForm1
|
|
||||||
//
|
|
||||||
this.smartForm1.CenterLocation = false;
|
|
||||||
this.smartForm1.Image = ((System.Drawing.Image)(resources.GetObject("smartForm1.Image")));
|
|
||||||
this.smartForm1.LCDDirection = SmartX.SmartForm.LCDDIRECTIONS.HORIZONTAL;
|
|
||||||
this.smartForm1.LCDSize = SmartX.SmartForm.LCDRESOLUTION.CUSTOMIZING;
|
|
||||||
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.OFF;
|
|
||||||
this.smartForm1.Name = "smartForm1";
|
|
||||||
this.smartForm1.Size = new System.Drawing.Size(250, 390);
|
|
||||||
this.smartForm1.SpecialFunctionClickPointSize = 100;
|
|
||||||
this.smartForm1.SuspendLayoutInterval = 1;
|
|
||||||
//
|
|
||||||
// DialogFormPasswordKeyPad1
|
// DialogFormPasswordKeyPad1
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
|
|
@ -258,11 +239,9 @@
|
||||||
this.Controls.Add(this.buttonNumber4);
|
this.Controls.Add(this.buttonNumber4);
|
||||||
this.Controls.Add(this.buttonNumber1);
|
this.Controls.Add(this.buttonNumber1);
|
||||||
this.Controls.Add(this.labelSubject);
|
this.Controls.Add(this.labelSubject);
|
||||||
this.Controls.Add(this.smartForm1);
|
|
||||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.Name = "DialogFormPasswordKeyPad1";
|
this.Name = "DialogFormPasswordKeyPad1";
|
||||||
this.Text = "DialogFormPasswordKeyPad1";
|
this.Text = "DialogFormPasswordKeyPad1";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -283,6 +262,5 @@
|
||||||
private System.Windows.Forms.Button buttonNumber4;
|
private System.Windows.Forms.Button buttonNumber4;
|
||||||
private System.Windows.Forms.Button buttonNumber1;
|
private System.Windows.Forms.Button buttonNumber1;
|
||||||
private System.Windows.Forms.Label labelSubject;
|
private System.Windows.Forms.Label labelSubject;
|
||||||
private SmartX.SmartForm smartForm1;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -117,75 +117,6 @@
|
||||||
<resheader name="writer">
|
<resheader name="writer">
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
|
||||||
<data name="smartForm1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
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
|
|
||||||
hNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2
|
|
||||||
J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3Qmx
|
|
||||||
OyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I
|
|
||||||
3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC
|
|
||||||
7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsT
|
|
||||||
YndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNid
|
|
||||||
ELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8TuhNidELsTYndC7E6I3QmxOyF2J8Tu
|
|
||||||
hNidELsTYndC7E6I3Qm5docCuxOyAfVINYBP6EROAAAAAElFTkSuQmCC
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||||
<value>WEBPAD</value>
|
<value>WEBPAD</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|
|
||||||
|
|
@ -86,9 +86,6 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.checkBoxLane11.Visible = false;
|
this.checkBoxLane11.Visible = false;
|
||||||
this.checkBoxLane12.Visible = false;
|
this.checkBoxLane12.Visible = false;
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.checkBoxLane12.Visible = false;
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
@ -217,19 +214,6 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.checkBoxLane9.Checked = true;
|
this.checkBoxLane9.Checked = true;
|
||||||
this.checkBoxLane10.Checked = true;
|
this.checkBoxLane10.Checked = true;
|
||||||
break;
|
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:
|
case 12:
|
||||||
this.checkBoxLane1.Checked = true;
|
this.checkBoxLane1.Checked = true;
|
||||||
this.checkBoxLane2.Checked = true;
|
this.checkBoxLane2.Checked = true;
|
||||||
|
|
@ -283,19 +267,6 @@ namespace INT69DC_7C.DialogForms
|
||||||
this.checkBoxLane9.Checked = false;
|
this.checkBoxLane9.Checked = false;
|
||||||
this.checkBoxLane10.Checked = false;
|
this.checkBoxLane10.Checked = false;
|
||||||
break;
|
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:
|
case 12:
|
||||||
this.checkBoxLane1.Checked = false;
|
this.checkBoxLane1.Checked = false;
|
||||||
this.checkBoxLane2.Checked = false;
|
this.checkBoxLane2.Checked = false;
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ namespace INT69DC_7C.DialogForms
|
||||||
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.Size.Height / 2;
|
y = Screen.PrimaryScreen.Bounds.Height / 2 - this.Size.Height / 2;
|
||||||
|
|
||||||
this.Location = new Point(x, y);
|
this.Location = new Point(x, y);
|
||||||
this.Size = new Size(710, 470);
|
this.Size = new Size(713, 473);
|
||||||
}
|
}
|
||||||
private void DefaultSetting()
|
private void DefaultSetting()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -32,13 +32,14 @@
|
||||||
this.textBox = new System.Windows.Forms.TextBox();
|
this.textBox = new System.Windows.Forms.TextBox();
|
||||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||||
this.smartKeyboard = new SmartX.SmartKeyboard();
|
this.smartKeyboard = new SmartX.SmartKeyboard();
|
||||||
|
this.labelTitle = new SmartX.SmartLabel();
|
||||||
this.pictureBoxImage = new System.Windows.Forms.PictureBox();
|
this.pictureBoxImage = new System.Windows.Forms.PictureBox();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// textBox
|
// textBox
|
||||||
//
|
//
|
||||||
this.textBox.Font = new System.Drawing.Font("Arial", 25F, System.Drawing.FontStyle.Regular);
|
this.textBox.Font = new System.Drawing.Font("Arial", 25F, System.Drawing.FontStyle.Regular);
|
||||||
this.textBox.Location = new System.Drawing.Point(143, 82);
|
this.textBox.Location = new System.Drawing.Point(143, 99);
|
||||||
this.textBox.MaxLength = 20;
|
this.textBox.MaxLength = 20;
|
||||||
this.textBox.Name = "textBox";
|
this.textBox.Name = "textBox";
|
||||||
this.textBox.Size = new System.Drawing.Size(489, 45);
|
this.textBox.Size = new System.Drawing.Size(489, 45);
|
||||||
|
|
@ -88,6 +89,27 @@
|
||||||
this.smartKeyboard.OnXKeyClick += new System.EventHandler(this.smartKeyboard_OnXKeyClick);
|
this.smartKeyboard.OnXKeyClick += new System.EventHandler(this.smartKeyboard_OnXKeyClick);
|
||||||
this.smartKeyboard.KeyDown += new System.Windows.Forms.KeyEventHandler(this.smartKeyboard_KeyDown);
|
this.smartKeyboard.KeyDown += new System.Windows.Forms.KeyEventHandler(this.smartKeyboard_KeyDown);
|
||||||
//
|
//
|
||||||
|
// labelTitle
|
||||||
|
//
|
||||||
|
this.labelTitle.BackColor = System.Drawing.Color.White;
|
||||||
|
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.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
|
||||||
|
this.labelTitle.ForeColor = System.Drawing.Color.Gray;
|
||||||
|
this.labelTitle.InitVisible = true;
|
||||||
|
this.labelTitle.LineSpacing = 0F;
|
||||||
|
this.labelTitle.Location = new System.Drawing.Point(143, 43);
|
||||||
|
this.labelTitle.Name = "labelTitle";
|
||||||
|
this.labelTitle.Size = new System.Drawing.Size(489, 50);
|
||||||
|
this.labelTitle.TabIndex = 180;
|
||||||
|
this.labelTitle.Text = "입력";
|
||||||
|
this.labelTitle.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||||
|
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
|
this.labelTitle.Wordwrap = false;
|
||||||
|
//
|
||||||
// pictureBoxImage
|
// pictureBoxImage
|
||||||
//
|
//
|
||||||
this.pictureBoxImage.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxImage.Image")));
|
this.pictureBoxImage.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxImage.Image")));
|
||||||
|
|
@ -103,6 +125,7 @@
|
||||||
this.ClientSize = new System.Drawing.Size(710, 470);
|
this.ClientSize = new System.Drawing.Size(710, 470);
|
||||||
this.ControlBox = false;
|
this.ControlBox = false;
|
||||||
this.Controls.Add(this.pictureBoxImage);
|
this.Controls.Add(this.pictureBoxImage);
|
||||||
|
this.Controls.Add(this.labelTitle);
|
||||||
this.Controls.Add(this.smartKeyboard);
|
this.Controls.Add(this.smartKeyboard);
|
||||||
this.Controls.Add(this.textBox);
|
this.Controls.Add(this.textBox);
|
||||||
this.Controls.Add(this.pictureBox1);
|
this.Controls.Add(this.pictureBox1);
|
||||||
|
|
@ -118,6 +141,7 @@
|
||||||
private System.Windows.Forms.TextBox textBox;
|
private System.Windows.Forms.TextBox textBox;
|
||||||
private System.Windows.Forms.PictureBox pictureBox1;
|
private System.Windows.Forms.PictureBox pictureBox1;
|
||||||
private SmartX.SmartKeyboard smartKeyboard;
|
private SmartX.SmartKeyboard smartKeyboard;
|
||||||
|
private SmartX.SmartLabel labelTitle;
|
||||||
private System.Windows.Forms.PictureBox pictureBoxImage;
|
private System.Windows.Forms.PictureBox pictureBoxImage;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -30,23 +30,23 @@
|
||||||
{
|
{
|
||||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormYesNo));
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFormYesNo));
|
||||||
this.buttonNo = new System.Windows.Forms.Button();
|
this.buttonNo = new System.Windows.Forms.Button();
|
||||||
this.buttonYes = new System.Windows.Forms.Button();
|
this.labelErrorCode = new System.Windows.Forms.Label();
|
||||||
this.labelMessage2 = new SmartX.SmartLabel();
|
|
||||||
this.smartForm1 = new SmartX.SmartForm();
|
|
||||||
this.labelMessage1 = new SmartX.SmartLabel();
|
|
||||||
this.pictureBoxExclamation = new System.Windows.Forms.PictureBox();
|
this.pictureBoxExclamation = new System.Windows.Forms.PictureBox();
|
||||||
|
this.labelMessage1 = new System.Windows.Forms.Label();
|
||||||
|
this.panel1 = new System.Windows.Forms.Panel();
|
||||||
this.pictureBoxHand = new System.Windows.Forms.PictureBox();
|
this.pictureBoxHand = new System.Windows.Forms.PictureBox();
|
||||||
this.pictureBoxAsterisk = new System.Windows.Forms.PictureBox();
|
|
||||||
this.pictureBoxQuestion = new System.Windows.Forms.PictureBox();
|
this.pictureBoxQuestion = new System.Windows.Forms.PictureBox();
|
||||||
this.labelErrorCode = new SmartX.SmartLabel();
|
this.pictureBoxAsterisk = new System.Windows.Forms.PictureBox();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
this.labelMessage2 = new System.Windows.Forms.Label();
|
||||||
|
this.buttonYes = new System.Windows.Forms.Button();
|
||||||
|
this.panel1.SuspendLayout();
|
||||||
this.SuspendLayout();
|
this.SuspendLayout();
|
||||||
//
|
//
|
||||||
// buttonNo
|
// buttonNo
|
||||||
//
|
//
|
||||||
this.buttonNo.BackColor = System.Drawing.Color.WhiteSmoke;
|
this.buttonNo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonNo.Font = new System.Drawing.Font("New Gulim", 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.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonNo.Location = new System.Drawing.Point(335, 135);
|
this.buttonNo.Location = new System.Drawing.Point(335, 135);
|
||||||
this.buttonNo.Name = "buttonNo";
|
this.buttonNo.Name = "buttonNo";
|
||||||
this.buttonNo.Size = new System.Drawing.Size(100, 25);
|
this.buttonNo.Size = new System.Drawing.Size(100, 25);
|
||||||
|
|
@ -55,11 +55,79 @@
|
||||||
this.buttonNo.Text = "No";
|
this.buttonNo.Text = "No";
|
||||||
this.buttonNo.Click += new System.EventHandler(this.buttonNo_Click);
|
this.buttonNo.Click += new System.EventHandler(this.buttonNo_Click);
|
||||||
//
|
//
|
||||||
|
// labelErrorCode
|
||||||
|
//
|
||||||
|
this.labelErrorCode.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||||
|
this.labelErrorCode.Location = new System.Drawing.Point(15, 11);
|
||||||
|
this.labelErrorCode.Name = "labelErrorCode";
|
||||||
|
this.labelErrorCode.Size = new System.Drawing.Size(350, 20);
|
||||||
|
this.labelErrorCode.Text = "Error 0";
|
||||||
|
//
|
||||||
|
// pictureBoxExclamation
|
||||||
|
//
|
||||||
|
this.pictureBoxExclamation.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxExclamation.Image")));
|
||||||
|
this.pictureBoxExclamation.Location = new System.Drawing.Point(11, 20);
|
||||||
|
this.pictureBoxExclamation.Name = "pictureBoxExclamation";
|
||||||
|
this.pictureBoxExclamation.Size = new System.Drawing.Size(50, 50);
|
||||||
|
//
|
||||||
|
// labelMessage1
|
||||||
|
//
|
||||||
|
this.labelMessage1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||||
|
this.labelMessage1.Location = new System.Drawing.Point(67, 20);
|
||||||
|
this.labelMessage1.Name = "labelMessage1";
|
||||||
|
this.labelMessage1.Size = new System.Drawing.Size(350, 22);
|
||||||
|
this.labelMessage1.Text = "COM2 port problem. Please contact a manufacturer.";
|
||||||
|
//
|
||||||
|
// panel1
|
||||||
|
//
|
||||||
|
this.panel1.BackColor = System.Drawing.Color.White;
|
||||||
|
this.panel1.Controls.Add(this.pictureBoxExclamation);
|
||||||
|
this.panel1.Controls.Add(this.pictureBoxHand);
|
||||||
|
this.panel1.Controls.Add(this.pictureBoxQuestion);
|
||||||
|
this.panel1.Controls.Add(this.pictureBoxAsterisk);
|
||||||
|
this.panel1.Controls.Add(this.labelMessage2);
|
||||||
|
this.panel1.Controls.Add(this.labelMessage1);
|
||||||
|
this.panel1.Location = new System.Drawing.Point(15, 34);
|
||||||
|
this.panel1.Name = "panel1";
|
||||||
|
this.panel1.Size = new System.Drawing.Size(420, 95);
|
||||||
|
//
|
||||||
|
// pictureBoxHand
|
||||||
|
//
|
||||||
|
this.pictureBoxHand.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxHand.Image")));
|
||||||
|
this.pictureBoxHand.Location = new System.Drawing.Point(11, 20);
|
||||||
|
this.pictureBoxHand.Name = "pictureBoxHand";
|
||||||
|
this.pictureBoxHand.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.pictureBoxHand.Visible = false;
|
||||||
|
//
|
||||||
|
// pictureBoxQuestion
|
||||||
|
//
|
||||||
|
this.pictureBoxQuestion.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxQuestion.Image")));
|
||||||
|
this.pictureBoxQuestion.Location = new System.Drawing.Point(11, 20);
|
||||||
|
this.pictureBoxQuestion.Name = "pictureBoxQuestion";
|
||||||
|
this.pictureBoxQuestion.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.pictureBoxQuestion.Visible = false;
|
||||||
|
//
|
||||||
|
// pictureBoxAsterisk
|
||||||
|
//
|
||||||
|
this.pictureBoxAsterisk.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxAsterisk.Image")));
|
||||||
|
this.pictureBoxAsterisk.Location = new System.Drawing.Point(11, 20);
|
||||||
|
this.pictureBoxAsterisk.Name = "pictureBoxAsterisk";
|
||||||
|
this.pictureBoxAsterisk.Size = new System.Drawing.Size(50, 50);
|
||||||
|
this.pictureBoxAsterisk.Visible = false;
|
||||||
|
//
|
||||||
|
// labelMessage2
|
||||||
|
//
|
||||||
|
this.labelMessage2.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||||
|
this.labelMessage2.Location = new System.Drawing.Point(67, 48);
|
||||||
|
this.labelMessage2.Name = "labelMessage2";
|
||||||
|
this.labelMessage2.Size = new System.Drawing.Size(350, 22);
|
||||||
|
this.labelMessage2.Text = "COM2 port problem. Please contact a manufacturer.";
|
||||||
|
//
|
||||||
// buttonYes
|
// buttonYes
|
||||||
//
|
//
|
||||||
this.buttonYes.BackColor = System.Drawing.Color.WhiteSmoke;
|
this.buttonYes.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
|
||||||
this.buttonYes.Font = new System.Drawing.Font("New Gulim", 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.ForeColor = System.Drawing.Color.White;
|
||||||
this.buttonYes.Location = new System.Drawing.Point(229, 135);
|
this.buttonYes.Location = new System.Drawing.Point(229, 135);
|
||||||
this.buttonYes.Name = "buttonYes";
|
this.buttonYes.Name = "buttonYes";
|
||||||
this.buttonYes.Size = new System.Drawing.Size(100, 25);
|
this.buttonYes.Size = new System.Drawing.Size(100, 25);
|
||||||
|
|
@ -68,113 +136,6 @@
|
||||||
this.buttonYes.Text = "Yes";
|
this.buttonYes.Text = "Yes";
|
||||||
this.buttonYes.Click += new System.EventHandler(this.buttonYes_Click);
|
this.buttonYes.Click += new System.EventHandler(this.buttonYes_Click);
|
||||||
//
|
//
|
||||||
// labelMessage2
|
|
||||||
//
|
|
||||||
this.labelMessage2.BackPictureBox = this.smartForm1;
|
|
||||||
this.labelMessage2.BackPictureBox1 = null;
|
|
||||||
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("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
|
||||||
this.labelMessage2.InitVisible = true;
|
|
||||||
this.labelMessage2.LineSpacing = 0F;
|
|
||||||
this.labelMessage2.Location = new System.Drawing.Point(78, 90);
|
|
||||||
this.labelMessage2.Name = "labelMessage2";
|
|
||||||
this.labelMessage2.Size = new System.Drawing.Size(350, 20);
|
|
||||||
this.labelMessage2.TabIndex = 37;
|
|
||||||
this.labelMessage2.Text = "COM2 port problem. Please contact a manufacturer.";
|
|
||||||
this.labelMessage2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
|
||||||
this.labelMessage2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
|
||||||
this.labelMessage2.Wordwrap = false;
|
|
||||||
//
|
|
||||||
// smartForm1
|
|
||||||
//
|
|
||||||
this.smartForm1.CenterLocation = false;
|
|
||||||
this.smartForm1.Image = ((System.Drawing.Image)(resources.GetObject("smartForm1.Image")));
|
|
||||||
this.smartForm1.LCDDirection = SmartX.SmartForm.LCDDIRECTIONS.HORIZONTAL;
|
|
||||||
this.smartForm1.LCDSize = SmartX.SmartForm.LCDRESOLUTION.CUSTOMIZING;
|
|
||||||
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.OFF;
|
|
||||||
this.smartForm1.Name = "smartForm1";
|
|
||||||
this.smartForm1.Size = new System.Drawing.Size(450, 170);
|
|
||||||
this.smartForm1.SpecialFunctionClickPointSize = 100;
|
|
||||||
this.smartForm1.SuspendLayoutInterval = 1;
|
|
||||||
//
|
|
||||||
// labelMessage1
|
|
||||||
//
|
|
||||||
this.labelMessage1.BackPictureBox = this.smartForm1;
|
|
||||||
this.labelMessage1.BackPictureBox1 = null;
|
|
||||||
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("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
|
||||||
this.labelMessage1.InitVisible = true;
|
|
||||||
this.labelMessage1.LineSpacing = 0F;
|
|
||||||
this.labelMessage1.Location = new System.Drawing.Point(78, 60);
|
|
||||||
this.labelMessage1.Name = "labelMessage1";
|
|
||||||
this.labelMessage1.Size = new System.Drawing.Size(350, 20);
|
|
||||||
this.labelMessage1.TabIndex = 36;
|
|
||||||
this.labelMessage1.Text = "COM2 port problem. Please contact a manufacturer.";
|
|
||||||
this.labelMessage1.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
|
||||||
this.labelMessage1.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
|
||||||
this.labelMessage1.Wordwrap = false;
|
|
||||||
//
|
|
||||||
// pictureBoxExclamation
|
|
||||||
//
|
|
||||||
this.pictureBoxExclamation.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxExclamation.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxExclamation.Image")));
|
|
||||||
this.pictureBoxExclamation.Location = new System.Drawing.Point(22, 60);
|
|
||||||
this.pictureBoxExclamation.Name = "pictureBoxExclamation";
|
|
||||||
this.pictureBoxExclamation.Size = new System.Drawing.Size(50, 50);
|
|
||||||
//
|
|
||||||
// pictureBoxHand
|
|
||||||
//
|
|
||||||
this.pictureBoxHand.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxHand.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxHand.Image")));
|
|
||||||
this.pictureBoxHand.Location = new System.Drawing.Point(22, 60);
|
|
||||||
this.pictureBoxHand.Name = "pictureBoxHand";
|
|
||||||
this.pictureBoxHand.Size = new System.Drawing.Size(50, 50);
|
|
||||||
this.pictureBoxHand.Visible = false;
|
|
||||||
//
|
|
||||||
// pictureBoxAsterisk
|
|
||||||
//
|
|
||||||
this.pictureBoxAsterisk.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxAsterisk.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxAsterisk.Image")));
|
|
||||||
this.pictureBoxAsterisk.Location = new System.Drawing.Point(22, 60);
|
|
||||||
this.pictureBoxAsterisk.Name = "pictureBoxAsterisk";
|
|
||||||
this.pictureBoxAsterisk.Size = new System.Drawing.Size(50, 50);
|
|
||||||
this.pictureBoxAsterisk.Visible = false;
|
|
||||||
//
|
|
||||||
// pictureBoxQuestion
|
|
||||||
//
|
|
||||||
this.pictureBoxQuestion.BackColor = System.Drawing.Color.Silver;
|
|
||||||
this.pictureBoxQuestion.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxQuestion.Image")));
|
|
||||||
this.pictureBoxQuestion.Location = new System.Drawing.Point(22, 60);
|
|
||||||
this.pictureBoxQuestion.Name = "pictureBoxQuestion";
|
|
||||||
this.pictureBoxQuestion.Size = new System.Drawing.Size(50, 50);
|
|
||||||
this.pictureBoxQuestion.Visible = false;
|
|
||||||
//
|
|
||||||
// labelErrorCode
|
|
||||||
//
|
|
||||||
this.labelErrorCode.BackColor = System.Drawing.Color.Gainsboro;
|
|
||||||
this.labelErrorCode.BackPictureBox = this.smartForm1;
|
|
||||||
this.labelErrorCode.BackPictureBox1 = null;
|
|
||||||
this.labelErrorCode.BackPictureBox2 = null;
|
|
||||||
this.labelErrorCode.BorderColor = System.Drawing.Color.Black;
|
|
||||||
this.labelErrorCode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
||||||
this.labelErrorCode.InitVisible = true;
|
|
||||||
this.labelErrorCode.LineSpacing = 0F;
|
|
||||||
this.labelErrorCode.Location = new System.Drawing.Point(12, 0);
|
|
||||||
this.labelErrorCode.Name = "labelErrorCode";
|
|
||||||
this.labelErrorCode.Size = new System.Drawing.Size(438, 32);
|
|
||||||
this.labelErrorCode.TabIndex = 35;
|
|
||||||
this.labelErrorCode.Text = " Error 0";
|
|
||||||
this.labelErrorCode.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
|
||||||
this.labelErrorCode.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
|
||||||
this.labelErrorCode.Wordwrap = false;
|
|
||||||
//
|
|
||||||
// DialogFormYesNo
|
// DialogFormYesNo
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
|
|
@ -182,20 +143,14 @@
|
||||||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(200)))), ((int)(((byte)(250)))));
|
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(130)))), ((int)(((byte)(200)))), ((int)(((byte)(250)))));
|
||||||
this.ClientSize = new System.Drawing.Size(450, 170);
|
this.ClientSize = new System.Drawing.Size(450, 170);
|
||||||
this.ControlBox = false;
|
this.ControlBox = false;
|
||||||
this.Controls.Add(this.pictureBoxAsterisk);
|
|
||||||
this.Controls.Add(this.pictureBoxExclamation);
|
|
||||||
this.Controls.Add(this.pictureBoxHand);
|
|
||||||
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);
|
this.Controls.Add(this.buttonNo);
|
||||||
|
this.Controls.Add(this.labelErrorCode);
|
||||||
|
this.Controls.Add(this.panel1);
|
||||||
this.Controls.Add(this.buttonYes);
|
this.Controls.Add(this.buttonYes);
|
||||||
this.Controls.Add(this.smartForm1);
|
|
||||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.Name = "DialogFormYesNo";
|
this.Name = "DialogFormYesNo";
|
||||||
this.Text = "DialogFormYesNo1";
|
this.Text = "DialogFormYesNo1";
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).EndInit();
|
this.panel1.ResumeLayout(false);
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -203,14 +158,14 @@
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private System.Windows.Forms.Button buttonNo;
|
private System.Windows.Forms.Button buttonNo;
|
||||||
private System.Windows.Forms.Button buttonYes;
|
private System.Windows.Forms.Label labelErrorCode;
|
||||||
private SmartX.SmartLabel labelMessage2;
|
|
||||||
private SmartX.SmartForm smartForm1;
|
|
||||||
private SmartX.SmartLabel labelMessage1;
|
|
||||||
private System.Windows.Forms.PictureBox pictureBoxExclamation;
|
private System.Windows.Forms.PictureBox pictureBoxExclamation;
|
||||||
|
private System.Windows.Forms.Label labelMessage1;
|
||||||
|
private System.Windows.Forms.Panel panel1;
|
||||||
|
private System.Windows.Forms.Button buttonYes;
|
||||||
|
private System.Windows.Forms.Label labelMessage2;
|
||||||
private System.Windows.Forms.PictureBox pictureBoxHand;
|
private System.Windows.Forms.PictureBox pictureBoxHand;
|
||||||
private System.Windows.Forms.PictureBox pictureBoxAsterisk;
|
|
||||||
private System.Windows.Forms.PictureBox pictureBoxQuestion;
|
private System.Windows.Forms.PictureBox pictureBoxQuestion;
|
||||||
private SmartX.SmartLabel labelErrorCode;
|
private System.Windows.Forms.PictureBox pictureBoxAsterisk;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -20,435 +20,399 @@ namespace INT69DC_7C.DialogForms
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
this.labelErrorCode.Text = "";
|
|
||||||
this.labelMessage1.Text = "";
|
this.labelMessage1.Text = "";
|
||||||
this.labelMessage2.Text = "";
|
this.labelMessage2.Text = "";
|
||||||
|
|
||||||
switch (language)
|
if (language == DataStore.LanguageID.Korean)
|
||||||
{
|
{
|
||||||
case DataStore.LanguageID.Korean:
|
switch (ok)
|
||||||
#region Korean
|
{
|
||||||
switch (ok)
|
case 1:
|
||||||
{
|
this.labelErrorCode.Text = "";
|
||||||
case 1:
|
this.labelMessage1.Text = "예전 DLL로 되돌리시겠습니까?";
|
||||||
this.labelErrorCode.Text = "";
|
break;
|
||||||
this.labelMessage1.Text = "예전 DLL로 되돌리시겠습니까?";
|
case 2:
|
||||||
break;
|
this.labelErrorCode.Text = "";
|
||||||
case 2:
|
this.labelMessage1.Text = "언어를 변경하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "";
|
break;
|
||||||
this.labelMessage1.Text = "언어를 변경하시겠습니까?";
|
case 3:
|
||||||
break;
|
this.labelErrorCode.Text = "업데이트";
|
||||||
case 3:
|
this.labelMessage1.Text = "새 버전으로 업데이트됩니다.";
|
||||||
this.labelErrorCode.Text = "업데이트";
|
break;
|
||||||
this.labelMessage1.Text = "새 버전으로 업데이트됩니다.";
|
case 4:
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 5:
|
||||||
break;
|
this.labelErrorCode.Text = "공장초기화";
|
||||||
case 5:
|
this.labelMessage1.Text = "설정된 모든 데이터가 초기화됩니다.";
|
||||||
this.labelErrorCode.Text = "공장초기화";
|
break;
|
||||||
this.labelMessage1.Text = "설정된 모든 데이터가 초기화됩니다.";
|
case 6:
|
||||||
break;
|
this.labelErrorCode.Text = "피드백";
|
||||||
case 6:
|
this.labelMessage1.Text = "High Limit 설정이 Over Range 설정보다 큽니다.";
|
||||||
break;
|
this.labelMessage2.Text = "진행하시겠습니까?";
|
||||||
case 7:
|
break;
|
||||||
break;
|
case 7:
|
||||||
case 8:
|
this.labelErrorCode.Text = "피드백";
|
||||||
this.labelErrorCode.Text = "소거";
|
this.labelMessage1.Text = "Low Limit 설정이 Under Range 설정보다 낮습니다.";
|
||||||
this.labelMessage1.Text = "카운트 값을 소거 하시겠습니까?";
|
this.labelMessage2.Text = "진행하시겠습니까?";
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 8:
|
||||||
this.labelErrorCode.Text = "모터 다운로드";
|
this.labelErrorCode.Text = "소거";
|
||||||
this.labelMessage1.Text = "현재 값을 다운로드 하시겠습니까?";
|
this.labelMessage1.Text = "카운트 값을 소거 하시겠습니까?";
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 9:
|
||||||
break;
|
this.labelErrorCode.Text = "모터 다운로드";
|
||||||
case 11:
|
this.labelMessage1.Text = "현재 값을 다운로드 하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "모터 다운로드";
|
break;
|
||||||
this.labelMessage1.Text = "모터에 프로그램을 다운로드 하시겠습니까?";
|
case 10:
|
||||||
break;
|
this.labelErrorCode.Text = "모터 다운로드";
|
||||||
case 12:
|
this.labelMessage1.Text = "현재 값을 전체 열에 다운로드 하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "로그인";
|
break;
|
||||||
this.labelMessage1.Text = "Log out 하시겠습니까?";
|
case 11:
|
||||||
break;
|
this.labelErrorCode.Text = "모터 다운로드";
|
||||||
case 13:
|
this.labelMessage1.Text = "모터에 프로그램을 다운로드 하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "로그인";
|
break;
|
||||||
this.labelMessage1.Text = "유저 등록 하시겠습니까?";
|
case 12:
|
||||||
break;
|
this.labelErrorCode.Text = "로그인";
|
||||||
case 14:
|
this.labelMessage1.Text = "Log out 하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "로그인";
|
break;
|
||||||
this.labelMessage1.Text = "유저 삭제 하시겠습니까?";
|
case 13:
|
||||||
break;
|
this.labelErrorCode.Text = "로그인";
|
||||||
case 15:
|
this.labelMessage1.Text = "유저 등록 하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "이더넷";
|
break;
|
||||||
this.labelMessage1.Text = "로컬IP주소 수동으로 설정하시겠습니까?";
|
case 14:
|
||||||
break;
|
this.labelErrorCode.Text = "로그인";
|
||||||
case 16:
|
this.labelMessage1.Text = "유저 삭제 하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "이더넷";
|
break;
|
||||||
this.labelMessage1.Text = "로컬IP주소 자동으로 설정하시겠습니까?";
|
case 15:
|
||||||
break;
|
this.labelErrorCode.Text = "이더넷";
|
||||||
case 17:
|
this.labelMessage1.Text = "로컬IP주소 수동으로 설정하시겠습니까?";
|
||||||
this.labelErrorCode.Text = "로그인";
|
break;
|
||||||
this.labelMessage1.Text = "비밀번호를 초기화 하시겠습니까?";
|
case 16:
|
||||||
break;
|
this.labelErrorCode.Text = "이더넷";
|
||||||
default:
|
this.labelMessage1.Text = "로컬IP주소 자동으로 설정하시겠습니까?";
|
||||||
break;
|
break;
|
||||||
}
|
case 17:
|
||||||
#endregion
|
this.labelErrorCode.Text = "로그인";
|
||||||
break;
|
this.labelMessage1.Text = "비밀번호를 초기화 하시겠습니까?";
|
||||||
case DataStore.LanguageID.English:
|
break;
|
||||||
#region English
|
default:
|
||||||
switch (ok)
|
break;
|
||||||
{
|
}
|
||||||
case 1:
|
}
|
||||||
this.labelErrorCode.Text = "";
|
else if (language == DataStore.LanguageID.English)
|
||||||
this.labelMessage1.Text = "Do you want to revert to the previous DLL?";
|
{
|
||||||
break;
|
switch (ok)
|
||||||
case 2:
|
{
|
||||||
this.labelErrorCode.Text = "";
|
case 1:
|
||||||
this.labelMessage1.Text = "Do you change the language?";
|
this.labelErrorCode.Text = "";
|
||||||
break;
|
this.labelMessage1.Text = "Do you want to revert to the previous DLL?";
|
||||||
case 3:
|
break;
|
||||||
this.labelErrorCode.Text = "Update";
|
case 2:
|
||||||
this.labelMessage1.Text = "Now appilcation program update";
|
this.labelErrorCode.Text = "";
|
||||||
break;
|
this.labelMessage1.Text = "Do you change the language?";
|
||||||
case 4:
|
break;
|
||||||
break;
|
case 3:
|
||||||
case 5:
|
this.labelErrorCode.Text = "Update";
|
||||||
this.labelErrorCode.Text = "Initialization";
|
this.labelMessage1.Text = "Now appilcation program update";
|
||||||
this.labelMessage1.Text = "All datas will be initialized";
|
break;
|
||||||
break;
|
case 4:
|
||||||
case 6:
|
break;
|
||||||
break;
|
case 5:
|
||||||
case 7:
|
this.labelErrorCode.Text = "Initialization";
|
||||||
break;
|
this.labelMessage1.Text = "All datas will be initialized";
|
||||||
case 8:
|
break;
|
||||||
this.labelErrorCode.Text = "Clear";
|
case 6:
|
||||||
this.labelMessage1.Text = "Erase all count?";
|
this.labelErrorCode.Text = "Feedback";
|
||||||
break;
|
this.labelMessage1.Text = "High Limit setting is larger than Over Range setting.";
|
||||||
case 9:
|
this.labelMessage2.Text = "Do you want to proceed?";
|
||||||
this.labelErrorCode.Text = "Motor download";
|
break;
|
||||||
this.labelMessage1.Text = "Do you want to download the current value?";
|
case 7:
|
||||||
break;
|
this.labelErrorCode.Text = "Feedback";
|
||||||
case 10:
|
this.labelMessage1.Text = "Low Limit setting is lower than the Under Range setting.";
|
||||||
break;
|
this.labelMessage2.Text = "Do you want to proceed?";
|
||||||
case 11:
|
break;
|
||||||
this.labelErrorCode.Text = "Motor download";
|
case 8:
|
||||||
this.labelMessage1.Text = "Do you want to download the program?";
|
this.labelErrorCode.Text = "Clear";
|
||||||
break;
|
this.labelMessage1.Text = "Erase all count?";
|
||||||
case 12:
|
break;
|
||||||
this.labelErrorCode.Text = "Login";
|
case 9:
|
||||||
this.labelMessage1.Text = "Do you want to log out?";
|
this.labelErrorCode.Text = "Motor download";
|
||||||
break;
|
this.labelMessage1.Text = "Do you want to download the current value?";
|
||||||
case 13:
|
break;
|
||||||
this.labelErrorCode.Text = "Login";
|
case 10:
|
||||||
this.labelMessage1.Text = "Do you want to register the user?";
|
this.labelErrorCode.Text = "Motor download";
|
||||||
break;
|
this.labelMessage1.Text = "Do you want to download to all column";
|
||||||
case 14:
|
this.labelMessage2.Text = "the current value?";
|
||||||
this.labelErrorCode.Text = "Login";
|
break;
|
||||||
this.labelMessage1.Text = "Do you want to Delete the user?";
|
case 11:
|
||||||
break;
|
this.labelErrorCode.Text = "Motor download";
|
||||||
case 15:
|
this.labelMessage1.Text = "Do you want to download the program?";
|
||||||
this.labelErrorCode.Text = "Ethernet";
|
break;
|
||||||
this.labelMessage1.Text = "Do you want to set the local IP address static?";
|
case 12:
|
||||||
break;
|
this.labelErrorCode.Text = "Login";
|
||||||
case 16:
|
this.labelMessage1.Text = "Do you want to log out?";
|
||||||
this.labelErrorCode.Text = "Ethernet";
|
break;
|
||||||
this.labelMessage1.Text = "Do you want to set the local IP address to DHCP?";
|
case 13:
|
||||||
break;
|
this.labelErrorCode.Text = "Login";
|
||||||
case 17:
|
this.labelMessage1.Text = "Do you want to register the user?";
|
||||||
this.labelErrorCode.Text = "Login";
|
break;
|
||||||
this.labelMessage1.Text = "Do you want to reset your password?";
|
case 14:
|
||||||
break;
|
this.labelErrorCode.Text = "Login";
|
||||||
default:
|
this.labelMessage1.Text = "Do you want to Delete the user?";
|
||||||
break;
|
break;
|
||||||
}
|
case 15:
|
||||||
#endregion
|
this.labelErrorCode.Text = "Ethernet";
|
||||||
break;
|
this.labelMessage1.Text = "Do you want to set the local IP address static?";
|
||||||
case DataStore.LanguageID.Chinese:
|
break;
|
||||||
#region Chinese
|
case 16:
|
||||||
this.buttonYes.Text = "是";
|
this.labelErrorCode.Text = "Ethernet";
|
||||||
this.buttonNo.Text = "否";
|
this.labelMessage1.Text = "Do you want to set the local IP address to DHCP?";
|
||||||
|
break;
|
||||||
|
case 17:
|
||||||
|
this.labelErrorCode.Text = "Login";
|
||||||
|
this.labelMessage1.Text = "Do you want to reset your password?";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (language == DataStore.LanguageID.Chinese)
|
||||||
|
{
|
||||||
|
this.buttonYes.Text = "是";
|
||||||
|
this.buttonNo.Text = "否";
|
||||||
|
|
||||||
switch (ok)
|
switch (ok)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
this.labelErrorCode.Text = "";
|
this.labelErrorCode.Text = "";
|
||||||
this.labelMessage1.Text = "你想转变到之前的DLL吗";
|
this.labelMessage1.Text = "你想转变到之前的DLL吗";
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
this.labelErrorCode.Text = "";
|
this.labelErrorCode.Text = "";
|
||||||
this.labelMessage1.Text = "想更换语言吗?";
|
this.labelMessage1.Text = "想更换语言吗?";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
this.labelErrorCode.Text = "更新";
|
this.labelErrorCode.Text = "更新";
|
||||||
this.labelMessage1.Text = "现在应用程序更新";
|
this.labelMessage1.Text = "现在应用程序更新";
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
this.labelErrorCode.Text = "回复出厂设置";
|
this.labelErrorCode.Text = "回复出厂设置";
|
||||||
this.labelMessage1.Text = "所有数据初始化";
|
this.labelMessage1.Text = "所有数据初始化";
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
break;
|
this.labelErrorCode.Text = "反馈";
|
||||||
case 7:
|
this.labelMessage1.Text = "“上限”设置大于“超出范围”设置。";
|
||||||
break;
|
this.labelMessage2.Text = "您要继续吗?";
|
||||||
case 8:
|
break;
|
||||||
this.labelErrorCode.Text = "消除";
|
case 7:
|
||||||
this.labelMessage1.Text = "您确定清除计数值吗?";
|
this.labelErrorCode.Text = "反馈";
|
||||||
break;
|
this.labelMessage1.Text = "“下限”设置低于“低于范围”设置。";
|
||||||
case 9:
|
this.labelMessage2.Text = "您要继续吗?";
|
||||||
this.labelErrorCode.Text = "下载";
|
break;
|
||||||
this.labelMessage1.Text = "您确定下载当前值吗?";
|
case 8:
|
||||||
break;
|
this.labelErrorCode.Text = "消除";
|
||||||
case 10:
|
this.labelMessage1.Text = "您确定清除计数值吗?";
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 9:
|
||||||
this.labelErrorCode.Text = "下载";
|
this.labelErrorCode.Text = "下载";
|
||||||
this.labelMessage1.Text = "你想下载程序吗?";
|
this.labelMessage1.Text = "您确定下载当前值吗?";
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 10:
|
||||||
this.labelErrorCode.Text = "登录";
|
this.labelErrorCode.Text = "下载";
|
||||||
this.labelMessage1.Text = "你想注销吗?";
|
this.labelMessage1.Text = "您是否要将所有当前值下载到所有列?";
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 11:
|
||||||
this.labelErrorCode.Text = "登录";
|
this.labelErrorCode.Text = "下载";
|
||||||
this.labelMessage1.Text = "你想注册用户吗?";
|
this.labelMessage1.Text = "你想下载程序吗?";
|
||||||
break;
|
break;
|
||||||
case 14:
|
case 12:
|
||||||
this.labelErrorCode.Text = "登录";
|
this.labelErrorCode.Text = "登录";
|
||||||
this.labelMessage1.Text = "要删除用户吗?";
|
this.labelMessage1.Text = "你想注销吗?";
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 13:
|
||||||
this.labelErrorCode.Text = "以太网";
|
this.labelErrorCode.Text = "登录";
|
||||||
this.labelMessage1.Text = "是否要将本地 IP 地址设置为静态?";
|
this.labelMessage1.Text = "你想注册用户吗?";
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 14:
|
||||||
this.labelErrorCode.Text = "以太网";
|
this.labelErrorCode.Text = "登录";
|
||||||
this.labelMessage1.Text = "是否要将本地 IP 地址设置为 DHCP?";
|
this.labelMessage1.Text = "要删除用户吗?";
|
||||||
break;
|
break;
|
||||||
case 17:
|
case 15:
|
||||||
this.labelErrorCode.Text = "登录";
|
this.labelErrorCode.Text = "以太网";
|
||||||
this.labelMessage1.Text = "您想重置密码吗?";
|
this.labelMessage1.Text = "是否要将本地 IP 地址设置为静态?";
|
||||||
break;
|
break;
|
||||||
default:
|
case 16:
|
||||||
break;
|
this.labelErrorCode.Text = "以太网";
|
||||||
}
|
this.labelMessage1.Text = "是否要将本地 IP 地址设置为 DHCP?";
|
||||||
#endregion
|
break;
|
||||||
break;
|
case 17:
|
||||||
case DataStore.LanguageID.Czech:
|
this.labelErrorCode.Text = "登录";
|
||||||
#region Czech
|
this.labelMessage1.Text = "您想重置密码吗?";
|
||||||
this.buttonYes.Text = "Ano";
|
break;
|
||||||
this.buttonNo.Text = "Ne";
|
default:
|
||||||
|
break;
|
||||||
switch (ok)
|
}
|
||||||
{
|
}
|
||||||
case 1:
|
else if (language == DataStore.LanguageID.Czech)
|
||||||
this.labelErrorCode.Text = "";
|
{
|
||||||
this.labelMessage1.Text = "Chcete se vrátit k předchozí DLL?";
|
switch (ok)
|
||||||
break;
|
{
|
||||||
case 2:
|
case 1:
|
||||||
this.labelErrorCode.Text = "";
|
this.labelErrorCode.Text = "";
|
||||||
this.labelMessage1.Text = "Chcete změnit jazyk?";
|
this.labelMessage1.Text = "Chcete se vrátit k předchozí DLL?";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 2:
|
||||||
this.labelErrorCode.Text = "Aktualizace";
|
this.labelErrorCode.Text = "";
|
||||||
this.labelMessage1.Text = "Program byl aktualizován";
|
this.labelMessage1.Text = "Chcete změnit jazyk?";
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 3:
|
||||||
break;
|
this.labelErrorCode.Text = "Aktualizace";
|
||||||
case 5:
|
this.labelMessage1.Text = "Program byl aktualizován";
|
||||||
this.labelErrorCode.Text = "Tovární nastavení";
|
break;
|
||||||
this.labelMessage1.Text = "Budou inicializována všechna data";
|
case 4:
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 5:
|
||||||
break;
|
this.labelErrorCode.Text = "Tovární nastavení";
|
||||||
case 7:
|
this.labelMessage1.Text = "Budou inicializována všechna data";
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 6:
|
||||||
this.labelErrorCode.Text = "Smazat";
|
this.labelErrorCode.Text = "zpětná vazba";
|
||||||
this.labelMessage1.Text = "Smazat všechny počty?";
|
this.labelMessage1.Text = "Nastavení High Limit je větší než nastavení Over Range.";
|
||||||
break;
|
this.labelMessage2.Text = "Chcete pokračovat?";
|
||||||
case 9:
|
break;
|
||||||
this.labelErrorCode.Text = "Stažení";
|
case 7:
|
||||||
this.labelMessage1.Text = "Chcete stáhnout aktuální hodnotu?";
|
this.labelErrorCode.Text = "zpětná vazba";
|
||||||
break;
|
this.labelMessage1.Text = "Nastavení Low Limit je nižší než nastavení Under Range.";
|
||||||
case 10:
|
this.labelMessage2.Text = "Chcete pokračovat?";
|
||||||
break;
|
break;
|
||||||
case 11:
|
case 8:
|
||||||
this.labelErrorCode.Text = "Stažení";
|
this.labelErrorCode.Text = "Smazat";
|
||||||
this.labelMessage1.Text = "Chcete program stáhnout na motor?";
|
this.labelMessage1.Text = "Smazat všechny počty?";
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 9:
|
||||||
this.labelErrorCode.Text = "Přihlásit se";
|
this.labelErrorCode.Text = "Stažení";
|
||||||
this.labelMessage1.Text = "Chcete se odhlásit?";
|
this.labelMessage1.Text = "Chcete stáhnout aktuální hodnotu?";
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 10:
|
||||||
this.labelErrorCode.Text = "Přihlásit se";
|
this.labelErrorCode.Text = "Stažení";
|
||||||
this.labelMessage1.Text = "Chcete zaregistrovat uživatele?";
|
this.labelMessage1.Text = "Stahovat všechny aktuální";
|
||||||
break;
|
this.labelMessage2.Text = "hodnoty do všech sloupců?";
|
||||||
case 14:
|
break;
|
||||||
this.labelErrorCode.Text = "Přihlásit se";
|
case 11:
|
||||||
this.labelMessage1.Text = "Chcete smazat uživatele?";
|
this.labelErrorCode.Text = "Stažení";
|
||||||
break;
|
this.labelMessage1.Text = "Chcete program stáhnout na motor?";
|
||||||
case 15:
|
break;
|
||||||
this.labelErrorCode.Text = "Ethernet";
|
case 12:
|
||||||
this.labelMessage1.Text = "Chcete nastavit lokální IP adresu statickou?";
|
this.labelErrorCode.Text = "Přihlásit se";
|
||||||
break;
|
this.labelMessage1.Text = "Chcete se odhlásit?";
|
||||||
case 16:
|
break;
|
||||||
this.labelErrorCode.Text = "Ethernet";
|
case 13:
|
||||||
this.labelMessage1.Text = "Chcete nastavit lokální IP adresu na DHCP?";
|
this.labelErrorCode.Text = "Přihlásit se";
|
||||||
break;
|
this.labelMessage1.Text = "Chcete zaregistrovat uživatele?";
|
||||||
case 17:
|
break;
|
||||||
this.labelErrorCode.Text = "Přihlásit se";
|
case 14:
|
||||||
this.labelMessage1.Text = "Chcete obnovit své heslo?";
|
this.labelErrorCode.Text = "Přihlásit se";
|
||||||
break;
|
this.labelMessage1.Text = "Chcete smazat uživatele?";
|
||||||
default:
|
break;
|
||||||
break;
|
case 15:
|
||||||
}
|
this.labelErrorCode.Text = "Ethernet";
|
||||||
#endregion
|
this.labelMessage1.Text = "Do you want to set the local IP address static?";
|
||||||
break;
|
break;
|
||||||
case DataStore.LanguageID.German:
|
case 16:
|
||||||
#region German
|
this.labelErrorCode.Text = "Ethernet";
|
||||||
switch (ok)
|
this.labelMessage1.Text = "Do you want to set the local IP address to DHCP?";
|
||||||
{
|
break;
|
||||||
case 1:
|
case 17:
|
||||||
this.labelErrorCode.Text = "";
|
this.labelErrorCode.Text = "Přihlásit se";
|
||||||
this.labelMessage1.Text = "Möchten Sie die ursprüngliche";
|
this.labelMessage1.Text = "Chcete obnovit své heslo?";
|
||||||
this.labelMessage2.Text = "DDL-Bibliothek wirklich zurückgeben?";
|
break;
|
||||||
break;
|
default:
|
||||||
case 2:
|
break;
|
||||||
this.labelErrorCode.Text = "";
|
}
|
||||||
this.labelMessage1.Text = "Möchten Sie die Sprache wirklich ändern?";
|
}
|
||||||
break;
|
else if (language == DataStore.LanguageID.German)
|
||||||
case 3:
|
{
|
||||||
this.labelErrorCode.Text = "Aktualisierung";
|
switch (ok)
|
||||||
this.labelMessage1.Text = "Programm wird aktualisiert";
|
{
|
||||||
break;
|
case 1:
|
||||||
case 4:
|
this.labelErrorCode.Text = "";
|
||||||
break;
|
this.labelMessage1.Text = "Möchten Sie die ursprüngliche";
|
||||||
case 5:
|
this.labelMessage2.Text = "DDL-Bibliothek wirklich zurückgeben?";
|
||||||
this.labelErrorCode.Text = "Werkseinstellung";
|
break;
|
||||||
this.labelMessage1.Text = "Alle Daten werden initialisiert";
|
case 2:
|
||||||
break;
|
this.labelErrorCode.Text = "";
|
||||||
case 6:
|
this.labelMessage1.Text = "Möchten Sie die Sprache wirklich ändern?";
|
||||||
break;
|
break;
|
||||||
case 7:
|
case 3:
|
||||||
break;
|
this.labelErrorCode.Text = "Aktualisierung";
|
||||||
case 8:
|
this.labelMessage1.Text = "Programm wird aktualisiert";
|
||||||
this.labelErrorCode.Text = "Löschen";
|
break;
|
||||||
this.labelMessage1.Text = "Wirklich die Zähler löschen? ";
|
case 4:
|
||||||
break;
|
break;
|
||||||
case 9:
|
case 5:
|
||||||
this.labelErrorCode.Text = "Programm-Download zum Motor";
|
this.labelErrorCode.Text = "Werkseinstellung";
|
||||||
this.labelMessage1.Text = "Möchten Sie den aktuellen";
|
this.labelMessage1.Text = "Alle Daten werden initialisiert";
|
||||||
this.labelMessage2.Text = "Wert wirklich herunterladen?";
|
break;
|
||||||
break;
|
case 6:
|
||||||
case 10:
|
this.labelErrorCode.Text = "Feedback";
|
||||||
break;
|
this.labelMessage1.Text = "Die Einstellung für den oberen Grenzwert ist größer als die Einstellung für den Überbereich.";
|
||||||
case 11:
|
this.labelMessage2.Text = "Möchten Sie fortfahren?";
|
||||||
this.labelErrorCode.Text = "Programm-Download zum Motor";
|
break;
|
||||||
this.labelMessage1.Text = "Möchten Sie wirklich einen Motor herunterladen?";
|
case 7:
|
||||||
break;
|
this.labelErrorCode.Text = "Feedback";
|
||||||
case 12:
|
this.labelMessage1.Text = "Low Limit setting is lower than the Under Range setting.";
|
||||||
this.labelErrorCode.Text = "Einloggen";
|
this.labelMessage2.Text = "Möchten Sie fortfahren?";
|
||||||
this.labelMessage1.Text = "Möchten Sie sich abmelden?";
|
break;
|
||||||
break;
|
case 8:
|
||||||
case 13:
|
this.labelErrorCode.Text = "Löschen";
|
||||||
this.labelErrorCode.Text = "Einloggen";
|
this.labelMessage1.Text = "Wirklich die Zähler löschen? ";
|
||||||
this.labelMessage1.Text = "Möchten Sie den Benutzer registrieren?";
|
break;
|
||||||
break;
|
case 9:
|
||||||
case 14:
|
this.labelErrorCode.Text = "Herunterladen zum Motor";
|
||||||
this.labelErrorCode.Text = "Einloggen";
|
this.labelMessage1.Text = "Möchten Sie den aktuellen";
|
||||||
this.labelMessage1.Text = "Möchten Sie einen Benutzer löschen?";
|
this.labelMessage2.Text = "Wert wirklich herunterladen?";
|
||||||
break;
|
break;
|
||||||
case 15:
|
case 10:
|
||||||
this.labelErrorCode.Text = "Ethernet";
|
this.labelErrorCode.Text = "Herunterladen zum Motor";
|
||||||
this.labelMessage1.Text = "Möchten Sie die lokale IP-Adresse statisch festlegen?";
|
this.labelMessage1.Text = "Möchten Sie den aktuellen";
|
||||||
break;
|
this.labelMessage2.Text = "Wert in alle Spalten herunterladen?";
|
||||||
case 16:
|
break;
|
||||||
this.labelErrorCode.Text = "Ethernet";
|
case 11:
|
||||||
this.labelMessage1.Text = "Möchten Sie die lokale IP-Adresse auf DHCP einstellen?";
|
this.labelErrorCode.Text = "Programm-Download zum Motor";
|
||||||
break;
|
this.labelMessage1.Text = "Möchten Sie wirklich einen Motor herunterladen?";
|
||||||
case 17:
|
break;
|
||||||
this.labelErrorCode.Text = "Einloggen";
|
case 12:
|
||||||
this.labelMessage1.Text = "Möchten Sie Ihr Passwort zurücksetzen?";
|
this.labelErrorCode.Text = "Einloggen";
|
||||||
break;
|
this.labelMessage1.Text = "Möchten Sie sich abmelden?";
|
||||||
default:
|
break;
|
||||||
break;
|
case 13:
|
||||||
}
|
this.labelErrorCode.Text = "Einloggen";
|
||||||
#endregion
|
this.labelMessage1.Text = "Möchten Sie den Benutzer registrieren?";
|
||||||
break;
|
break;
|
||||||
case DataStore.LanguageID.Japanese:
|
case 14:
|
||||||
#region Japanese
|
this.labelErrorCode.Text = "Einloggen";
|
||||||
this.buttonYes.Text = "はい";
|
this.labelMessage1.Text = "Möchten Sie einen Benutzer löschen?";
|
||||||
this.buttonNo.Text = "いいえ";
|
break;
|
||||||
|
case 15:
|
||||||
switch (ok)
|
this.labelErrorCode.Text = "Ethernet";
|
||||||
{
|
this.labelMessage1.Text = "Do you want to set the local IP address static?";
|
||||||
case 1:
|
break;
|
||||||
this.labelErrorCode.Text = "";
|
case 16:
|
||||||
this.labelMessage1.Text = "以前のDLLに戻しますか?";
|
this.labelErrorCode.Text = "Ethernet";
|
||||||
break;
|
this.labelMessage1.Text = "Do you want to set the local IP address to DHCP?";
|
||||||
case 2:
|
break;
|
||||||
this.labelErrorCode.Text = "";
|
case 17:
|
||||||
this.labelMessage1.Text = "言語を変更しますか?";
|
this.labelErrorCode.Text = "Einloggen";
|
||||||
break;
|
this.labelMessage1.Text = "Möchten Sie Ihr Passwort zurücksetzen?";
|
||||||
case 3:
|
break;
|
||||||
this.labelErrorCode.Text = "更新";
|
default:
|
||||||
this.labelMessage1.Text = "これよりアプリケㅡションプログラムの更新となる";
|
break;
|
||||||
break;
|
}
|
||||||
case 4:
|
}
|
||||||
break;
|
else
|
||||||
case 5:
|
{
|
||||||
this.labelErrorCode.Text = "初期化";
|
|
||||||
this.labelMessage1.Text = "すべてのデㅡタが初期化される";
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
break;
|
|
||||||
case 7:
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
this.labelErrorCode.Text = "クリア";
|
|
||||||
this.labelMessage1.Text = "カウントをすべて消去しますか?";
|
|
||||||
break;
|
|
||||||
case 9:
|
|
||||||
break;
|
|
||||||
case 10:
|
|
||||||
break;
|
|
||||||
case 11:
|
|
||||||
break;
|
|
||||||
case 12:
|
|
||||||
this.labelErrorCode.Text = "ログイン";
|
|
||||||
this.labelMessage1.Text = "ログアウトしますか?";
|
|
||||||
break;
|
|
||||||
case 13:
|
|
||||||
this.labelErrorCode.Text = "ログイン";
|
|
||||||
this.labelMessage1.Text = "ユㅡザㅡ登録しますか?";
|
|
||||||
break;
|
|
||||||
case 14:
|
|
||||||
this.labelErrorCode.Text = "ログイン";
|
|
||||||
this.labelMessage1.Text = "このユㅡザㅡを削除しますか?";
|
|
||||||
break;
|
|
||||||
case 15:
|
|
||||||
this.labelErrorCode.Text = "イーサネット";
|
|
||||||
this.labelMessage1.Text = "ローカル IP アドレスを静的に設定しますか?";
|
|
||||||
break;
|
|
||||||
case 16:
|
|
||||||
this.labelErrorCode.Text = "イーサネット";
|
|
||||||
this.labelMessage1.Text = "ローカル IP アドレスを DHCP に設定しますか?";
|
|
||||||
break;
|
|
||||||
case 17:
|
|
||||||
this.labelErrorCode.Text = "ログイン";
|
|
||||||
this.labelMessage1.Text = "パスワードをリセットしますか?";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public DialogFormYesNo(DataStore.LanguageID language, int ok, string msg)
|
public DialogFormYesNo(DataStore.LanguageID language, int ok, string msg)
|
||||||
|
|
|
||||||
|
|
@ -118,69 +118,9 @@
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
</resheader>
|
</resheader>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="smartForm1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
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
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="pictureBoxExclamation.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="pictureBoxExclamation.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -225,24 +165,24 @@
|
||||||
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
|
YII=
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="pictureBoxHand.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="pictureBoxHand.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -287,121 +227,43 @@
|
||||||
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
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="pictureBoxAsterisk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
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
|
|
||||||
SUVORK5CYII=
|
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="pictureBoxQuestion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="pictureBoxQuestion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAACH
|
||||||
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
DwAAjA8AAP1SAACBQAAAfXkAAOmLAAA85QAAGcxzPIV3AAAKOWlDQ1BQaG90b3Nob3AgSUNDIHByb2Zp
|
||||||
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
bGUAAEjHnZZ3VFTXFofPvXd6oc0w0hl6ky4wgPQuIB0EURhmBhjKAMMMTWyIqEBEEREBRZCggAGjoUis
|
||||||
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
iGIhKKhgD0gQUGIwiqioZEbWSnx5ee/l5ffHvd/aZ+9z99l7n7UuACRPHy4vBZYCIJkn4Ad6ONNXhUfQ
|
||||||
|
|
@ -446,41 +308,112 @@
|
||||||
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
|
</value>
|
||||||
e7gsAHmF2Nv0NfznQ7pYhbKkppfYxmQtxD3+i5JB0SAw/xeFfSi+zw4hL0X89DmO9Z11Tq+aEpBvgr4z
|
</data>
|
||||||
IP8HtFPN//2XDj4AAAAASUVORK5CYII=
|
<data name="pictureBoxAsterisk.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>
|
||||||
|
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
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ namespace INT69DC_7C.Forms
|
||||||
private ControlCalibration7 Calibration7;
|
private ControlCalibration7 Calibration7;
|
||||||
private ControlCalibration8 Calibration8;
|
private ControlCalibration8 Calibration8;
|
||||||
private ControlCalibration10 Calibration10;
|
private ControlCalibration10 Calibration10;
|
||||||
private ControlCalibration11 Calibration11;
|
|
||||||
private ControlCalibration12 Calibration12;
|
private ControlCalibration12 Calibration12;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
@ -150,26 +149,25 @@ namespace INT69DC_7C.Forms
|
||||||
case 7:
|
case 7:
|
||||||
this.Calibration7 = new ControlCalibration7(this);
|
this.Calibration7 = new ControlCalibration7(this);
|
||||||
this.Calibration7.Location = new Point(0, 80);
|
this.Calibration7.Location = new Point(0, 80);
|
||||||
|
|
||||||
this.Controls.Add(this.Calibration7);
|
this.Controls.Add(this.Calibration7);
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
this.Calibration8 = new ControlCalibration8(this);
|
this.Calibration8 = new ControlCalibration8(this);
|
||||||
this.Calibration8.Location = new Point(0, 80);
|
this.Calibration8.Location = new Point(0, 80);
|
||||||
|
|
||||||
this.Controls.Add(this.Calibration8);
|
this.Controls.Add(this.Calibration8);
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10 = new ControlCalibration10(this);
|
this.Calibration10 = new ControlCalibration10(this);
|
||||||
this.Calibration10.Location = new Point(0, 70);
|
this.Calibration10.Location = new Point(0, 70);
|
||||||
|
|
||||||
this.Controls.Add(this.Calibration10);
|
this.Controls.Add(this.Calibration10);
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11 = new ControlCalibration11(this);
|
|
||||||
this.Calibration11.Location = new Point(0, 70);
|
|
||||||
this.Controls.Add(this.Calibration11);
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12 = new ControlCalibration12(this);
|
this.Calibration12 = new ControlCalibration12(this);
|
||||||
this.Calibration12.Location = new Point(0, 70);
|
this.Calibration12.Location = new Point(0, 70);
|
||||||
|
|
||||||
this.Controls.Add(this.Calibration12);
|
this.Controls.Add(this.Calibration12);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
@ -233,10 +231,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.Calibration10 != null)
|
if (this.Calibration10 != null)
|
||||||
this.Calibration10.DisplayRefresh();
|
this.Calibration10.DisplayRefresh();
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
if (this.Calibration11 != null)
|
|
||||||
this.Calibration11.DisplayRefresh();
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
if (this.Calibration12 != null)
|
if (this.Calibration12 != null)
|
||||||
this.Calibration12.DisplayRefresh();
|
this.Calibration12.DisplayRefresh();
|
||||||
|
|
@ -327,9 +321,6 @@ namespace INT69DC_7C.Forms
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10.UpdateConfiguration(status, config);
|
this.Calibration10.UpdateConfiguration(status, config);
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11.UpdateConfiguration(status, config);
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12.UpdateConfiguration(status, config);
|
this.Calibration12.UpdateConfiguration(status, config);
|
||||||
break;
|
break;
|
||||||
|
|
@ -350,9 +341,6 @@ namespace INT69DC_7C.Forms
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10.UpdateWeightDisplay(status, weightDatas);
|
this.Calibration10.UpdateWeightDisplay(status, weightDatas);
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11.UpdateWeightDisplay(status, weightDatas);
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12.UpdateWeightDisplay(status, weightDatas);
|
this.Calibration12.UpdateWeightDisplay(status, weightDatas);
|
||||||
break;
|
break;
|
||||||
|
|
@ -388,6 +376,7 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.CalDigit, "", before, after);
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.CalDigit, "", before, after);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void labelBalanceWeight_Click(object sender, EventArgs e)
|
private void labelBalanceWeight_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
string value = "", before = "", after = "";
|
string value = "", before = "", after = "";
|
||||||
|
|
@ -423,6 +412,7 @@ namespace INT69DC_7C.Forms
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void labelMaxWeight_Click(object sender, EventArgs e)
|
private void labelMaxWeight_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
string value = "", before = "", after = "";
|
string value = "", before = "", after = "";
|
||||||
|
|
@ -474,9 +464,6 @@ namespace INT69DC_7C.Forms
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10.CalibrationStart();
|
this.Calibration10.CalibrationStart();
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11.CalibrationStart();
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12.CalibrationStart();
|
this.Calibration12.CalibrationStart();
|
||||||
break;
|
break;
|
||||||
|
|
@ -484,6 +471,7 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonBalance_Click(object sender, EventArgs e)
|
private void buttonBalance_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
this.ClearListBox();
|
this.ClearListBox();
|
||||||
|
|
@ -499,9 +487,6 @@ namespace INT69DC_7C.Forms
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10.CalibrationBalance();
|
this.Calibration10.CalibrationBalance();
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11.CalibrationBalance();
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12.CalibrationBalance();
|
this.Calibration12.CalibrationBalance();
|
||||||
break;
|
break;
|
||||||
|
|
@ -509,6 +494,7 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonCancel_Click(object sender, EventArgs e)
|
private void buttonCancel_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
this.ClearListBox();
|
this.ClearListBox();
|
||||||
|
|
@ -524,9 +510,6 @@ namespace INT69DC_7C.Forms
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10.CalibrationCancel();
|
this.Calibration10.CalibrationCancel();
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11.CalibrationCancel();
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12.CalibrationCancel();
|
this.Calibration12.CalibrationCancel();
|
||||||
break;
|
break;
|
||||||
|
|
@ -534,6 +517,7 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void buttonBack_Click(object sender, EventArgs e)
|
private void buttonBack_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
this.ClearListBox();
|
this.ClearListBox();
|
||||||
|
|
@ -549,9 +533,6 @@ namespace INT69DC_7C.Forms
|
||||||
case 10:
|
case 10:
|
||||||
this.Calibration10.CalibrationCancel();
|
this.Calibration10.CalibrationCancel();
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
this.Calibration11.CalibrationCancel();
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
this.Calibration12.CalibrationCancel();
|
this.Calibration12.CalibrationCancel();
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -159,7 +159,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.comboBoxMode.Items.Add("OPT3");
|
this.comboBoxMode.Items.Add("OPT3");
|
||||||
this.comboBoxMode.Items.Add("Modbus");
|
this.comboBoxMode.Items.Add("Modbus");
|
||||||
this.comboBoxMode.Items.Add("OPT5");
|
this.comboBoxMode.Items.Add("OPT5");
|
||||||
this.comboBoxMode.Items.Add("OPT6");
|
|
||||||
this.comboBoxMode.SelectedIndex = 0;
|
this.comboBoxMode.SelectedIndex = 0;
|
||||||
this.comboBoxMode.SelectedIndexChanged += new EventHandler(this.comboBoxMode_SelectedIndexChanged);
|
this.comboBoxMode.SelectedIndexChanged += new EventHandler(this.comboBoxMode_SelectedIndexChanged);
|
||||||
|
|
||||||
|
|
@ -181,7 +180,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.comboBoxSerial3Mode.Items.Add("OPT4");
|
this.comboBoxSerial3Mode.Items.Add("OPT4");
|
||||||
this.comboBoxSerial3Mode.Items.Add("Printer");
|
this.comboBoxSerial3Mode.Items.Add("Printer");
|
||||||
this.comboBoxSerial3Mode.Items.Add("OPT5");
|
this.comboBoxSerial3Mode.Items.Add("OPT5");
|
||||||
this.comboBoxSerial3Mode.Items.Add("OPT6");
|
|
||||||
this.comboBoxSerial3Mode.SelectedIndex = 0;
|
this.comboBoxSerial3Mode.SelectedIndex = 0;
|
||||||
this.comboBoxSerial3Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSerial3_SelectedIndexChanged);
|
this.comboBoxSerial3Mode.SelectedIndexChanged += new EventHandler(this.comboBoxSerial3_SelectedIndexChanged);
|
||||||
}
|
}
|
||||||
|
|
@ -332,8 +330,6 @@ namespace INT69DC_7C.Forms
|
||||||
data = this.ParentForm.Protocol_OPT3(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
data = this.ParentForm.Protocol_OPT3(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
||||||
else if (this.ParentForm.SystemConfig.EthernetMode == 4)
|
else if (this.ParentForm.SystemConfig.EthernetMode == 4)
|
||||||
data = this.ParentForm.Protocol_OPT5(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
data = this.ParentForm.Protocol_OPT5(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
||||||
else if (this.ParentForm.SystemConfig.EthernetMode == 5)
|
|
||||||
data = this.ParentForm.Protocol_OPT6(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData, this.ParentForm.CurrentProductItem);
|
|
||||||
|
|
||||||
switch (this.ParentForm.SystemConfig.EthernetOperationMode)
|
switch (this.ParentForm.SystemConfig.EthernetOperationMode)
|
||||||
{
|
{
|
||||||
|
|
@ -363,8 +359,6 @@ namespace INT69DC_7C.Forms
|
||||||
data = this.ParentForm.Protocol_OPT3(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData[lane - 1], lane, this.ParentForm.CurrentProductItem);
|
data = this.ParentForm.Protocol_OPT3(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData[lane - 1], lane, this.ParentForm.CurrentProductItem);
|
||||||
else if (this.ParentForm.SystemConfig.EthernetMode == 4)
|
else if (this.ParentForm.SystemConfig.EthernetMode == 4)
|
||||||
data = this.ParentForm.Protocol_OPT5(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData[lane - 1], lane, this.ParentForm.CurrentProductItem);
|
data = this.ParentForm.Protocol_OPT5(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData[lane - 1], lane, this.ParentForm.CurrentProductItem);
|
||||||
else if (this.ParentForm.SystemConfig.EthernetMode == 5)
|
|
||||||
data = this.ParentForm.Protocol_OPT6(this.ParentForm.SystemConfig, this.ParentForm.CollectionWeightData[lane - 1], lane, this.ParentForm.CurrentProductItem);
|
|
||||||
|
|
||||||
switch (this.ParentForm.SystemConfig.EthernetOperationMode)
|
switch (this.ParentForm.SystemConfig.EthernetOperationMode)
|
||||||
{
|
{
|
||||||
|
|
@ -384,6 +378,158 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private void UpdateProtocolDescriptionCom3Display()
|
||||||
|
{
|
||||||
|
if (this.comboBoxSerial3Mode.SelectedIndex == 1)
|
||||||
|
{
|
||||||
|
#region OPT1
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "Private use";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "";
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (this.comboBoxSerial3Mode.SelectedIndex == 2)
|
||||||
|
{
|
||||||
|
#region OPT2
|
||||||
|
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
||||||
|
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],GRD[1],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],GRD[1],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (this.comboBoxSerial3Mode.SelectedIndex == 3)
|
||||||
|
{
|
||||||
|
#region OPT3
|
||||||
|
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
||||||
|
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],LANE[2],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "GRD[1],WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],LANE[2],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "GRD[1],WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (this.comboBoxSerial3Mode.SelectedIndex == 4)
|
||||||
|
{
|
||||||
|
#region OPT4
|
||||||
|
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
||||||
|
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "{SIGN[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "SIGN[1],WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "SIGN[1],WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "{SIGN[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (this.comboBoxSerial3Mode.SelectedIndex == 5)
|
||||||
|
{
|
||||||
|
#region Printer
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "NO[4], LANE[2], GRADE[1], WEIGHT[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "COUNT[9]";
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (this.comboBoxSerial3Mode.SelectedIndex == 6)
|
||||||
|
{
|
||||||
|
#region OPT5
|
||||||
|
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
||||||
|
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "TARE[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "TARE[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
#region None
|
||||||
|
this.labelProtocolDescriptionCOM3_1.Text = "COM3 Protocol Description";
|
||||||
|
this.labelProtocolDescriptionCOM3_2.Text = "COM3 Protocol Description";
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
||||||
private void LocalIPEnable(bool enable)
|
private void LocalIPEnable(bool enable)
|
||||||
{
|
{
|
||||||
Color tempColor;
|
Color tempColor;
|
||||||
|
|
@ -483,12 +629,9 @@ namespace INT69DC_7C.Forms
|
||||||
switch (index)
|
switch (index)
|
||||||
{
|
{
|
||||||
case 3 : // Modbus
|
case 3 : // Modbus
|
||||||
if (this.ParentForm.SystemConfig.EthernetOperationMode == 2) // Client일 때만 Start Address 사용
|
this.labelTitleStartAddress.Visible = true;
|
||||||
{
|
this.labelStartAddress.Visible = true;
|
||||||
this.labelTitleStartAddress.Visible = true;
|
this.labelStartAddress.Text = this.ParentForm.SystemConfig.ModbusTcpStartAddress.ToString();
|
||||||
this.labelStartAddress.Visible = true;
|
|
||||||
this.labelStartAddress.Text = this.ParentForm.SystemConfig.ModbusTcpStartAddress.ToString();
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.labelTitleStartAddress.Visible = false;
|
this.labelTitleStartAddress.Visible = false;
|
||||||
|
|
@ -496,6 +639,35 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private void UpdateDisplayFormat(int index)
|
||||||
|
{
|
||||||
|
if (index == 1)
|
||||||
|
{
|
||||||
|
#region OPT2
|
||||||
|
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],";
|
||||||
|
this.labelProtocolDescriptionEthernet_2.Text = "{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (index == 2)
|
||||||
|
{
|
||||||
|
#region OPT3
|
||||||
|
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],PASS[6],";
|
||||||
|
this.labelProtocolDescriptionEthernet_2.Text = "{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else if (index == 4)
|
||||||
|
{
|
||||||
|
#region OPT5
|
||||||
|
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],";
|
||||||
|
this.labelProtocolDescriptionEthernet_2.Text = "TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this.labelProtocolDescriptionEthernet_1.Text = "";
|
||||||
|
this.labelProtocolDescriptionEthernet_2.Text = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
public void DisplayLabelLocalPort(bool bValue)
|
public void DisplayLabelLocalPort(bool bValue)
|
||||||
{
|
{
|
||||||
if (bValue == false)
|
if (bValue == false)
|
||||||
|
|
@ -515,239 +687,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.labelClientStatus.Text = value;
|
this.labelClientStatus.Text = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateProtocolDescriptionEthernetDisplay(int index)
|
|
||||||
{
|
|
||||||
if (index == 1)
|
|
||||||
{
|
|
||||||
#region OPT2
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (index == 2)
|
|
||||||
{
|
|
||||||
#region OPT3
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],PASS[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],PASS[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],PASS[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],PASS[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (index == 4)
|
|
||||||
{
|
|
||||||
#region OPT5
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (index == 5)
|
|
||||||
{
|
|
||||||
#region OPT6
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionEthernet_1.Text = "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
private void UpdateProtocolDescriptionCom3Display()
|
|
||||||
{
|
|
||||||
if (this.comboBoxSerial3Mode.SelectedIndex == 1)
|
|
||||||
{
|
|
||||||
#region OPT1
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "Private use";
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.comboBoxSerial3Mode.SelectedIndex == 2)
|
|
||||||
{
|
|
||||||
#region OPT2
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.comboBoxSerial3Mode.SelectedIndex == 3)
|
|
||||||
{
|
|
||||||
#region OPT3
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],PASS[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.comboBoxSerial3Mode.SelectedIndex == 4)
|
|
||||||
{
|
|
||||||
#region OPT4
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],{SIGN[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],SIGN[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],LANE[2],SIGN[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],{SIGN[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.comboBoxSerial3Mode.SelectedIndex == 5)
|
|
||||||
{
|
|
||||||
#region Printer
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "NO[4], LANE[2], GRADE[1], WEIGHT[6],COUNT[9]";
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.comboBoxSerial3Mode.SelectedIndex == 6)
|
|
||||||
{
|
|
||||||
#region OPT5
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
else
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.comboBoxSerial3Mode.SelectedIndex == 7)
|
|
||||||
{
|
|
||||||
#region OPT6
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],LANE[2],GRD[1],WEIGHT[6],ETX[1]";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text =
|
|
||||||
"STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
#region None
|
|
||||||
this.labelProtocolDescriptionCOM3_1.Text = "COM3 Protocol Description";
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void DisplayRefresh()
|
public void DisplayRefresh()
|
||||||
{
|
{
|
||||||
string value = "";
|
string value = "";
|
||||||
|
|
@ -760,7 +699,7 @@ namespace INT69DC_7C.Forms
|
||||||
// Local IP
|
// Local IP
|
||||||
this.UpdateLocalIPAddressDisplay();
|
this.UpdateLocalIPAddressDisplay();
|
||||||
// Format
|
// Format
|
||||||
this.UpdateProtocolDescriptionEthernetDisplay(this.ParentForm.SystemConfig.EthernetMode);
|
this.UpdateDisplayFormat(this.ParentForm.SystemConfig.EthernetMode);
|
||||||
// Setting Data visible
|
// Setting Data visible
|
||||||
this.UpdateDisplaySettingData(this.ParentForm.SystemConfig.EthernetMode);
|
this.UpdateDisplaySettingData(this.ParentForm.SystemConfig.EthernetMode);
|
||||||
|
|
||||||
|
|
@ -1009,7 +948,7 @@ namespace INT69DC_7C.Forms
|
||||||
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.SystemConfig);
|
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.SystemConfig);
|
||||||
|
|
||||||
this.UpdateDisplaySettingData(this.ParentForm.SystemConfig.EthernetMode);
|
this.UpdateDisplaySettingData(this.ParentForm.SystemConfig.EthernetMode);
|
||||||
this.UpdateProtocolDescriptionEthernetDisplay(this.ParentForm.SystemConfig.EthernetMode);
|
this.UpdateDisplayFormat(this.ParentForm.SystemConfig.EthernetMode);
|
||||||
|
|
||||||
after = this.comboBoxMode.SelectedItem.ToString();
|
after = this.comboBoxMode.SelectedItem.ToString();
|
||||||
|
|
||||||
|
|
@ -1651,9 +1590,8 @@ namespace INT69DC_7C.Forms
|
||||||
}
|
}
|
||||||
else if (this.ParentForm.SystemConfig.Serial3Mode == 6)
|
else if (this.ParentForm.SystemConfig.Serial3Mode == 6)
|
||||||
{
|
{
|
||||||
#region OPT5
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||||
{
|
{
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
||||||
this.ParentForm.SerialCH3OPT5(this.ParentForm.CollectionWeightData);
|
this.ParentForm.SerialCH3OPT5(this.ParentForm.CollectionWeightData);
|
||||||
|
|
@ -1670,30 +1608,6 @@ namespace INT69DC_7C.Forms
|
||||||
else
|
else
|
||||||
this.ParentForm.SerialCH3OPT5(this.ParentForm.CollectionWeightData);
|
this.ParentForm.SerialCH3OPT5(this.ParentForm.CollectionWeightData);
|
||||||
}
|
}
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
else if (this.ParentForm.SystemConfig.Serial3Mode == 7)
|
|
||||||
{
|
|
||||||
#region OPT6
|
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 1 || this.ParentForm.SystemConfig.EquipmentMode == 3
|
|
||||||
|| this.ParentForm.SystemConfig.EquipmentMode == 7)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIndividualTransmission == false)
|
|
||||||
this.ParentForm.SerialCH3OPT6(this.ParentForm.CollectionWeightData);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
for (int i = 0; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
|
|
||||||
this.ParentForm.SerialCH3OPT6(i + 1, this.ParentForm.CollectionWeightData[i]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (this.ParentForm.SystemConfig.EquipmentMode == 2)
|
|
||||||
{
|
|
||||||
if (this.ParentForm.SystemConfig.IsIntegratedTransmission == false)
|
|
||||||
this.ParentForm.SerialCH3OPT6(1, this.ParentForm.CollectionWeightData[0]);
|
|
||||||
else
|
|
||||||
this.ParentForm.SerialCH3OPT6(this.ParentForm.CollectionWeightData);
|
|
||||||
}
|
|
||||||
#endregion
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void buttonSerialSave_Click(object sender, EventArgs e)
|
private void buttonSerialSave_Click(object sender, EventArgs e)
|
||||||
|
|
@ -1730,75 +1644,75 @@ namespace INT69DC_7C.Forms
|
||||||
|
|
||||||
this.ParentForm.SystemConfig.Serial3BaudRate = this.comboBoxSerial3BaudRate.SelectedIndex;
|
this.ParentForm.SystemConfig.Serial3BaudRate = this.comboBoxSerial3BaudRate.SelectedIndex;
|
||||||
this.ParentForm.SystemConfig.Serial3Mode = this.comboBoxSerial3Mode.SelectedIndex;
|
this.ParentForm.SystemConfig.Serial3Mode = this.comboBoxSerial3Mode.SelectedIndex;
|
||||||
|
|
||||||
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.SystemConfig);
|
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.SystemConfig);
|
||||||
|
|
||||||
if (this.ParentForm.smartSerialPortCom3.IsOpen == true)
|
if (this.ParentForm.smartSerialPortCom3.IsOpen == true)
|
||||||
this.ParentForm.smartSerialPortCom3.Close();
|
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)
|
if (this.ParentForm.SystemConfig.Serial3Mode != 0)
|
||||||
{
|
{
|
||||||
this.buttonSerialSend.Enabled = true;
|
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();
|
this.ParentForm.smartSerialPortCom3.Open();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -609,6 +609,7 @@ namespace INT69DC_7C.Forms
|
||||||
|
|
||||||
// Part 11
|
// Part 11
|
||||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
||||||
|
|
||||||
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.AutoZeroVariance, "", before, after);
|
this.ParentForm.SetTrackingHistoryData(DataStore.TrackingParameter.AutoZeroVariance, "", before, after);
|
||||||
}
|
}
|
||||||
private void comboBoxZeroParameterMode_SelectedIndexChanged(object sender, EventArgs e)
|
private void comboBoxZeroParameterMode_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
|
|
@ -1286,135 +1287,6 @@ namespace INT69DC_7C.Forms
|
||||||
}
|
}
|
||||||
#endregion
|
#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)
|
else if (this.ParentForm.SystemConfig.EquipmentColumns == 12)
|
||||||
{
|
{
|
||||||
#region 12열
|
#region 12열
|
||||||
|
|
|
||||||
|
|
@ -449,7 +449,7 @@ namespace INT69DC_7C.Forms
|
||||||
#region File List 품번 순서데로 정렬
|
#region File List 품번 순서데로 정렬
|
||||||
foreach (FileInfo file in files)
|
foreach (FileInfo file in files)
|
||||||
{
|
{
|
||||||
fileName = file.Name.Split('-');
|
fileName = file.Name.Split('_');
|
||||||
dirNames.Add(file.Name, int.Parse(fileName[1].Substring(0, fileName[1].Length - 4)));
|
dirNames.Add(file.Name, int.Parse(fileName[1].Substring(0, fileName[1].Length - 4)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -238,8 +238,6 @@ namespace INT69DC_7C.Forms
|
||||||
locationX = 40;
|
locationX = 40;
|
||||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 10)
|
else if (this.ParentForm.SystemConfig.EquipmentColumns == 10)
|
||||||
locationX = 16;
|
locationX = 16;
|
||||||
else if (this.ParentForm.SystemConfig.EquipmentColumns == 11)
|
|
||||||
locationX = 10;
|
|
||||||
|
|
||||||
for (int i = 1; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
|
for (int i = 1; i < this.ParentForm.SystemConfig.EquipmentColumns; i++)
|
||||||
{
|
{
|
||||||
|
|
@ -569,23 +567,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.SetData(this.CollectionLaneData[9], this.CollectionWeightData[i][27], Helper.StringToJudgmentStatusStatistics(this.CollectionWeightData[i][28]));
|
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
|
else
|
||||||
{
|
{
|
||||||
for (int i = 0; i < this.CollectionWeightData.Count; i++)
|
for (int i = 0; i < this.CollectionWeightData.Count; i++)
|
||||||
|
|
|
||||||
|
|
@ -101,8 +101,6 @@
|
||||||
this.labelStaticLine = new SmartX.SmartLabel();
|
this.labelStaticLine = new SmartX.SmartLabel();
|
||||||
this.labelStaticEquipmentID = new SmartX.SmartLabel();
|
this.labelStaticEquipmentID = new SmartX.SmartLabel();
|
||||||
this.labelTitle = new SmartX.SmartLabel();
|
this.labelTitle = new SmartX.SmartLabel();
|
||||||
this.buttonSerialDLL = new SmartX.SmartButton();
|
|
||||||
this.labelStaticSerialDll = new SmartX.SmartLabel();
|
|
||||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||||
this.groupBoxSpecialMenu.SuspendLayout();
|
this.groupBoxSpecialMenu.SuspendLayout();
|
||||||
this.panel7.SuspendLayout();
|
this.panel7.SuspendLayout();
|
||||||
|
|
@ -133,8 +131,6 @@
|
||||||
//
|
//
|
||||||
this.groupBoxSpecialMenu.BackPictureBox = this.smartForm1;
|
this.groupBoxSpecialMenu.BackPictureBox = this.smartForm1;
|
||||||
this.groupBoxSpecialMenu.BackPictureBox1 = null;
|
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.smartLabel5);
|
||||||
this.groupBoxSpecialMenu.Controls.Add(this.smartLabel6);
|
this.groupBoxSpecialMenu.Controls.Add(this.smartLabel6);
|
||||||
this.groupBoxSpecialMenu.Controls.Add(this.labelDataStoragePeriod);
|
this.groupBoxSpecialMenu.Controls.Add(this.labelDataStoragePeriod);
|
||||||
|
|
@ -1372,56 +1368,6 @@
|
||||||
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelTitle.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelTitle.Wordwrap = false;
|
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
|
// FormEquipmentSetting
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||||
|
|
@ -1520,7 +1466,5 @@
|
||||||
private SmartX.SmartLabel labelStaticDataStoragePeriod;
|
private SmartX.SmartLabel labelStaticDataStoragePeriod;
|
||||||
private SmartX.SmartLabel smartLabel5;
|
private SmartX.SmartLabel smartLabel5;
|
||||||
public System.Windows.Forms.RadioButton radioButtonEquipmentModeDual;
|
public System.Windows.Forms.RadioButton radioButtonEquipmentModeDual;
|
||||||
private SmartX.SmartButton buttonSerialDLL;
|
|
||||||
private SmartX.SmartLabel labelStaticSerialDll;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -116,6 +116,7 @@ namespace INT69DC_7C.Forms
|
||||||
this.radioButtonEquipmentModeStick3.Text = "球杆-III";
|
this.radioButtonEquipmentModeStick3.Text = "球杆-III";
|
||||||
this.radioButtonEquipmentModeDual.Text = "双重的";
|
this.radioButtonEquipmentModeDual.Text = "双重的";
|
||||||
|
|
||||||
|
|
||||||
this.labelBuadrateWarning.Text = "※ 电源重启后,设置会自动更新";
|
this.labelBuadrateWarning.Text = "※ 电源重启后,设置会自动更新";
|
||||||
this.labelBuadrateWarning2.Text = "※ 除了工程师之外,不要改变这个值";
|
this.labelBuadrateWarning2.Text = "※ 除了工程师之外,不要改变这个值";
|
||||||
|
|
||||||
|
|
@ -238,7 +239,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.comboBoxEquipmentColumn.Items.Add(7);
|
this.comboBoxEquipmentColumn.Items.Add(7);
|
||||||
this.comboBoxEquipmentColumn.Items.Add(8);
|
this.comboBoxEquipmentColumn.Items.Add(8);
|
||||||
this.comboBoxEquipmentColumn.Items.Add(10);
|
this.comboBoxEquipmentColumn.Items.Add(10);
|
||||||
this.comboBoxEquipmentColumn.Items.Add(11);
|
|
||||||
this.comboBoxEquipmentColumn.Items.Add(12);
|
this.comboBoxEquipmentColumn.Items.Add(12);
|
||||||
this.comboBoxEquipmentColumn.SelectedItem = this.ParentForm.SystemConfig.EquipmentColumns;
|
this.comboBoxEquipmentColumn.SelectedItem = this.ParentForm.SystemConfig.EquipmentColumns;
|
||||||
|
|
||||||
|
|
@ -267,11 +267,6 @@ namespace INT69DC_7C.Forms
|
||||||
|
|
||||||
private void UpdateDisplay()
|
private void UpdateDisplay()
|
||||||
{
|
{
|
||||||
// 장비열
|
|
||||||
this.comboBoxEquipmentColumn.SelectedItem = this.ParentForm.SystemConfig.EquipmentColumns;
|
|
||||||
// 입력센서 선택
|
|
||||||
this.comboBoxInputSensorSelect.SelectedItem = this.ParentForm.SystemConfig.InputSensorSelect;
|
|
||||||
|
|
||||||
// 장비타입
|
// 장비타입
|
||||||
if (this.ParentForm.SystemConfig.EquipmentMode == 0)
|
if (this.ParentForm.SystemConfig.EquipmentMode == 0)
|
||||||
this.radioButtonEquipmentModeConveyor.Checked = true;
|
this.radioButtonEquipmentModeConveyor.Checked = true;
|
||||||
|
|
@ -384,7 +379,6 @@ namespace INT69DC_7C.Forms
|
||||||
else
|
else
|
||||||
this.buttonLogin.ButtonUp();
|
this.buttonLogin.ButtonUp();
|
||||||
|
|
||||||
// Step Motor
|
|
||||||
switch (this.ParentForm.SystemConfig.StepMotorType)
|
switch (this.ParentForm.SystemConfig.StepMotorType)
|
||||||
{
|
{
|
||||||
case (int)DataStore.StepMotorType.MDrive:
|
case (int)DataStore.StepMotorType.MDrive:
|
||||||
|
|
@ -400,28 +394,11 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// SerialDLL
|
|
||||||
if (this.ParentForm.SystemConfig.IsSerialDLL == true)
|
|
||||||
this.buttonSerialDLL.ButtonDown();
|
|
||||||
else
|
|
||||||
this.buttonSerialDLL.ButtonUp();
|
|
||||||
|
|
||||||
this.buttonSave.Visible = false;
|
this.buttonSave.Visible = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DisplayRefresh()
|
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.UpdateDisplay();
|
||||||
|
|
||||||
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormEquipmentSetting;
|
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormEquipmentSetting;
|
||||||
|
|
@ -486,11 +463,6 @@ 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)
|
private void buttonSave_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
|
@ -513,8 +485,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.ParentForm.SystemConfig.EquipmentColumns = 8;
|
this.ParentForm.SystemConfig.EquipmentColumns = 8;
|
||||||
else if (this.comboBoxEquipmentColumn.SelectedIndex == 2)
|
else if (this.comboBoxEquipmentColumn.SelectedIndex == 2)
|
||||||
this.ParentForm.SystemConfig.EquipmentColumns = 10;
|
this.ParentForm.SystemConfig.EquipmentColumns = 10;
|
||||||
else if (this.comboBoxEquipmentColumn.SelectedIndex == 3)
|
|
||||||
this.ParentForm.SystemConfig.EquipmentColumns = 11;
|
|
||||||
else
|
else
|
||||||
this.ParentForm.SystemConfig.EquipmentColumns = 12;
|
this.ParentForm.SystemConfig.EquipmentColumns = 12;
|
||||||
|
|
||||||
|
|
@ -644,12 +614,6 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Serial DLL
|
|
||||||
if (this.buttonSerialDLL.ButtonStatus == SmartX.SmartButton.BUTSTATUS.DOWN)
|
|
||||||
this.ParentForm.SystemConfig.IsSerialDLL = true;
|
|
||||||
else
|
|
||||||
this.ParentForm.SystemConfig.IsSerialDLL = false;
|
|
||||||
|
|
||||||
// SystemConfig 파일 저장
|
// SystemConfig 파일 저장
|
||||||
this.ParentForm.SaveSystemConfigurationFile(this.ParentForm.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.DummyBool12 = false;
|
||||||
structItem2.DummyBool13 = false;
|
structItem2.DummyBool13 = false;
|
||||||
structItem2.DummyBool14 = false;
|
structItem2.DummyBool14 = false;
|
||||||
structItem2.IsSerialDLL = false;
|
structItem2.DummyBool15 = false;
|
||||||
structItem2.IsOptPrinter = this.ParentForm.SystemConfig.IsOptPrinter;
|
structItem2.IsOptPrinter = this.ParentForm.SystemConfig.IsOptPrinter;
|
||||||
structItem2.IsOptPart11 = this.ParentForm.SystemConfig.IsOptPart11;
|
structItem2.IsOptPart11 = this.ParentForm.SystemConfig.IsOptPart11;
|
||||||
structItem2.IsAlarmTotalPassCntEnable = this.ParentForm.SystemConfig.IsAlarmTotalPassCntEnable;
|
structItem2.IsAlarmTotalPassCntEnable = this.ParentForm.SystemConfig.IsAlarmTotalPassCntEnable;
|
||||||
|
|
|
||||||
|
|
@ -702,7 +702,7 @@
|
||||||
this.labelInfo2.Name = "labelInfo2";
|
this.labelInfo2.Name = "labelInfo2";
|
||||||
this.labelInfo2.Size = new System.Drawing.Size(715, 40);
|
this.labelInfo2.Size = new System.Drawing.Size(715, 40);
|
||||||
this.labelInfo2.TabIndex = 194;
|
this.labelInfo2.TabIndex = 194;
|
||||||
this.labelInfo2.Text = "Automatic weighing system / Multi-lane checkweigher";
|
this.labelInfo2.Text = "Automatic weighing system - Multilane Checkweigher";
|
||||||
this.labelInfo2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
this.labelInfo2.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||||
this.labelInfo2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
this.labelInfo2.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||||
this.labelInfo2.Wordwrap = false;
|
this.labelInfo2.Wordwrap = false;
|
||||||
|
|
|
||||||
|
|
@ -142,8 +142,7 @@ namespace INT69DC_7C.Forms
|
||||||
}
|
}
|
||||||
private void DefaultSetting()
|
private void DefaultSetting()
|
||||||
{
|
{
|
||||||
this.labelDisplayVer.Text = "12.4.0";
|
this.labelDisplayVer.Text = "12.2.0";
|
||||||
|
|
||||||
if(this.ParentForm.SystemConfig.EquipmentMode == 7)
|
if(this.ParentForm.SystemConfig.EquipmentMode == 7)
|
||||||
this.labelTitleMainboardName.Text = "INT68M-2A";
|
this.labelTitleMainboardName.Text = "INT68M-2A";
|
||||||
else
|
else
|
||||||
|
|
@ -207,22 +206,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion10);
|
this.CollectionControlVerLabel.Add(this.labelSubBoardVersion10);
|
||||||
|
|
||||||
this.labelSub11.Visible = this.labelSubBoardVersion11.Visible = false;
|
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;
|
this.labelSub12.Visible = this.labelSubBoardVersion12.Visible = false;
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
|
|
@ -411,7 +394,7 @@ namespace INT69DC_7C.Forms
|
||||||
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormInformation;
|
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormInformation;
|
||||||
this.ParentForm.TransferDataStream(CommunicationCommand.Read, CommunicationID.MainBoard, CommunicationAddress._1500_ProgramVersion, "");
|
this.ParentForm.TransferDataStream(CommunicationCommand.Read, CommunicationID.MainBoard, CommunicationAddress._1500_ProgramVersion, "");
|
||||||
|
|
||||||
if (this.ParentForm.SystemConfig.IsSerialDLL == true)
|
if (this.ParentForm.FlagDllSerial == true)
|
||||||
SerialMgrComm.serialPort_GetVersion();
|
SerialMgrComm.serialPort_GetVersion();
|
||||||
|
|
||||||
if (this.ParentForm.SystemConfig.IsLogin == true)
|
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.ErrorCode_Location = SmartX.SmartSerialPort.ERRORCODELOCATION.HEADER;
|
||||||
this.smartSerialPortLink.ETXCode = ((byte)(3));
|
this.smartSerialPortLink.ETXCode = ((byte)(3));
|
||||||
this.smartSerialPortLink.ETXCodes = null;
|
this.smartSerialPortLink.ETXCodes = null;
|
||||||
this.smartSerialPortLink.FrameBufferSize = ((uint)(8192u));
|
this.smartSerialPortLink.FrameBufferSize = ((uint)(4096u));
|
||||||
this.smartSerialPortLink.FrameSeparationType = SmartX.SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
this.smartSerialPortLink.FrameSeparationType = SmartX.SmartSerialPort.FRAMESEPARATIONTYPES.STXANDETX;
|
||||||
this.smartSerialPortLink.HeadErrorCodeOffset = 0;
|
this.smartSerialPortLink.HeadErrorCodeOffset = 0;
|
||||||
this.smartSerialPortLink.PortNo = SmartX.SmartSerialPort.COMPORTNO.COM2;
|
this.smartSerialPortLink.PortNo = SmartX.SmartSerialPort.COMPORTNO.COM2;
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -34,23 +34,18 @@ namespace INT69DC_7C.Forms
|
||||||
private DataStore.E_TotalCnt Mode_TotalCnt;
|
private DataStore.E_TotalCnt Mode_TotalCnt;
|
||||||
private DataStore.E_TotalCntNG Mode_TotalCntNG;
|
private DataStore.E_TotalCntNG Mode_TotalCntNG;
|
||||||
|
|
||||||
private ControlMainDisplayAlarm MainDisplayAlarmList;
|
|
||||||
|
|
||||||
private ControlMainDisplayFeedbacak MainDisplayFeedbaack;
|
private ControlMainDisplayFeedbacak MainDisplayFeedbaack;
|
||||||
private ControlMainDisplayEachBarGraph7 MainDisplayEachBarGraph7;
|
private ControlMainDisplayEachBarGraph7 MainDisplayEachBarGraph7;
|
||||||
private ControlMainDisplayEachBarGraph8 MainDisplayEachBarGraph8;
|
private ControlMainDisplayEachBarGraph8 MainDisplayEachBarGraph8;
|
||||||
private ControlMainDisplayEachBarGraph10 MainDisplayEachBarGraph10;
|
private ControlMainDisplayEachBarGraph10 MainDisplayEachBarGraph10;
|
||||||
private ControlMainDisplayEachBarGraph11 MainDisplayEachBarGraph11;
|
|
||||||
private ControlMainDisplayEachBarGraph12 MainDisplayEachBarGraph12;
|
private ControlMainDisplayEachBarGraph12 MainDisplayEachBarGraph12;
|
||||||
private ControlMainDisplayDotGraph7 MainDisplayDotGraph7;
|
private ControlMainDisplayDotGraph7 MainDisplayDotGraph7;
|
||||||
private ControlMainDisplayDotGraph8 MainDisplayDotGraph8;
|
private ControlMainDisplayDotGraph8 MainDisplayDotGraph8;
|
||||||
private ControlMainDisplayDotGraph10 MainDisplayDotGraph10;
|
private ControlMainDisplayDotGraph10 MainDisplayDotGraph10;
|
||||||
private ControlMainDisplayDotGraph11 MainDisplayDotGraph11;
|
|
||||||
private ControlMainDisplayDotGraph12 MainDisplayDotGraph12;
|
private ControlMainDisplayDotGraph12 MainDisplayDotGraph12;
|
||||||
private ControlMainDisplayTable7 MainDisplayTable7;
|
private ControlMainDisplayTable7 MainDisplayTable7;
|
||||||
private ControlMainDisplayTable8 MainDisplayTable8;
|
private ControlMainDisplayTable8 MainDisplayTable8;
|
||||||
private ControlMainDisplayTable10 MainDisplayTable10;
|
private ControlMainDisplayTable10 MainDisplayTable10;
|
||||||
private ControlMainDisplayTable11 MainDisplayTable11;
|
|
||||||
private ControlMainDisplayTable12 MainDisplayTable12;
|
private ControlMainDisplayTable12 MainDisplayTable12;
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
@ -494,8 +489,6 @@ namespace INT69DC_7C.Forms
|
||||||
}
|
}
|
||||||
private void InitializeControl()
|
private void InitializeControl()
|
||||||
{
|
{
|
||||||
int x = 0, y = 0;
|
|
||||||
|
|
||||||
if (this.ParentForm.IsBootingComplete == false)
|
if (this.ParentForm.IsBootingComplete == false)
|
||||||
this.buttonProductNo.Text = "**";
|
this.buttonProductNo.Text = "**";
|
||||||
else
|
else
|
||||||
|
|
@ -544,16 +537,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.buttonBypassRun.Mode = SmartButton.BUTTONMODE.PUSH;
|
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
|
// Panel Setting
|
||||||
this.panelSetting.Location = new Point(429, 115);
|
this.panelSetting.Location = new Point(429, 115);
|
||||||
this.panelSetting.Visible = false;
|
this.panelSetting.Visible = false;
|
||||||
|
|
@ -566,13 +549,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.panelSubMenu2.Location = new Point(4, 573);
|
this.panelSubMenu2.Location = new Point(4, 573);
|
||||||
this.panelSubMenu2.Visible = false;
|
this.panelSubMenu2.Visible = false;
|
||||||
this.panelSubMenu2.BringToFront();
|
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
|
// ICON
|
||||||
this.pictureBoxUSBBackOn.Visible = this.ParentForm.SystemConfig.IsDataBackup;
|
this.pictureBoxUSBBackOn.Visible = this.ParentForm.SystemConfig.IsDataBackup;
|
||||||
|
|
@ -658,23 +634,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.MainDisplayTable10.BringToFront();
|
this.MainDisplayTable10.BringToFront();
|
||||||
this.MainDisplayTable10.Location = new Point(0, 75);
|
this.MainDisplayTable10.Location = new Point(0, 75);
|
||||||
break;
|
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:
|
case 12:
|
||||||
this.MainDisplayEachBarGraph12 = new ControlMainDisplayEachBarGraph12(this);
|
this.MainDisplayEachBarGraph12 = new ControlMainDisplayEachBarGraph12(this);
|
||||||
this.Controls.Add(this.MainDisplayEachBarGraph12);
|
this.Controls.Add(this.MainDisplayEachBarGraph12);
|
||||||
|
|
@ -699,6 +658,8 @@ namespace INT69DC_7C.Forms
|
||||||
}
|
}
|
||||||
private void DefaultSetting()
|
private void DefaultSetting()
|
||||||
{
|
{
|
||||||
|
int x = 0, y = 0;
|
||||||
|
|
||||||
this.FlagTimeoutCount = 0;
|
this.FlagTimeoutCount = 0;
|
||||||
this.SubmenuIndex = 0;
|
this.SubmenuIndex = 0;
|
||||||
this.ChangeID = "";
|
this.ChangeID = "";
|
||||||
|
|
@ -708,6 +669,17 @@ namespace INT69DC_7C.Forms
|
||||||
|
|
||||||
this.RescaleControl();
|
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)
|
if (this.ParentForm.SystemConfig.IsLogin == true)
|
||||||
this.UpdateDisplayUser(this.ParentForm.SystemConfig.CurrentUser);
|
this.UpdateDisplayUser(this.ParentForm.SystemConfig.CurrentUser);
|
||||||
else
|
else
|
||||||
|
|
@ -776,16 +748,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.Visible = false;
|
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);
|
this.UpdateDisplayButton(SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP);
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
|
|
@ -839,16 +801,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.Visible = false;
|
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);
|
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP);
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
|
|
@ -902,16 +854,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.Visible = true;
|
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);
|
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN, SmartButton.BUTSTATUS.UP);
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
|
|
@ -968,16 +910,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.Visible = false;
|
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);
|
this.UpdateDisplayButton(SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.UP, SmartButton.BUTSTATUS.DOWN);
|
||||||
break;
|
break;
|
||||||
case 12:
|
case 12:
|
||||||
|
|
@ -1511,14 +1443,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateCurrentProductDisplay(status, weightDatas);
|
this.MainDisplayTable10.UpdateCurrentProductDisplay(status, weightDatas);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateCurrentProductDisplay(status, weightDatas);
|
this.MainDisplayEachBarGraph12.UpdateCurrentProductDisplay(status, weightDatas);
|
||||||
|
|
@ -1594,14 +1518,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateEquipmentStatusDisplay(status);
|
this.MainDisplayTable10.UpdateEquipmentStatusDisplay(status);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateEquipmentStatusDisplay(status);
|
this.MainDisplayEachBarGraph12.UpdateEquipmentStatusDisplay(status);
|
||||||
|
|
@ -1648,14 +1564,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStopWeightDisplay(status, weightDatas);
|
this.MainDisplayTable10.UpdateStopWeightDisplay(status, weightDatas);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStopWeightDisplay(status, weightDatas);
|
this.MainDisplayEachBarGraph12.UpdateStopWeightDisplay(status, weightDatas);
|
||||||
|
|
@ -1708,14 +1616,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay(status, weightDatas);
|
this.MainDisplayTable10.UpdateStartWeightDisplay(status, weightDatas);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay(status, weightDatas);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay(status, weightDatas);
|
||||||
|
|
@ -1767,14 +1667,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay1(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay1(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay1(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay1(status, weightData);
|
||||||
|
|
@ -1820,14 +1712,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay2(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay2(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay2(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay2(status, weightData);
|
||||||
|
|
@ -1850,40 +1734,32 @@ namespace INT69DC_7C.Forms
|
||||||
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
switch (this.ParentForm.SystemConfig.EquipmentColumns)
|
||||||
{
|
{
|
||||||
case 7:
|
case 7:
|
||||||
if (this.MainDisplayEachBarGraph7 != null)
|
if (this.MainDisplayEachBarGraph7 != null)
|
||||||
this.MainDisplayEachBarGraph7.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayEachBarGraph7.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayDotGraph7 != null)
|
if (this.MainDisplayDotGraph7 != null)
|
||||||
this.MainDisplayDotGraph7.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayDotGraph7.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayTable7 != null)
|
if (this.MainDisplayTable7 != null)
|
||||||
this.MainDisplayTable7.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayTable7.UpdateStartWeightDisplay3(status, weightData);
|
||||||
break;
|
break;
|
||||||
case 8:
|
case 8:
|
||||||
if (this.MainDisplayEachBarGraph8 != null)
|
if (this.MainDisplayEachBarGraph8 != null)
|
||||||
this.MainDisplayEachBarGraph8.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayEachBarGraph8.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayDotGraph8 != null)
|
if (this.MainDisplayDotGraph8 != null)
|
||||||
this.MainDisplayDotGraph8.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayDotGraph8.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayTable8 != null)
|
if (this.MainDisplayTable8 != null)
|
||||||
this.MainDisplayTable8.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayTable8.UpdateStartWeightDisplay3(status, weightData);
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
if (this.MainDisplayEachBarGraph10 != null)
|
if (this.MainDisplayEachBarGraph10 != null)
|
||||||
this.MainDisplayEachBarGraph10.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayEachBarGraph10.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayDotGraph10 != null)
|
if (this.MainDisplayDotGraph10 != null)
|
||||||
this.MainDisplayDotGraph10.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayDotGraph10.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay3(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayDotGraph12 != null)
|
if (this.MainDisplayDotGraph12 != null)
|
||||||
this.MainDisplayDotGraph12.UpdateStartWeightDisplay3(status, weightData);
|
this.MainDisplayDotGraph12.UpdateStartWeightDisplay3(status, weightData);
|
||||||
if (this.MainDisplayTable12 != null)
|
if (this.MainDisplayTable12 != null)
|
||||||
|
|
@ -1926,14 +1802,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay4(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay4(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay4(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay4(status, weightData);
|
||||||
|
|
@ -1979,14 +1847,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay5(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay5(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay5(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay5(status, weightData);
|
||||||
|
|
@ -2032,14 +1892,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay6(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay6(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay6(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay6(status, weightData);
|
||||||
|
|
@ -2085,14 +1937,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay7(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay7(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay7(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay7(status, weightData);
|
||||||
|
|
@ -2132,14 +1976,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay8(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay8(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay8(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay8(status, weightData);
|
||||||
|
|
@ -2171,14 +2007,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay9(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay9(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay9(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay9(status, weightData);
|
||||||
|
|
@ -2210,14 +2038,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateStartWeightDisplay10(status, weightData);
|
this.MainDisplayTable10.UpdateStartWeightDisplay10(status, weightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay10(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay10(status, weightData);
|
||||||
|
|
@ -2243,14 +2063,6 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay11(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay11(status, weightData);
|
||||||
|
|
@ -2276,8 +2088,6 @@ namespace INT69DC_7C.Forms
|
||||||
break;
|
break;
|
||||||
case 10:
|
case 10:
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay12(status, weightData);
|
this.MainDisplayEachBarGraph12.UpdateStartWeightDisplay12(status, weightData);
|
||||||
|
|
@ -2404,25 +2214,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.labelATPC_Lack.Text != value)
|
if (this.labelATPC_Lack.Text != value)
|
||||||
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()
|
public void Clear()
|
||||||
{
|
{
|
||||||
|
|
@ -2455,14 +2246,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.Clear();
|
this.MainDisplayTable10.Clear();
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.Clear();
|
this.MainDisplayEachBarGraph12.Clear();
|
||||||
|
|
@ -2510,13 +2293,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayDotGraph10 != null)
|
if (this.MainDisplayDotGraph10 != null)
|
||||||
this.MainDisplayDotGraph10.RescaleControl();
|
this.MainDisplayDotGraph10.RescaleControl();
|
||||||
break;
|
break;
|
||||||
case 11:
|
|
||||||
if (this.MainDisplayEachBarGraph11 != null)
|
|
||||||
this.MainDisplayEachBarGraph11.RescaleControl();
|
|
||||||
|
|
||||||
if (this.MainDisplayDotGraph11 != null)
|
|
||||||
this.MainDisplayDotGraph11.RescaleControl();
|
|
||||||
break;
|
|
||||||
case 12:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.RescaleControl();
|
this.MainDisplayEachBarGraph12.RescaleControl();
|
||||||
|
|
@ -2982,14 +2758,6 @@ namespace INT69DC_7C.Forms
|
||||||
if (this.MainDisplayTable10 != null)
|
if (this.MainDisplayTable10 != null)
|
||||||
this.MainDisplayTable10.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
this.MainDisplayTable10.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||||
break;
|
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:
|
case 12:
|
||||||
if (this.MainDisplayEachBarGraph12 != null)
|
if (this.MainDisplayEachBarGraph12 != null)
|
||||||
this.MainDisplayEachBarGraph12.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
this.MainDisplayEachBarGraph12.UpdateBypassDisplay(this.ParentForm.CollectionWeightData);
|
||||||
|
|
|
||||||
|
|
@ -162,7 +162,7 @@
|
||||||
this.smartLabel6.LineSpacing = 0F;
|
this.smartLabel6.LineSpacing = 0F;
|
||||||
this.smartLabel6.Location = new System.Drawing.Point(503, 340);
|
this.smartLabel6.Location = new System.Drawing.Point(503, 340);
|
||||||
this.smartLabel6.Name = "smartLabel6";
|
this.smartLabel6.Name = "smartLabel6";
|
||||||
this.smartLabel6.Size = new System.Drawing.Size(450, 25);
|
this.smartLabel6.Size = new System.Drawing.Size(420, 25);
|
||||||
this.smartLabel6.TabIndex = 233;
|
this.smartLabel6.TabIndex = 233;
|
||||||
this.smartLabel6.Text = "※ Print ON : activate [Data Statistics]";
|
this.smartLabel6.Text = "※ Print ON : activate [Data Statistics]";
|
||||||
this.smartLabel6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
this.smartLabel6.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
this.smartLabel3.LineSpacing = 0F;
|
this.smartLabel3.LineSpacing = 0F;
|
||||||
this.smartLabel3.Location = new System.Drawing.Point(503, 387);
|
this.smartLabel3.Location = new System.Drawing.Point(503, 387);
|
||||||
this.smartLabel3.Name = "smartLabel3";
|
this.smartLabel3.Name = "smartLabel3";
|
||||||
this.smartLabel3.Size = new System.Drawing.Size(450, 25);
|
this.smartLabel3.Size = new System.Drawing.Size(420, 25);
|
||||||
this.smartLabel3.TabIndex = 230;
|
this.smartLabel3.TabIndex = 230;
|
||||||
this.smartLabel3.Text = "※ Part11 ON : activate [Login], [Data backup], [Statistics]";
|
this.smartLabel3.Text = "※ Part11 ON : activate [Login], [Data backup], [Statistics]";
|
||||||
this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
this.smartLabel3.TextHAlign = SmartX.SmartLabel.TextHorAlign.Left;
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,6 @@ namespace INT69DC_7C.Forms
|
||||||
|
|
||||||
private string BeforeID;
|
private string BeforeID;
|
||||||
private string BeforePassword;
|
private string BeforePassword;
|
||||||
private string CurrentUserPassword;
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructor
|
#region Constructor
|
||||||
|
|
@ -134,7 +133,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.PasswordChar = false;
|
this.PasswordChar = false;
|
||||||
this.BeforeID = "";
|
this.BeforeID = "";
|
||||||
this.BeforePassword = "";
|
this.BeforePassword = "";
|
||||||
this.CurrentUserPassword = "Password12!";
|
|
||||||
|
|
||||||
this.UpdateAccessRightComboBoxDisplay();
|
this.UpdateAccessRightComboBoxDisplay();
|
||||||
this.comboBoxAccessRight.SelectedIndexChanged -= new EventHandler(this.comboBoxAccessRight_SelectedIndexChanged);
|
this.comboBoxAccessRight.SelectedIndexChanged -= new EventHandler(this.comboBoxAccessRight_SelectedIndexChanged);
|
||||||
|
|
@ -319,30 +317,19 @@ namespace INT69DC_7C.Forms
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
item.ID = this.labelID.Text;
|
item.ID = this.labelID.Text;
|
||||||
if (isNewReg == true)
|
item.Password = this.labelPassword.Text;
|
||||||
item.Password = this.SelectedUserItem.ResetPW;
|
item.ExpireId = int.Parse(this.labelExpiryDateOfAccount.Text);
|
||||||
else
|
item.ExpirePassword = int.Parse(this.labelExpiryDateOfPassword.Text);
|
||||||
item.Password = this.CurrentUserPassword;
|
|
||||||
if (this.ParentForm.SystemConfig.IsOptPart11 == true)
|
|
||||||
{
|
|
||||||
item.ExpireId = int.Parse(this.labelExpiryDateOfAccount.Text);
|
|
||||||
item.ExpirePassword = int.Parse(this.labelExpiryDateOfPassword.Text);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
item.ExpireId = 0;
|
|
||||||
item.ExpirePassword = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
//item.IsAdmin = this.cbAdministrator.Checked;
|
//item.IsAdmin = this.cbAdministrator.Checked;
|
||||||
if (isNewReg == true)
|
|
||||||
item.ActiveLevel = this.comboBoxAccessRight.SelectedIndex + 1;
|
if (this.SelectedUserItem.Group == DataStore.UserGroup.Admin)
|
||||||
|
{
|
||||||
|
item.ActiveLevel = 9;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (this.SelectedUserItem.Group == DataStore.UserGroup.Admin)
|
item.ActiveLevel = this.comboBoxAccessRight.SelectedIndex + 1;
|
||||||
item.ActiveLevel = 9;
|
|
||||||
else
|
|
||||||
item.ActiveLevel = this.comboBoxAccessRight.SelectedIndex + 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
menuId.fMenu = new bool[UserManager.USER_MENU_ID_MAX];
|
menuId.fMenu = new bool[UserManager.USER_MENU_ID_MAX];
|
||||||
|
|
@ -660,7 +647,6 @@ namespace INT69DC_7C.Forms
|
||||||
this.labelPassword.Text = item.Password;
|
this.labelPassword.Text = item.Password;
|
||||||
else
|
else
|
||||||
this.labelPassword.Text = this.PasswordToAsterisk(item.Password);
|
this.labelPassword.Text = this.PasswordToAsterisk(item.Password);
|
||||||
this.CurrentUserPassword = item.Password;
|
|
||||||
|
|
||||||
this.UpdateAccessRightDisplay(item.ActiveLevel);
|
this.UpdateAccessRightDisplay(item.ActiveLevel);
|
||||||
this.buttonSave.Visible = false;
|
this.buttonSave.Visible = false;
|
||||||
|
|
|
||||||
|
|
@ -58,53 +58,17 @@ namespace INT69DC_7C.Forms
|
||||||
{
|
{
|
||||||
ImageDll images = new ImageDll();
|
ImageDll images = new ImageDll();
|
||||||
|
|
||||||
switch (this.ParentForm.SystemConfig.Language)
|
if (this.ParentForm.SystemConfig.Language == DataStore.LanguageID.English)
|
||||||
{
|
{
|
||||||
case DataStore.LanguageID.Korean:
|
this.labelTitle.Text = "Group Editor";
|
||||||
this.labelTitle.Text = "그룹 에디터";
|
|
||||||
break;
|
|
||||||
case DataStore.LanguageID.English:
|
|
||||||
this.labelTitle.Text = "Group Editor";
|
|
||||||
|
|
||||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveDisable));
|
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
|
||||||
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveDown));
|
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
|
||||||
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engSaveUp));
|
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackUp));
|
||||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
|
}
|
||||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
|
else
|
||||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackUp));
|
{
|
||||||
break;
|
this.labelTitle.Text = "그룹 에디터";
|
||||||
case DataStore.LanguageID.Chinese:
|
|
||||||
this.labelTitle.Text = "组编辑";
|
|
||||||
|
|
||||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveDisable));
|
|
||||||
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveDown));
|
|
||||||
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnSaveUp));
|
|
||||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDisable));
|
|
||||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackDown));
|
|
||||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackUp));
|
|
||||||
break;
|
|
||||||
case DataStore.LanguageID.Czech:
|
|
||||||
this.labelTitle.Text = "Group Editor";
|
|
||||||
|
|
||||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveDisable));
|
|
||||||
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveDown));
|
|
||||||
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeSaveUp));
|
|
||||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDisable));
|
|
||||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackDown));
|
|
||||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackUp));
|
|
||||||
break;
|
|
||||||
case DataStore.LanguageID.German:
|
|
||||||
this.labelTitle.Text = "Group Editor";
|
|
||||||
|
|
||||||
this.buttonSave.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerSaveDisable));
|
|
||||||
this.buttonSave.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerSaveDown));
|
|
||||||
this.buttonSave.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerSaveUp));
|
|
||||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDisable));
|
|
||||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackDown));
|
|
||||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackUp));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void DefaultSetting()
|
private void DefaultSetting()
|
||||||
|
|
|
||||||
|
|
@ -394,58 +394,6 @@ namespace INT69DC_7C
|
||||||
else
|
else
|
||||||
return "0000000";
|
return "0000000";
|
||||||
}
|
}
|
||||||
/// <summary>
|
|
||||||
/// 7자리에 맞춰 공백을 빈칸으로 채움
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="value"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static string StringBlankFillDigits7(string value)
|
|
||||||
{
|
|
||||||
if (value.Length == 1)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 2)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 3)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 4)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 5)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 6)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 7)
|
|
||||||
return value;
|
|
||||||
else
|
|
||||||
return " ";
|
|
||||||
}
|
|
||||||
/// <summary>
|
|
||||||
/// 9자리에 맞춰 공백을 빈칸으로 채움
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="value"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static string StringBlankFillDigits9(string value)
|
|
||||||
{
|
|
||||||
if (value.Length == 1)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 2)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 3)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 4)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 5)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 6)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 7)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 8)
|
|
||||||
return string.Format(" {0}", value);
|
|
||||||
else if (value.Length == 9)
|
|
||||||
return value;
|
|
||||||
else
|
|
||||||
return " ";
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 2로 나눈 나머지값 리턴
|
/// 2로 나눈 나머지값 리턴
|
||||||
|
|
|
||||||
|
|
@ -93,6 +93,12 @@
|
||||||
<Compile Include="Controls\ControlChildformSystemSetting.Designer.cs">
|
<Compile Include="Controls\ControlChildformSystemSetting.Designer.cs">
|
||||||
<DependentUpon>ControlChildformSystemSetting.cs</DependentUpon>
|
<DependentUpon>ControlChildformSystemSetting.cs</DependentUpon>
|
||||||
</Compile>
|
</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">
|
<Compile Include="Controls\ControlConfiguration1.cs">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|
@ -105,12 +111,6 @@
|
||||||
<Compile Include="Controls\ControlEquipmentTest.Designer.cs">
|
<Compile Include="Controls\ControlEquipmentTest.Designer.cs">
|
||||||
<DependentUpon>ControlEquipmentTest.cs</DependentUpon>
|
<DependentUpon>ControlEquipmentTest.cs</DependentUpon>
|
||||||
</Compile>
|
</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">
|
<Compile Include="Controls\ControlMainDisplayDotGraph10.cs">
|
||||||
<SubType>UserControl</SubType>
|
<SubType>UserControl</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
|
@ -207,30 +207,6 @@
|
||||||
<Compile Include="Controls\ControlUserSetting.designer.cs">
|
<Compile Include="Controls\ControlUserSetting.designer.cs">
|
||||||
<DependentUpon>ControlUserSetting.cs</DependentUpon>
|
<DependentUpon>ControlUserSetting.cs</DependentUpon>
|
||||||
</Compile>
|
</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="DataStore.cs" />
|
||||||
<Compile Include="DialogForms\DialogFormDataStatistics.cs">
|
<Compile Include="DialogForms\DialogFormDataStatistics.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
|
|
@ -460,10 +436,6 @@
|
||||||
<DependentUpon>ControlEquipmentTest.cs</DependentUpon>
|
<DependentUpon>ControlEquipmentTest.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="Controls\ControlMainDisplayAlarm.resx">
|
|
||||||
<DependentUpon>ControlMainDisplayAlarm.cs</DependentUpon>
|
|
||||||
<SubType>Designer</SubType>
|
|
||||||
</EmbeddedResource>
|
|
||||||
<EmbeddedResource Include="Controls\ControlMainDisplayDotGraph10.resx">
|
<EmbeddedResource Include="Controls\ControlMainDisplayDotGraph10.resx">
|
||||||
<DependentUpon>ControlMainDisplayDotGraph10.cs</DependentUpon>
|
<DependentUpon>ControlMainDisplayDotGraph10.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
|
@ -528,22 +500,6 @@
|
||||||
<DependentUpon>ControlUserSetting.cs</DependentUpon>
|
<DependentUpon>ControlUserSetting.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</EmbeddedResource>
|
</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">
|
<EmbeddedResource Include="DialogForms\DialogFormDataStatistics.resx">
|
||||||
<DependentUpon>DialogFormDataStatistics.cs</DependentUpon>
|
<DependentUpon>DialogFormDataStatistics.cs</DependentUpon>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
|
|
||||||
|
|
@ -27,15 +27,9 @@ namespace INT69DC_7C.SerialManger
|
||||||
public delegate void fnSerialMgrRcvPacketCB(StringBuilder commPort, IntPtr pData, int length);
|
public delegate void fnSerialMgrRcvPacketCB(StringBuilder commPort, IntPtr pData, int length);
|
||||||
public static fnSerialMgrRcvPacketCB fnSerialMgrRcvPacketCallback;
|
public static fnSerialMgrRcvPacketCB fnSerialMgrRcvPacketCallback;
|
||||||
|
|
||||||
public delegate void fnSerialMgrRcvPacketStrCB(StringBuilder commPort, StringBuilder pMessage, int length);
|
|
||||||
public static fnSerialMgrRcvPacketStrCB fnSerialMgrRcvPacketStrCallback;
|
|
||||||
|
|
||||||
public delegate void fnSerialMgrRcvErrPacketCB(StringBuilder commPort, IntPtr pData, int length);
|
public delegate void fnSerialMgrRcvErrPacketCB(StringBuilder commPort, IntPtr pData, int length);
|
||||||
public static fnSerialMgrRcvErrPacketCB fnSerialMgrRcvErrPacketCallback;
|
public static fnSerialMgrRcvErrPacketCB fnSerialMgrRcvErrPacketCallback;
|
||||||
|
|
||||||
public delegate void fnSerialMgrRcvErrPacketStrCB(StringBuilder commPort, StringBuilder pMessage, int length);
|
|
||||||
public static fnSerialMgrRcvErrPacketStrCB fnSerialMgrRcvErrPacketStrCallback;
|
|
||||||
|
|
||||||
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
||||||
public static extern void DLL_SerialMgr_Register_DebugCB(fnSerialMgrDebugCB func);
|
public static extern void DLL_SerialMgr_Register_DebugCB(fnSerialMgrDebugCB func);
|
||||||
|
|
||||||
|
|
@ -48,15 +42,9 @@ namespace INT69DC_7C.SerialManger
|
||||||
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
||||||
public static extern void DLL_SerialMgr_Register_RcvPacketCB(fnSerialMgrRcvPacketCB func);
|
public static extern void DLL_SerialMgr_Register_RcvPacketCB(fnSerialMgrRcvPacketCB func);
|
||||||
|
|
||||||
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
|
||||||
public static extern void DLL_SerialMgr_Register_RcvPacketStrCB(fnSerialMgrRcvPacketStrCB func);
|
|
||||||
|
|
||||||
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
||||||
public static extern void DLL_SerialMgr_Register_RcvErrPacketCB(fnSerialMgrRcvErrPacketCB func);
|
public static extern void DLL_SerialMgr_Register_RcvErrPacketCB(fnSerialMgrRcvErrPacketCB func);
|
||||||
|
|
||||||
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
|
||||||
public static extern void DLL_SerialMgr_Register_RcvErrPacketStrCB(fnSerialMgrRcvErrPacketStrCB func);
|
|
||||||
|
|
||||||
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
[DllImport(PathDll, CallingConvention = CallingConvention.Winapi)]
|
||||||
public static extern void DLL_SerialMgr_HelloWorld();
|
public static extern void DLL_SerialMgr_HelloWorld();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,7 @@ namespace INT69DC_7C.SerialManger
|
||||||
{
|
{
|
||||||
public delegate void ObjectEventHandler(object data);
|
public delegate void ObjectEventHandler(object data);
|
||||||
public static event ObjectEventHandler SerialPortMessageReceive;
|
public static event ObjectEventHandler SerialPortMessageReceive;
|
||||||
public static event ObjectEventHandler SerialPortStrMessageReceive;
|
|
||||||
public static event ObjectEventHandler SerialPortErrMessageReceive;
|
public static event ObjectEventHandler SerialPortErrMessageReceive;
|
||||||
public static event ObjectEventHandler SerialPortErrStrMessageReceive;
|
|
||||||
public static event ObjectEventHandler SerialPortGetVersionDataEvent;
|
public static event ObjectEventHandler SerialPortGetVersionDataEvent;
|
||||||
|
|
||||||
public static void IntializeSerialManager()
|
public static void IntializeSerialManager()
|
||||||
|
|
@ -33,17 +31,11 @@ namespace INT69DC_7C.SerialManger
|
||||||
fnSerialVersionCallback = serialVersionCallback;
|
fnSerialVersionCallback = serialVersionCallback;
|
||||||
DLL_SerialMgr_Register_VersionCB(fnSerialVersionCallback);
|
DLL_SerialMgr_Register_VersionCB(fnSerialVersionCallback);
|
||||||
|
|
||||||
//fnSerialMgrRcvPacketCallback = serialRcvPacketMsgCallback;
|
fnSerialMgrRcvPacketCallback = serialRcvPacketMsgCallback;
|
||||||
//DLL_SerialMgr_Register_RcvPacketCB(fnSerialMgrRcvPacketCallback);
|
DLL_SerialMgr_Register_RcvPacketCB(fnSerialMgrRcvPacketCallback);
|
||||||
|
|
||||||
fnSerialMgrRcvPacketStrCallback = serialRcvPacketStrMsgCallback;
|
fnSerialMgrRcvErrPacketCallback = serialRcvErrPacketMsgCallback;
|
||||||
DLL_SerialMgr_Register_RcvPacketStrCB(fnSerialMgrRcvPacketStrCallback);
|
DLL_SerialMgr_Register_RcvErrPacketCB(fnSerialMgrRcvErrPacketCallback);
|
||||||
|
|
||||||
//fnSerialMgrRcvErrPacketCallback = serialRcvErrPacketMsgCallback;
|
|
||||||
//DLL_SerialMgr_Register_RcvErrPacketCB(fnSerialMgrRcvErrPacketCallback);
|
|
||||||
|
|
||||||
fnSerialMgrRcvErrPacketStrCallback = serialRcvErrPacketStrMsgCallback;
|
|
||||||
DLL_SerialMgr_Register_RcvErrPacketStrCB(fnSerialMgrRcvErrPacketStrCallback);
|
|
||||||
|
|
||||||
// test
|
// test
|
||||||
//DLL_SerialMgr_HelloWorld();
|
//DLL_SerialMgr_HelloWorld();
|
||||||
|
|
@ -98,6 +90,7 @@ namespace INT69DC_7C.SerialManger
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://stackoverflow.com/questions/22938756/how-to-marshal-c-array-to-c-sharp-via-intptr
|
||||||
public static void serialRcvPacketMsgCallback(StringBuilder commPort, IntPtr pData, int length)
|
public static void serialRcvPacketMsgCallback(StringBuilder commPort, IntPtr pData, int length)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
@ -115,29 +108,39 @@ namespace INT69DC_7C.SerialManger
|
||||||
|
|
||||||
if (SerialPortMessageReceive != null)
|
if (SerialPortMessageReceive != null)
|
||||||
SerialPortMessageReceive(sdata);
|
SerialPortMessageReceive(sdata);
|
||||||
|
|
||||||
|
#if TEST_CB
|
||||||
|
String commPortStr = commPort.ToString();
|
||||||
|
|
||||||
|
serialPortMessageByte(commPortStr, data, length);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
//Console.Write("comm port : " + commPort + ", length = " + length.ToString() + "\n");
|
||||||
|
#if TEST_DEBUG
|
||||||
|
// https://stackoverflow.com/questions/1342922/console-writeline-as-hexadecimal
|
||||||
|
int index = 0;
|
||||||
|
foreach (byte temp in data)
|
||||||
|
{
|
||||||
|
Console.Write(temp.ToString("X2") + " ");
|
||||||
|
index++;
|
||||||
|
|
||||||
|
if (index % 16 == 0) Console.Write("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.Write("\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
//data = null;
|
||||||
|
|
||||||
|
//GC.Collect();
|
||||||
|
//GC.WaitForPendingFinalizers();
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
throw (e);
|
throw (e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static void serialRcvPacketStrMsgCallback(StringBuilder commPort, StringBuilder pMessage, int length)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (commPort.Length == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (length == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (SerialPortStrMessageReceive != null)
|
|
||||||
SerialPortStrMessageReceive(pMessage);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void serialRcvErrPacketMsgCallback(StringBuilder commPort, IntPtr pData, int length)
|
public static void serialRcvErrPacketMsgCallback(StringBuilder commPort, IntPtr pData, int length)
|
||||||
{
|
{
|
||||||
|
|
@ -156,29 +159,41 @@ namespace INT69DC_7C.SerialManger
|
||||||
|
|
||||||
if (SerialPortErrMessageReceive != null)
|
if (SerialPortErrMessageReceive != null)
|
||||||
SerialPortErrMessageReceive(sdata);
|
SerialPortErrMessageReceive(sdata);
|
||||||
|
|
||||||
|
//String commPortStr = commPort.ToString();
|
||||||
|
//serialPortMessageByte(commPortStr, data, length);
|
||||||
|
|
||||||
|
//Console.Write("Err : comm port : " + commPort + ", length = " + length.ToString() + "\n");
|
||||||
|
|
||||||
|
#if (TEST_DEBUG1)
|
||||||
|
// https://stackoverflow.com/questions/1342922/console-writeline-as-hexadecimal
|
||||||
|
int index = 0;
|
||||||
|
foreach (byte temp in data)
|
||||||
|
{
|
||||||
|
Console.Write(temp.ToString("X2") + " ");
|
||||||
|
index++;
|
||||||
|
|
||||||
|
if (index == 5) break;
|
||||||
|
|
||||||
|
if (index % 16 == 0) Console.Write("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.Write("\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// https://dhshin94.tistory.com/135
|
||||||
|
//data = null;
|
||||||
|
|
||||||
|
//GC.Collect();
|
||||||
|
//GC.WaitForPendingFinalizers();
|
||||||
|
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
throw (e);
|
throw (e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
public static void serialRcvErrPacketStrMsgCallback(StringBuilder commPort, StringBuilder pMessage, int length)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (commPort.Length == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (length == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
if (SerialPortErrStrMessageReceive != null)
|
|
||||||
SerialPortErrStrMessageReceive(pMessage);
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endregion // DLL_CALLBACK
|
#endregion // DLL_CALLBACK
|
||||||
|
|
||||||
#region DLL_COMMAND
|
#region DLL_COMMAND
|
||||||
|
|
@ -189,6 +204,7 @@ namespace INT69DC_7C.SerialManger
|
||||||
|
|
||||||
DLL_SerialMgr_PortOpen(pCommPort, BaudRate, stopBit, parity, dataBit);
|
DLL_SerialMgr_PortOpen(pCommPort, BaudRate, stopBit, parity, dataBit);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void serialPortClose(String commPort)
|
public static void serialPortClose(String commPort)
|
||||||
{
|
{
|
||||||
IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString());
|
IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString());
|
||||||
|
|
@ -196,6 +212,7 @@ namespace INT69DC_7C.SerialManger
|
||||||
DLL_SerialMgr_PortClose(pCommPort);
|
DLL_SerialMgr_PortClose(pCommPort);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static void serialPortMessageByte(String commport, byte[] data, int length)
|
public static void serialPortMessageByte(String commport, byte[] data, int length)
|
||||||
{
|
{
|
||||||
IntPtr pCommPort = Marshal.StringToBSTR(commport.ToString());
|
IntPtr pCommPort = Marshal.StringToBSTR(commport.ToString());
|
||||||
|
|
@ -212,6 +229,9 @@ namespace INT69DC_7C.SerialManger
|
||||||
// if (SerialPortMessageReceive != null)
|
// if (SerialPortMessageReceive != null)
|
||||||
// SerialPortMessageReceive(sdata);
|
// SerialPortMessageReceive(sdata);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//https://stackoverflow.com/questions/13418795/convert-byte-array-to-structure-in-the-compact-framework
|
||||||
public static void serialPortMessage(String commPort, String Message)
|
public static void serialPortMessage(String commPort, String Message)
|
||||||
{
|
{
|
||||||
IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString());
|
IntPtr pCommPort = Marshal.StringToBSTR(commPort.ToString());
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@
|
||||||
DllUserMgr.dll
|
DllUserMgr.dll
|
||||||
DllAes128.dll
|
DllAes128.dll
|
||||||
DllSerialMgr.dll
|
DllSerialMgr.dll
|
||||||
InModbus.dll
|
|
||||||
|
|
||||||
COM4 : 프린터 전용(데이터통계)
|
COM4 : 프린터 전용(데이터통계)
|
||||||
|
|
||||||
|
|
@ -24,66 +23,6 @@
|
||||||
멀티형 8,10,12열 컨베어/스틱 계량기
|
멀티형 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
|
|
||||||
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
|
|
||||||
- SerialDll 미사용
|
|
||||||
- (버그수정) Part11이 아닌 로그인 사용 시, 만료일 뜨는 버그 수정
|
|
||||||
- (버그수정) Password가 label - *로 표시되어 생기는 버그 수정
|
|
||||||
|
|
||||||
@ Ver 12.3.0 by LSJ
|
|
||||||
- 2025.02.27
|
|
||||||
- Ver 12.2.1 Modify
|
|
||||||
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
|
|
||||||
- SerialDll 사용
|
|
||||||
Serial callback 수정(string)
|
|
||||||
serialRcvPacketStrMsgCallback
|
|
||||||
serialRcvErrPacketStrMsgCallback
|
|
||||||
|
|
||||||
@ Ver 12.2.3 by LSJ
|
|
||||||
- 2025.03.13
|
|
||||||
- Ver 12.2.2 Modify
|
|
||||||
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
|
|
||||||
- 영테크팩 요청사항 추가
|
|
||||||
OP6 프로토콜 수정
|
|
||||||
중량 설정값 추가
|
|
||||||
OPT6 : STX[1],ID[5],NO[4],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]
|
|
||||||
--> STX[1],ID[5],NO[4],UNDER[6],PASS[6],OVER[6],TARE[6],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]
|
|
||||||
|
|
||||||
@ Ver 12.2.2 by LSJ
|
|
||||||
- 2025.03.04
|
|
||||||
- Ver 12.2.1 Modify
|
|
||||||
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
|
|
||||||
- 영문 버그 수정
|
|
||||||
유저설정 - 테스트 설정 팝업 '입력' 한글 버그
|
|
||||||
유저그룹설정 - 저장 버튼 한글 버그
|
|
||||||
- 영테크팩 요청 프로토콜 추가
|
|
||||||
수량 데이터 추가(totalPass, totalNG, totalAll)
|
|
||||||
OPT6 : STX[1],ID[5],NO[4],PASS CNT[7],NG CNT[7],TOTAL CNT[9],{GRD[1],WEIGHT[6]} * n,ETX[1]
|
|
||||||
|
|
||||||
@ Ver 12.2.1 by LSJ
|
|
||||||
- 2025.01.02
|
|
||||||
- Ver 12.2.0 Modify
|
|
||||||
- Framework : SmartX Framework V3.2.4(update: 2021.01.20)
|
|
||||||
- 시스템설정
|
|
||||||
판정 그래프 안그려지는 버그 수정
|
|
||||||
// 판정설정 그래프
|
|
||||||
private int ReceiveCommandSG0(string lane, string receiveData)
|
|
||||||
temp = 12 -> 20 수정
|
|
||||||
속도 데이터가 추가 되어있다고함(실제로는 -99990000 이거만 수신됨..)
|
|
||||||
|
|
||||||
@ Ver 12.2.0 by LSJ
|
@ Ver 12.2.0 by LSJ
|
||||||
- 2024.12.19
|
- 2024.12.19
|
||||||
- Ver 12.1.0 Modify
|
- Ver 12.1.0 Modify
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue