@ Ver 9.3.0 by LSJ
- 2026.03.10 - Ver 9.2.0 Modify - Framework : SmartX Framework V3.2.4(update: 2021.01.20) - 한림제약 요청 데이터 백업 - 삭제여부 기능 유저 권한으로 사용 가능하도록 수정 - IO Test Label Name 설정 추가master
parent
ff49739d59
commit
60ae81fae8
BIN
INT63DC_2C.suo
BIN
INT63DC_2C.suo
Binary file not shown.
|
|
@ -59,10 +59,6 @@ namespace INT63DC_2C
|
|||
Czech,
|
||||
German,
|
||||
Japanese,
|
||||
Russian,
|
||||
Spanish,
|
||||
Turkish,
|
||||
French,
|
||||
};
|
||||
|
||||
public enum E_UpdateCheck
|
||||
|
|
@ -870,7 +866,6 @@ namespace INT63DC_2C
|
|||
public class SystemConfigurationItem
|
||||
{
|
||||
#region Field
|
||||
private bool m_IsDataBackup;
|
||||
private bool m_IsEachNG;
|
||||
private bool m_IsWeightViewForward;
|
||||
private bool m_IsBypassMode;
|
||||
|
|
@ -887,7 +882,6 @@ namespace INT63DC_2C
|
|||
private bool m_IsPart11;
|
||||
private bool m_IsSorterCheckEnable;
|
||||
private bool m_IsModbus;
|
||||
private bool m_IsDeleteAfterBackup;
|
||||
|
||||
private int m_NumberOfLoginFailures;
|
||||
private int m_DecimalPlaces;
|
||||
|
|
@ -943,11 +937,6 @@ namespace INT63DC_2C
|
|||
#endregion
|
||||
|
||||
#region Property
|
||||
public bool IsDataBackup
|
||||
{
|
||||
get { return this.m_IsDataBackup; }
|
||||
set { this.m_IsDataBackup = value; }
|
||||
}
|
||||
public bool IsEachNG
|
||||
{
|
||||
get { return this.m_IsEachNG; }
|
||||
|
|
@ -1028,11 +1017,6 @@ namespace INT63DC_2C
|
|||
get { return this.m_IsModbus; }
|
||||
set { this.m_IsModbus = value; }
|
||||
}
|
||||
public bool IsDeleteAfterBackup
|
||||
{
|
||||
get { return this.m_IsDeleteAfterBackup; }
|
||||
set { this.m_IsDeleteAfterBackup = value; }
|
||||
}
|
||||
|
||||
public int NumberOfLoginFailures
|
||||
{
|
||||
|
|
@ -1257,7 +1241,6 @@ namespace INT63DC_2C
|
|||
#region Method
|
||||
public void Initialization()
|
||||
{
|
||||
this.IsDataBackup = false;
|
||||
this.IsEachNG = true;
|
||||
this.IsWeightViewForward = true;
|
||||
this.IsBypassMode = false;
|
||||
|
|
@ -1274,7 +1257,6 @@ namespace INT63DC_2C
|
|||
this.IsPart11 = false;
|
||||
this.IsSorterCheckEnable = false;
|
||||
this.IsModbus = false;
|
||||
this.IsDeleteAfterBackup = false;
|
||||
|
||||
this.NumberOfLoginFailures = 5;
|
||||
this.DecimalPlaces = 1;
|
||||
|
|
@ -1329,13 +1311,13 @@ namespace INT63DC_2C
|
|||
[StructLayout(LayoutKind.Sequential)]
|
||||
public struct StructSystemConfigurationItem1
|
||||
{
|
||||
public bool IsDataBackup;
|
||||
public bool DummyBool8;
|
||||
public bool IsEachNG;
|
||||
public bool IsLogin;
|
||||
public bool IsWeightViewForward;
|
||||
public bool IsOptDataStatistics;
|
||||
public bool IsSorterCheckEnable;
|
||||
public bool IsDeleteAfterBackup;
|
||||
public bool DummyBool6;
|
||||
public bool DummyBool7;
|
||||
|
||||
public int DecimalPlaces;
|
||||
|
|
@ -1358,7 +1340,7 @@ namespace INT63DC_2C
|
|||
public bool DummyBool2;
|
||||
public bool DummyBool3;
|
||||
public bool DummyBool4;
|
||||
public bool DummyBool8;
|
||||
public bool DummyBool5;
|
||||
|
||||
public int Sorter1Location;
|
||||
public int Sorter2Location;
|
||||
|
|
|
|||
|
|
@ -84,37 +84,11 @@ namespace INT63DC_2C.DialogForms
|
|||
else if (language == DataStore.E_LanguageID.Czech)
|
||||
{
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.Russian)
|
||||
{
|
||||
this.labelTitle.Text = "Клавиатура";
|
||||
|
||||
this.buttonCancel.Text = "X";
|
||||
this.buttonEnter.Text = "Ввод";
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.German)
|
||||
{
|
||||
this.buttonCancel.Text = "X";
|
||||
this.buttonEnter.Text = "Enter";
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.Spanish)
|
||||
{
|
||||
this.buttonCancel.Text = "X";
|
||||
this.buttonEnter.Text = "Entrar";
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.Turkish)
|
||||
{
|
||||
this.labelTitle.Text = "Tuş takımı";
|
||||
|
||||
this.buttonCancel.Text = "X";
|
||||
this.buttonEnter.Text = "Reddet";
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.French)
|
||||
{
|
||||
this.labelTitle.Text = "clavier";
|
||||
|
||||
this.buttonCancel.Text = "X";
|
||||
this.buttonEnter.Text = "saisir";
|
||||
}
|
||||
else
|
||||
{
|
||||
this.buttonCancel.Text = "ESC";
|
||||
|
|
|
|||
|
|
@ -1921,8 +1921,6 @@ namespace INT63DC_2C.DialogForms
|
|||
this.labelMessage1.Text = "";
|
||||
this.labelMessage2.Text = "";
|
||||
|
||||
int screenNum = (int)screen;
|
||||
|
||||
switch (screen)
|
||||
{
|
||||
case DataStore.FormStore.FormProgramUpdate:
|
||||
|
|
@ -1934,42 +1932,42 @@ namespace INT63DC_2C.DialogForms
|
|||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_01";
|
||||
this.labelErrorCode.Text = "Error_01";
|
||||
this.labelMessage1.Text = "파일명이 올바르지 않습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_02";
|
||||
this.labelErrorCode.Text = "Error_02";
|
||||
this.labelMessage1.Text = "시리얼 번호가 올바르지 않습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_03";
|
||||
this.labelErrorCode.Text = "Error_03";
|
||||
this.labelMessage1.Text = "파일을 찾을 수 없습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_04";
|
||||
this.labelErrorCode.Text = "Error_04";
|
||||
this.labelMessage1.Text = "파일 상태에 문제가 있습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_05";
|
||||
this.labelErrorCode.Text = "Error_05";
|
||||
this.labelMessage1.Text = "파일의 시리얼 번호가 현재 장비와 일치하지 않습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_06";
|
||||
this.labelErrorCode.Text = "Error_06";
|
||||
this.labelMessage1.Text = "UID가 일치하지 않습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_07";
|
||||
this.labelErrorCode.Text = "Error_07";
|
||||
this.labelMessage1.Text = "키 타입이 올바르지 않습니다";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_99";
|
||||
this.labelErrorCode.Text = "Error_99";
|
||||
this.labelMessage1.Text = "제조사에 문의하세요";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
|
|
@ -1984,42 +1982,42 @@ namespace INT63DC_2C.DialogForms
|
|||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_01";
|
||||
this.labelErrorCode.Text = "Error_01";
|
||||
this.labelMessage1.Text = "The file name is incorrect";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_02";
|
||||
this.labelErrorCode.Text = "Error_02";
|
||||
this.labelMessage1.Text = "Serial number is incorrect";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_03";
|
||||
this.labelErrorCode.Text = "Error_03";
|
||||
this.labelMessage1.Text = "file not found";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_04";
|
||||
this.labelErrorCode.Text = "Error_04";
|
||||
this.labelMessage1.Text = "There is a problem with the file status";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_05";
|
||||
this.labelErrorCode.Text = "Error_05";
|
||||
this.labelMessage1.Text = "The serial number in the file";
|
||||
this.labelMessage2.Text = "does not match your current device";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_06";
|
||||
this.labelErrorCode.Text = "Error_06";
|
||||
this.labelMessage1.Text = "UID does not match";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_07";
|
||||
this.labelErrorCode.Text = "Error_07";
|
||||
this.labelMessage1.Text = "Key type is incorrect";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_99";
|
||||
this.labelErrorCode.Text = "Error_99";
|
||||
this.labelMessage1.Text = "Please contact a manufacturer";
|
||||
break;
|
||||
}
|
||||
|
|
@ -2033,42 +2031,42 @@ namespace INT63DC_2C.DialogForms
|
|||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_01";
|
||||
this.labelErrorCode.Text = "错误_01";
|
||||
this.labelMessage1.Text = "文件名不正确";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_02";
|
||||
this.labelErrorCode.Text = "错误_02";
|
||||
this.labelMessage1.Text = "序列号不正确";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_03";
|
||||
this.labelErrorCode.Text = "错误_03";
|
||||
this.labelMessage1.Text = "文件未找到";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_04";
|
||||
this.labelErrorCode.Text = "错误_04";
|
||||
this.labelMessage1.Text = "文件状态有问题";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_05";
|
||||
this.labelErrorCode.Text = "错误_05";
|
||||
this.labelMessage1.Text = "文件中的序列号与您当前的设备不匹配";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_06";
|
||||
this.labelErrorCode.Text = "错误_06";
|
||||
this.labelMessage1.Text = "UID 不匹配";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_07";
|
||||
this.labelErrorCode.Text = "错误_07";
|
||||
this.labelMessage1.Text = "密钥类型不正确";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "错误" + screenNum.ToString() + "_99";
|
||||
this.labelErrorCode.Text = "错误_99";
|
||||
this.labelMessage1.Text = "请联系厂商";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
|
|
@ -2077,54 +2075,49 @@ namespace INT63DC_2C.DialogForms
|
|||
}
|
||||
else if (language == DataStore.E_LanguageID.Czech)
|
||||
{
|
||||
this.buttonOK.Text = "Potvrdit";
|
||||
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.Russian)
|
||||
{
|
||||
this.buttonOK.Text = "OK";
|
||||
|
||||
#region 러시아어
|
||||
#region 체코어
|
||||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_01";
|
||||
this.labelMessage1.Text = "Имя файла неверно";
|
||||
this.labelErrorCode.Text = "Chyba_01";
|
||||
this.labelMessage1.Text = "Název souboru je nesprávný";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_02";
|
||||
this.labelMessage1.Text = "Серийный номер неверен";
|
||||
this.labelErrorCode.Text = "Chyba_02";
|
||||
this.labelMessage1.Text = "Sériové číslo je nesprávné";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_03";
|
||||
this.labelMessage1.Text = "файл не найден";
|
||||
this.labelErrorCode.Text = "Chyba_03";
|
||||
this.labelMessage1.Text = "Soubor nebyl nalezen";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_04";
|
||||
this.labelMessage1.Text = "Возникла проблема со статусом файла";
|
||||
this.labelErrorCode.Text = "Chyba_04";
|
||||
this.labelMessage1.Text = "Došlo k problému se stavem souboru";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_05";
|
||||
this.labelMessage1.Text = "Серийный номер в файле не";
|
||||
this.labelMessage2.Text = "соответствует вашему текущему устройству";
|
||||
this.labelErrorCode.Text = "Chyba_05";
|
||||
this.labelMessage1.Text = "Sériové číslo v souboru neodpovídá";
|
||||
this.labelMessage2.Text = "vašemu aktuálnímu zařízení";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_06";
|
||||
this.labelMessage1.Text = "UID не соответствует";
|
||||
this.labelErrorCode.Text = "Chyba_06";
|
||||
this.labelMessage1.Text = "UID se neshoduje";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_07";
|
||||
this.labelMessage1.Text = "Тип ключа неверен";
|
||||
this.labelErrorCode.Text = "Chyba_07";
|
||||
this.labelMessage1.Text = "Typ klíče je nesprávný";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Ошибка" + screenNum.ToString() + "_99";
|
||||
this.labelMessage1.Text = "Свяжитесь с производителем";
|
||||
this.labelMessage2.Text = "";
|
||||
this.labelErrorCode.Text = "Chyba_99";
|
||||
this.labelMessage1.Text = "Kontaktujte prosím výrobce";
|
||||
break;
|
||||
}
|
||||
#endregion
|
||||
|
|
@ -2137,197 +2130,48 @@ namespace INT63DC_2C.DialogForms
|
|||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_01";
|
||||
this.labelErrorCode.Text = "Fehler_01";
|
||||
this.labelMessage1.Text = "Der Dateiname ist falsch";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_02";
|
||||
this.labelErrorCode.Text = "Fehler_02";
|
||||
this.labelMessage1.Text = "Die Seriennummer ist falsch";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_03";
|
||||
this.labelErrorCode.Text = "Fehler_03";
|
||||
this.labelMessage1.Text = "Datei nicht gefunden";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_04";
|
||||
this.labelErrorCode.Text = "Fehler_04";
|
||||
this.labelMessage1.Text = "Es liegt ein Problem mit dem Dateistatus vor";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_05";
|
||||
this.labelErrorCode.Text = "Fehler_05";
|
||||
this.labelMessage1.Text = "Die Seriennummer in der Datei stimmt";
|
||||
this.labelMessage2.Text = "nicht mit Ihrem aktuellen Gerät überein";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_06";
|
||||
this.labelErrorCode.Text = "Fehler_06";
|
||||
this.labelMessage1.Text = "UID stimmt nicht überein";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_07";
|
||||
this.labelErrorCode.Text = "Fehler_07";
|
||||
this.labelMessage1.Text = "Der Schlüsseltyp ist falsch";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Fehler" + screenNum.ToString() + "_99";
|
||||
this.labelErrorCode.Text = "Fehler_99";
|
||||
this.labelMessage1.Text = "Hersteller kontaktieren";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.Spanish)
|
||||
{
|
||||
this.buttonOK.Text = "DE ACUERDO";
|
||||
|
||||
#region 스페인어
|
||||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_01";
|
||||
this.labelMessage1.Text = "El nombre del archivo es incorrecto";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_02";
|
||||
this.labelMessage1.Text = "El número de serie es incorrecto";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_03";
|
||||
this.labelMessage1.Text = "Archivo no encontrado";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_04";
|
||||
this.labelMessage1.Text = "Hay un problema con el estado del archivo.";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_05";
|
||||
this.labelMessage1.Text = "El número de serie en el archivo";
|
||||
this.labelMessage2.Text = "no coincide con su dispositivo actual";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_06";
|
||||
this.labelMessage1.Text = "El UID no coincide";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_07";
|
||||
this.labelMessage1.Text = "El tipo de clave es incorrecto";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Error" + screenNum.ToString() + "_99";
|
||||
this.labelMessage1.Text = "Póngase en contacto con un fabricante";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.Turkish)
|
||||
{
|
||||
this.buttonOK.Text = "Tamam";
|
||||
|
||||
#region 터키어
|
||||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_01";
|
||||
this.labelMessage1.Text = "Dosya adı yanlış";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_02";
|
||||
this.labelMessage1.Text = "Seri numarası yanlış";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_03";
|
||||
this.labelMessage1.Text = "Dosya bulunamadı";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_04";
|
||||
this.labelMessage1.Text = "Dosya durumuyla ilgili bir sorun var";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_05";
|
||||
this.labelMessage1.Text = "Dosyadaki seri numarası geçerli";
|
||||
this.labelMessage2.Text = "cihazla eşleşmiyor";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_06";
|
||||
this.labelMessage1.Text = "UID eşleşmiyor";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_07";
|
||||
this.labelMessage1.Text = "Anahtar türü yanlış";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Hata" + screenNum.ToString() + "_99";
|
||||
this.labelMessage1.Text = "Lütfen bir üreticiyle iletişime geçin";
|
||||
break;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else if (language == DataStore.E_LanguageID.French)
|
||||
{
|
||||
this.buttonOK.Text = "Vérifier";
|
||||
|
||||
#region 프랑스어
|
||||
switch (errCode)
|
||||
{
|
||||
case 1:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_01";
|
||||
this.labelMessage1.Text = "Le nom du fichier est incorrect";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 2:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_02";
|
||||
this.labelMessage1.Text = "Le numéro de série est incorrect";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 3:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_03";
|
||||
this.labelMessage1.Text = "Fichier introuvable";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 4:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_04";
|
||||
this.labelMessage1.Text = "Il y a un problème avec le statut du fichier";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 5:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_05";
|
||||
this.labelMessage1.Text = "Le numéro de série dans le fichier ne correspond";
|
||||
this.labelMessage2.Text = "pas à l'appareil actuel";
|
||||
break;
|
||||
case 6:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_06";
|
||||
this.labelMessage1.Text = "L'UID ne correspond pas";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
case 7:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_07";
|
||||
this.labelMessage1.Text = "Le type de clé est incorrect";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
default:
|
||||
this.labelErrorCode.Text = "Erreur" + screenNum.ToString() + "_99";
|
||||
this.labelMessage1.Text = "Contacter le fabricant";
|
||||
this.labelMessage2.Text = "";
|
||||
break;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -34,9 +34,7 @@
|
|||
this.buttonBack = new SmartX.SmartButton();
|
||||
this.labelTitle = new SmartX.SmartLabel();
|
||||
this.labelTitleSavedFiles = new SmartX.SmartLabel();
|
||||
this.labelTitleBackupEnable = new SmartX.SmartLabel();
|
||||
this.labelFileCount = new SmartX.SmartLabel();
|
||||
this.buttonDataBackupEnable = new SmartX.SmartButton();
|
||||
this.labelBackupFileCount = new SmartX.SmartLabel();
|
||||
this.labelTitleFilesToBackup = new SmartX.SmartLabel();
|
||||
this.listBoxBackupList = new SmartX.SmartListBox();
|
||||
|
|
@ -46,8 +44,6 @@
|
|||
this.buttonScrollUp = new SmartX.SmartButton();
|
||||
this.buttonFileRemove = new SmartX.SmartButton();
|
||||
this.buttonFileAdd = new SmartX.SmartButton();
|
||||
this.buttonDeleteAfterBackup = new SmartX.SmartButton();
|
||||
this.labelTitleDeleteAfterBackup = new SmartX.SmartLabel();
|
||||
this.smartGroupBox1 = new SmartX.SmartGroupBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.smartForm1)).BeginInit();
|
||||
this.smartGroupBox1.SuspendLayout();
|
||||
|
|
@ -137,7 +133,7 @@
|
|||
this.labelTitle.BackPictureBox2 = null;
|
||||
this.labelTitle.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitle.Font = new System.Drawing.Font("새굴림", 35F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle.Font = new System.Drawing.Font("New Gulim", 35F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitle.InitVisible = true;
|
||||
this.labelTitle.LineSpacing = 0F;
|
||||
this.labelTitle.Location = new System.Drawing.Point(199, 7);
|
||||
|
|
@ -156,7 +152,7 @@
|
|||
this.labelTitleSavedFiles.BackPictureBox2 = null;
|
||||
this.labelTitleSavedFiles.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSavedFiles.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSavedFiles.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSavedFiles.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSavedFiles.InitVisible = true;
|
||||
this.labelTitleSavedFiles.LineSpacing = 0F;
|
||||
this.labelTitleSavedFiles.Location = new System.Drawing.Point(19, 14);
|
||||
|
|
@ -168,25 +164,6 @@
|
|||
this.labelTitleSavedFiles.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleSavedFiles.Wordwrap = false;
|
||||
//
|
||||
// labelTitleBackupEnable
|
||||
//
|
||||
this.labelTitleBackupEnable.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleBackupEnable.BackPictureBox1 = null;
|
||||
this.labelTitleBackupEnable.BackPictureBox2 = null;
|
||||
this.labelTitleBackupEnable.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleBackupEnable.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleBackupEnable.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleBackupEnable.InitVisible = true;
|
||||
this.labelTitleBackupEnable.LineSpacing = 0F;
|
||||
this.labelTitleBackupEnable.Location = new System.Drawing.Point(78, 140);
|
||||
this.labelTitleBackupEnable.Name = "labelTitleBackupEnable";
|
||||
this.labelTitleBackupEnable.Size = new System.Drawing.Size(300, 30);
|
||||
this.labelTitleBackupEnable.TabIndex = 21;
|
||||
this.labelTitleBackupEnable.Text = "데이터 백업";
|
||||
this.labelTitleBackupEnable.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleBackupEnable.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleBackupEnable.Wordwrap = false;
|
||||
//
|
||||
// labelFileCount
|
||||
//
|
||||
this.labelFileCount.BackPictureBox = this.smartForm1;
|
||||
|
|
@ -206,37 +183,6 @@
|
|||
this.labelFileCount.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelFileCount.Wordwrap = false;
|
||||
//
|
||||
// buttonDataBackupEnable
|
||||
//
|
||||
this.buttonDataBackupEnable.BackPictureBox = null;
|
||||
this.buttonDataBackupEnable.BackPictureBox1 = null;
|
||||
this.buttonDataBackupEnable.BackPictureBox2 = null;
|
||||
this.buttonDataBackupEnable.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.buttonDataBackupEnable.ButtonImageAutoSize = true;
|
||||
this.buttonDataBackupEnable.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonDataBackupEnable.DisableImage = null;
|
||||
this.buttonDataBackupEnable.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonDataBackupEnable.DownImage")));
|
||||
this.buttonDataBackupEnable.GroupID = 0;
|
||||
this.buttonDataBackupEnable.InitVisible = true;
|
||||
this.buttonDataBackupEnable.Location = new System.Drawing.Point(384, 140);
|
||||
this.buttonDataBackupEnable.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonDataBackupEnable.Name = "buttonDataBackupEnable";
|
||||
this.buttonDataBackupEnable.NestedClickEventPrevent = false;
|
||||
this.buttonDataBackupEnable.OutlinePixel = 1;
|
||||
this.buttonDataBackupEnable.RepeatInterval = 200;
|
||||
this.buttonDataBackupEnable.RepeatIntervalAccelerate = null;
|
||||
this.buttonDataBackupEnable.SafeInterval = 200;
|
||||
this.buttonDataBackupEnable.Size = new System.Drawing.Size(100, 30);
|
||||
this.buttonDataBackupEnable.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonDataBackupEnable.TabIndex = 55;
|
||||
this.buttonDataBackupEnable.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonDataBackupEnable.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonDataBackupEnable.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonDataBackupEnable.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonDataBackupEnable.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonDataBackupEnable.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonDataBackupEnable.UpImage")));
|
||||
this.buttonDataBackupEnable.Click += new System.EventHandler(this.buttonDataBackupEnable_Click);
|
||||
//
|
||||
// labelBackupFileCount
|
||||
//
|
||||
this.labelBackupFileCount.BackPictureBox = this.smartForm1;
|
||||
|
|
@ -263,7 +209,7 @@
|
|||
this.labelTitleFilesToBackup.BackPictureBox2 = null;
|
||||
this.labelTitleFilesToBackup.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleFilesToBackup.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleFilesToBackup.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleFilesToBackup.Font = new System.Drawing.Font("New Gulim", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleFilesToBackup.InitVisible = true;
|
||||
this.labelTitleFilesToBackup.LineSpacing = 0F;
|
||||
this.labelTitleFilesToBackup.Location = new System.Drawing.Point(543, 14);
|
||||
|
|
@ -284,7 +230,7 @@
|
|||
this.listBoxBackupList.ColumnAlign = SmartX.SmartListBox.COLUMNALIGNS.CENTER;
|
||||
this.listBoxBackupList.ColumnDelimiter = '\0';
|
||||
this.listBoxBackupList.ColumnOffsets = null;
|
||||
this.listBoxBackupList.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxBackupList.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxBackupList.FontColor = System.Drawing.Color.Black;
|
||||
this.listBoxBackupList.InitVisible = true;
|
||||
this.listBoxBackupList.ItemAddOrder = SmartX.SmartListBox.ITEMADDORDERS.BOTTOMADD;
|
||||
|
|
@ -305,7 +251,7 @@
|
|||
this.listBoxBackupList.SeparationLineStyle = SmartX.SmartListBox.SEPARATIONLINETYPES.None;
|
||||
this.listBoxBackupList.SeparationlineVisibleBottom = true;
|
||||
this.listBoxBackupList.SeparationlineVisibleTop = true;
|
||||
this.listBoxBackupList.Size = new System.Drawing.Size(286, 352);
|
||||
this.listBoxBackupList.Size = new System.Drawing.Size(286, 464);
|
||||
this.listBoxBackupList.TabIndex = 60;
|
||||
this.listBoxBackupList.Text = "smartListBox1";
|
||||
//
|
||||
|
|
@ -318,7 +264,7 @@
|
|||
this.listBoxDataListCHK.ColumnAlign = SmartX.SmartListBox.COLUMNALIGNS.CENTER;
|
||||
this.listBoxDataListCHK.ColumnDelimiter = '\0';
|
||||
this.listBoxDataListCHK.ColumnOffsets = null;
|
||||
this.listBoxDataListCHK.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxDataListCHK.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxDataListCHK.FontColor = System.Drawing.Color.Black;
|
||||
this.listBoxDataListCHK.InitVisible = true;
|
||||
this.listBoxDataListCHK.ItemAddOrder = SmartX.SmartListBox.ITEMADDORDERS.BOTTOMADD;
|
||||
|
|
@ -339,7 +285,7 @@
|
|||
this.listBoxDataListCHK.SeparationLineStyle = SmartX.SmartListBox.SEPARATIONLINETYPES.None;
|
||||
this.listBoxDataListCHK.SeparationlineVisibleBottom = true;
|
||||
this.listBoxDataListCHK.SeparationlineVisibleTop = true;
|
||||
this.listBoxDataListCHK.Size = new System.Drawing.Size(39, 352);
|
||||
this.listBoxDataListCHK.Size = new System.Drawing.Size(39, 464);
|
||||
this.listBoxDataListCHK.TabIndex = 59;
|
||||
this.listBoxDataListCHK.Text = "smartListBox2";
|
||||
this.listBoxDataListCHK.SelectedIndexChanged += new System.EventHandler(this.listBoxDataListCHK_SelectedIndexChanged);
|
||||
|
|
@ -353,7 +299,7 @@
|
|||
this.listBoxDataList.ColumnAlign = SmartX.SmartListBox.COLUMNALIGNS.CENTER;
|
||||
this.listBoxDataList.ColumnDelimiter = '\0';
|
||||
this.listBoxDataList.ColumnOffsets = null;
|
||||
this.listBoxDataList.Font = new System.Drawing.Font("새굴림", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxDataList.Font = new System.Drawing.Font("New Gulim", 12F, System.Drawing.FontStyle.Regular);
|
||||
this.listBoxDataList.FontColor = System.Drawing.Color.Black;
|
||||
this.listBoxDataList.InitVisible = true;
|
||||
this.listBoxDataList.ItemAddOrder = SmartX.SmartListBox.ITEMADDORDERS.BOTTOMADD;
|
||||
|
|
@ -374,7 +320,7 @@
|
|||
this.listBoxDataList.SeparationLineStyle = SmartX.SmartListBox.SEPARATIONLINETYPES.None;
|
||||
this.listBoxDataList.SeparationlineVisibleBottom = true;
|
||||
this.listBoxDataList.SeparationlineVisibleTop = true;
|
||||
this.listBoxDataList.Size = new System.Drawing.Size(247, 352);
|
||||
this.listBoxDataList.Size = new System.Drawing.Size(247, 464);
|
||||
this.listBoxDataList.TabIndex = 58;
|
||||
this.listBoxDataList.Text = "smartListBox1";
|
||||
this.listBoxDataList.SelectedIndexChanged += new System.EventHandler(this.listBoxDataList_SelectedIndexChanged);
|
||||
|
|
@ -392,7 +338,7 @@
|
|||
this.buttonScrollDown.Font = new System.Drawing.Font("Arial", 15F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonScrollDown.GroupID = 0;
|
||||
this.buttonScrollDown.InitVisible = true;
|
||||
this.buttonScrollDown.Location = new System.Drawing.Point(311, 237);
|
||||
this.buttonScrollDown.Location = new System.Drawing.Point(311, 349);
|
||||
this.buttonScrollDown.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonScrollDown.Name = "buttonScrollDown";
|
||||
this.buttonScrollDown.NestedClickEventPrevent = false;
|
||||
|
|
@ -458,7 +404,7 @@
|
|||
this.buttonFileRemove.Font = new System.Drawing.Font("Arial", 15F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonFileRemove.GroupID = 0;
|
||||
this.buttonFileRemove.InitVisible = true;
|
||||
this.buttonFileRemove.Location = new System.Drawing.Point(412, 227);
|
||||
this.buttonFileRemove.Location = new System.Drawing.Point(412, 290);
|
||||
this.buttonFileRemove.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonFileRemove.Name = "buttonFileRemove";
|
||||
this.buttonFileRemove.NestedClickEventPrevent = false;
|
||||
|
|
@ -491,7 +437,7 @@
|
|||
this.buttonFileAdd.Font = new System.Drawing.Font("Arial", 15F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonFileAdd.GroupID = 0;
|
||||
this.buttonFileAdd.InitVisible = true;
|
||||
this.buttonFileAdd.Location = new System.Drawing.Point(412, 141);
|
||||
this.buttonFileAdd.Location = new System.Drawing.Point(412, 204);
|
||||
this.buttonFileAdd.Mode = SmartX.SmartButton.BUTTONMODE.NORMAL;
|
||||
this.buttonFileAdd.Name = "buttonFileAdd";
|
||||
this.buttonFileAdd.NestedClickEventPrevent = false;
|
||||
|
|
@ -511,56 +457,6 @@
|
|||
this.buttonFileAdd.UpImage = null;
|
||||
this.buttonFileAdd.Click += new System.EventHandler(this.buttonFileAdd_Click);
|
||||
//
|
||||
// buttonDeleteAfterBackup
|
||||
//
|
||||
this.buttonDeleteAfterBackup.BackPictureBox = null;
|
||||
this.buttonDeleteAfterBackup.BackPictureBox1 = null;
|
||||
this.buttonDeleteAfterBackup.BackPictureBox2 = null;
|
||||
this.buttonDeleteAfterBackup.ButtonColor = System.Drawing.Color.Gray;
|
||||
this.buttonDeleteAfterBackup.ButtonImageAutoSize = true;
|
||||
this.buttonDeleteAfterBackup.ColorKeySamplePosition = new System.Drawing.Point(0, 0);
|
||||
this.buttonDeleteAfterBackup.DisableImage = null;
|
||||
this.buttonDeleteAfterBackup.DownImage = ((System.Drawing.Image)(resources.GetObject("buttonDeleteAfterBackup.DownImage")));
|
||||
this.buttonDeleteAfterBackup.GroupID = 0;
|
||||
this.buttonDeleteAfterBackup.InitVisible = true;
|
||||
this.buttonDeleteAfterBackup.Location = new System.Drawing.Point(831, 140);
|
||||
this.buttonDeleteAfterBackup.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonDeleteAfterBackup.Name = "buttonDeleteAfterBackup";
|
||||
this.buttonDeleteAfterBackup.NestedClickEventPrevent = false;
|
||||
this.buttonDeleteAfterBackup.OutlinePixel = 1;
|
||||
this.buttonDeleteAfterBackup.RepeatInterval = 200;
|
||||
this.buttonDeleteAfterBackup.RepeatIntervalAccelerate = null;
|
||||
this.buttonDeleteAfterBackup.SafeInterval = 200;
|
||||
this.buttonDeleteAfterBackup.Size = new System.Drawing.Size(100, 30);
|
||||
this.buttonDeleteAfterBackup.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonDeleteAfterBackup.TabIndex = 68;
|
||||
this.buttonDeleteAfterBackup.TextColor = System.Drawing.Color.Black;
|
||||
this.buttonDeleteAfterBackup.TextDownColor = System.Drawing.Color.White;
|
||||
this.buttonDeleteAfterBackup.TextHAlign = SmartX.SmartButton.TextHorAlign.Middle;
|
||||
this.buttonDeleteAfterBackup.TextLocation = new System.Drawing.Point(0, 0);
|
||||
this.buttonDeleteAfterBackup.TextVAlign = SmartX.SmartButton.TextVerAlign.Middle;
|
||||
this.buttonDeleteAfterBackup.UpImage = ((System.Drawing.Image)(resources.GetObject("buttonDeleteAfterBackup.UpImage")));
|
||||
this.buttonDeleteAfterBackup.Click += new System.EventHandler(this.buttonDeleteAfterBackup_Click);
|
||||
//
|
||||
// labelTitleDeleteAfterBackup
|
||||
//
|
||||
this.labelTitleDeleteAfterBackup.BackPictureBox = this.smartForm1;
|
||||
this.labelTitleDeleteAfterBackup.BackPictureBox1 = null;
|
||||
this.labelTitleDeleteAfterBackup.BackPictureBox2 = null;
|
||||
this.labelTitleDeleteAfterBackup.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleDeleteAfterBackup.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleDeleteAfterBackup.Font = new System.Drawing.Font("새굴림", 14F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleDeleteAfterBackup.InitVisible = true;
|
||||
this.labelTitleDeleteAfterBackup.LineSpacing = 0F;
|
||||
this.labelTitleDeleteAfterBackup.Location = new System.Drawing.Point(525, 140);
|
||||
this.labelTitleDeleteAfterBackup.Name = "labelTitleDeleteAfterBackup";
|
||||
this.labelTitleDeleteAfterBackup.Size = new System.Drawing.Size(300, 30);
|
||||
this.labelTitleDeleteAfterBackup.TabIndex = 69;
|
||||
this.labelTitleDeleteAfterBackup.Text = "백업 후 삭제";
|
||||
this.labelTitleDeleteAfterBackup.TextHAlign = SmartX.SmartLabel.TextHorAlign.Middle;
|
||||
this.labelTitleDeleteAfterBackup.TextVAlign = SmartX.SmartLabel.TextVerAlign.Middle;
|
||||
this.labelTitleDeleteAfterBackup.Wordwrap = false;
|
||||
//
|
||||
// smartGroupBox1
|
||||
//
|
||||
this.smartGroupBox1.BackPictureBox = this.smartForm1;
|
||||
|
|
@ -582,10 +478,10 @@
|
|||
this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.None;
|
||||
this.smartGroupBox1.Image = null;
|
||||
this.smartGroupBox1.InitVisible = true;
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(86, 213);
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(86, 114);
|
||||
this.smartGroupBox1.Name = "smartGroupBox1";
|
||||
this.smartGroupBox1.RoundRadius = 10;
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(855, 437);
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(855, 536);
|
||||
this.smartGroupBox1.TabIndex = 71;
|
||||
this.smartGroupBox1.Text = "smartGroupBox1";
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
|
|
@ -597,10 +493,6 @@
|
|||
this.AutoScroll = true;
|
||||
this.ClientSize = new System.Drawing.Size(1024, 768);
|
||||
this.Controls.Add(this.smartGroupBox1);
|
||||
this.Controls.Add(this.labelTitleDeleteAfterBackup);
|
||||
this.Controls.Add(this.buttonDeleteAfterBackup);
|
||||
this.Controls.Add(this.buttonDataBackupEnable);
|
||||
this.Controls.Add(this.labelTitleBackupEnable);
|
||||
this.Controls.Add(this.labelTitle);
|
||||
this.Controls.Add(this.buttonBackup);
|
||||
this.Controls.Add(this.buttonBack);
|
||||
|
|
@ -620,9 +512,7 @@
|
|||
private SmartX.SmartButton buttonBack;
|
||||
private SmartX.SmartLabel labelTitle;
|
||||
private SmartX.SmartLabel labelTitleSavedFiles;
|
||||
private SmartX.SmartLabel labelTitleBackupEnable;
|
||||
private SmartX.SmartLabel labelFileCount;
|
||||
private SmartX.SmartButton buttonDataBackupEnable;
|
||||
private SmartX.SmartLabel labelBackupFileCount;
|
||||
private SmartX.SmartLabel labelTitleFilesToBackup;
|
||||
private SmartX.SmartListBox listBoxBackupList;
|
||||
|
|
@ -632,8 +522,6 @@
|
|||
private SmartX.SmartButton buttonScrollUp;
|
||||
private SmartX.SmartButton buttonFileRemove;
|
||||
private SmartX.SmartButton buttonFileAdd;
|
||||
private SmartX.SmartButton buttonDeleteAfterBackup;
|
||||
private SmartX.SmartLabel labelTitleDeleteAfterBackup;
|
||||
private SmartX.SmartGroupBox smartGroupBox1;
|
||||
}
|
||||
}
|
||||
|
|
@ -52,10 +52,8 @@ namespace INT63DC_2C.Forms
|
|||
#region English
|
||||
this.labelTitle.Text = "Data backup";
|
||||
|
||||
this.labelTitleBackupEnable.Text = "Enable backup";
|
||||
this.labelTitleDeleteAfterBackup.Text = "Delete after backup";
|
||||
this.labelTitleSavedFiles.Text = "Saved files";
|
||||
this.labelTitleFilesToBackup.Text = "Files to Back Up";
|
||||
this.labelTitleSavedFiles.Text = "Stored File";
|
||||
this.labelTitleFilesToBackup.Text = "Backup File";
|
||||
|
||||
this.buttonBackup.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackupDisable));
|
||||
this.buttonBackup.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackupDown));
|
||||
|
|
@ -70,10 +68,8 @@ namespace INT63DC_2C.Forms
|
|||
#region Chinese
|
||||
this.labelTitle.Text = "数据备份";
|
||||
|
||||
this.labelTitleBackupEnable.Text = "启用备份";
|
||||
this.labelTitleDeleteAfterBackup.Text = "备份后删除";
|
||||
this.labelTitleSavedFiles.Text = "已保存文件";
|
||||
this.labelTitleFilesToBackup.Text = "待备份文件";
|
||||
this.labelTitleFilesToBackup.Text = "备份文件";
|
||||
|
||||
this.buttonBackup.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackupDisable));
|
||||
this.buttonBackup.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.chnBackupDown));
|
||||
|
|
@ -88,10 +84,8 @@ namespace INT63DC_2C.Forms
|
|||
#region Czech
|
||||
this.labelTitle.Text = "Záloha dat";
|
||||
|
||||
this.labelTitleBackupEnable.Text = "Povolit zálohování";
|
||||
this.labelTitleDeleteAfterBackup.Text = "Odstranit po zálohování";
|
||||
this.labelTitleSavedFiles.Text = "Soubor";
|
||||
this.labelTitleFilesToBackup.Text = "Soubory k zálohování";
|
||||
this.labelTitleSavedFiles.Text = "Uložený soubor";
|
||||
this.labelTitleFilesToBackup.Text = "Záložní soubor";
|
||||
|
||||
this.buttonBackup.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackupDisable));
|
||||
this.buttonBackup.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.czeBackupDown));
|
||||
|
|
@ -106,10 +100,8 @@ namespace INT63DC_2C.Forms
|
|||
#region German
|
||||
this.labelTitle.Text = "Datensicherung";
|
||||
|
||||
this.labelTitleBackupEnable.Text = "Sicherung aktivieren";
|
||||
this.labelTitleDeleteAfterBackup.Text = "Nach der Sicherung löschen";
|
||||
this.labelTitleSavedFiles.Text = "Datei";
|
||||
this.labelTitleFilesToBackup.Text = "Zu sichernde Dateien";
|
||||
this.labelTitleSavedFiles.Text = "Gespeicherte Datei";
|
||||
this.labelTitleFilesToBackup.Text = "Sicherungsdatei";
|
||||
|
||||
this.buttonBackup.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackupDisable));
|
||||
this.buttonBackup.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.gerBackupDown));
|
||||
|
|
@ -124,10 +116,8 @@ namespace INT63DC_2C.Forms
|
|||
#region Japanese
|
||||
this.labelTitle.Text = "デㅡタバックアップ";
|
||||
|
||||
this.labelTitleBackupEnable.Text = "バックアップを有効にする";
|
||||
this.labelTitleDeleteAfterBackup.Text = "バックアップ後に削除";
|
||||
this.labelTitleSavedFiles.Text = "ファイル";
|
||||
this.labelTitleFilesToBackup.Text = "バックアップ待ち";
|
||||
this.labelTitleSavedFiles.Text = "保存済みファイル";
|
||||
this.labelTitleFilesToBackup.Text = "バックアップファイル";
|
||||
|
||||
this.buttonBackup.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackupDisable));
|
||||
this.buttonBackup.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackupDown));
|
||||
|
|
@ -179,17 +169,7 @@ namespace INT63DC_2C.Forms
|
|||
public void DisplayRefresh()
|
||||
{
|
||||
this.ParentForm.SystemConfig.CurrentForm = DataStore.FormStore.FormDataBackup;
|
||||
|
||||
// DataBackup Enable
|
||||
if (this.ParentForm.SystemConfig.IsDataBackup == true)
|
||||
this.buttonDataBackupEnable.ButtonDown();
|
||||
else
|
||||
this.buttonDataBackupEnable.ButtonUp();
|
||||
// Delete After Backup
|
||||
if (this.ParentForm.SystemConfig.IsDeleteAfterBackup == true)
|
||||
this.buttonDeleteAfterBackup.ButtonDown();
|
||||
else
|
||||
this.buttonDeleteAfterBackup.ButtonUp();
|
||||
|
||||
// Update File List
|
||||
this.UpdateFileList();
|
||||
}
|
||||
|
|
@ -253,9 +233,6 @@ namespace INT63DC_2C.Forms
|
|||
srcFilePath = string.Format("{0}{1}", this.ParentForm.PathDataBackupFolder, this.SelectedFiles.Files[i].Name);
|
||||
dstFilePath2 = string.Format("{0}{1}", dstFilePath1, this.SelectedFiles.Files[i].Name);
|
||||
File.Copy(srcFilePath, dstFilePath2, true);
|
||||
|
||||
if (this.ParentForm.SystemConfig.IsDeleteAfterBackup == true)
|
||||
File.Delete(srcFilePath);
|
||||
}
|
||||
|
||||
this.UpdateFileList();
|
||||
|
|
@ -330,25 +307,6 @@ namespace INT63DC_2C.Forms
|
|||
this.listBoxDataList.ScrollDown(100);
|
||||
this.listBoxDataListCHK.ScrollDown(100);
|
||||
}
|
||||
private void buttonDataBackupEnable_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.buttonDataBackupEnable.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
this.ParentForm.SystemConfig.IsDataBackup = true;
|
||||
else
|
||||
this.ParentForm.SystemConfig.IsDataBackup = false;
|
||||
|
||||
this.ParentForm.SaveSystemConfigurationFile1(this.ParentForm.SystemConfig);
|
||||
}
|
||||
|
||||
private void buttonDeleteAfterBackup_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (this.buttonDeleteAfterBackup.ButtonStatus == SmartButton.BUTSTATUS.DOWN)
|
||||
this.ParentForm.SystemConfig.IsDeleteAfterBackup = true;
|
||||
else
|
||||
this.ParentForm.SystemConfig.IsDeleteAfterBackup = false;
|
||||
|
||||
this.ParentForm.SaveSystemConfigurationFile1(this.ParentForm.SystemConfig);
|
||||
}
|
||||
|
||||
private void listBoxDataList_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -125,13 +125,13 @@ namespace INT63DC_2C.Forms
|
|||
|
||||
this.ParentForm.smartFileIO.Open(this.ParentForm.BufferSmartUart);
|
||||
|
||||
structItem1.IsDataBackup = this.ParentForm.SystemConfig.IsDataBackup;
|
||||
structItem1.DummyBool8 = false;
|
||||
structItem1.IsEachNG = this.ParentForm.SystemConfig.IsEachNG;
|
||||
structItem1.IsLogin = this.ParentForm.SystemConfig.IsLogin;
|
||||
structItem1.IsWeightViewForward = this.ParentForm.SystemConfig.IsWeightViewForward;
|
||||
structItem1.IsOptDataStatistics = this.ParentForm.SystemConfig.IsOptDataStatistics;
|
||||
structItem1.IsSorterCheckEnable = false;
|
||||
structItem1.IsDeleteAfterBackup = false;
|
||||
structItem1.DummyBool6 = false;
|
||||
structItem1.DummyBool7 = false;
|
||||
|
||||
structItem1.DecimalPlaces = this.ParentForm.SystemConfig.DecimalPlaces;
|
||||
|
|
@ -152,7 +152,7 @@ namespace INT63DC_2C.Forms
|
|||
structItem1.DummyBool2 = false;
|
||||
structItem1.DummyBool3 = false;
|
||||
structItem1.DummyBool4 = false;
|
||||
structItem1.DummyBool8 = false;
|
||||
structItem1.DummyBool5 = false;
|
||||
structItem1.Sorter1Location = this.ParentForm.SystemConfig.Sorter1Location;
|
||||
structItem1.Sorter2Location = this.ParentForm.SystemConfig.Sorter2Location;
|
||||
structItem1.EXT1_DelayTime = this.ParentForm.SystemConfig.EXT1_DelayTime;
|
||||
|
|
|
|||
|
|
@ -240,10 +240,10 @@
|
|||
this.smartGroupBox1.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.smartGroupBox1.Image = null;
|
||||
this.smartGroupBox1.InitVisible = true;
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(20, 79);
|
||||
this.smartGroupBox1.Location = new System.Drawing.Point(0, 79);
|
||||
this.smartGroupBox1.Name = "smartGroupBox1";
|
||||
this.smartGroupBox1.RoundRadius = 5;
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(612, 581);
|
||||
this.smartGroupBox1.Size = new System.Drawing.Size(645, 581);
|
||||
this.smartGroupBox1.TabIndex = 243;
|
||||
this.smartGroupBox1.Text = "OUTPUT";
|
||||
this.smartGroupBox1.TextColor = System.Drawing.Color.Black;
|
||||
|
|
@ -261,7 +261,7 @@
|
|||
this.buttonOutput40.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput40.GroupID = 0;
|
||||
this.buttonOutput40.InitVisible = true;
|
||||
this.buttonOutput40.Location = new System.Drawing.Point(484, 468);
|
||||
this.buttonOutput40.Location = new System.Drawing.Point(514, 468);
|
||||
this.buttonOutput40.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput40.Name = "buttonOutput40";
|
||||
this.buttonOutput40.NestedClickEventPrevent = false;
|
||||
|
|
@ -269,7 +269,7 @@
|
|||
this.buttonOutput40.RepeatInterval = 200;
|
||||
this.buttonOutput40.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput40.SafeInterval = 200;
|
||||
this.buttonOutput40.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput40.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput40.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput40.TabIndex = 209;
|
||||
this.buttonOutput40.Tag = "7740";
|
||||
|
|
@ -295,7 +295,7 @@
|
|||
this.buttonOutput36.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput36.GroupID = 0;
|
||||
this.buttonOutput36.InitVisible = true;
|
||||
this.buttonOutput36.Location = new System.Drawing.Point(484, 244);
|
||||
this.buttonOutput36.Location = new System.Drawing.Point(514, 244);
|
||||
this.buttonOutput36.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput36.Name = "buttonOutput36";
|
||||
this.buttonOutput36.NestedClickEventPrevent = false;
|
||||
|
|
@ -303,7 +303,7 @@
|
|||
this.buttonOutput36.RepeatInterval = 200;
|
||||
this.buttonOutput36.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput36.SafeInterval = 200;
|
||||
this.buttonOutput36.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput36.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput36.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput36.TabIndex = 212;
|
||||
this.buttonOutput36.Tag = "7736";
|
||||
|
|
@ -329,7 +329,7 @@
|
|||
this.buttonOutput39.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput39.GroupID = 0;
|
||||
this.buttonOutput39.InitVisible = true;
|
||||
this.buttonOutput39.Location = new System.Drawing.Point(484, 412);
|
||||
this.buttonOutput39.Location = new System.Drawing.Point(514, 412);
|
||||
this.buttonOutput39.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput39.Name = "buttonOutput39";
|
||||
this.buttonOutput39.NestedClickEventPrevent = false;
|
||||
|
|
@ -337,7 +337,7 @@
|
|||
this.buttonOutput39.RepeatInterval = 200;
|
||||
this.buttonOutput39.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput39.SafeInterval = 200;
|
||||
this.buttonOutput39.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput39.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput39.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput39.TabIndex = 210;
|
||||
this.buttonOutput39.Tag = "7739";
|
||||
|
|
@ -363,7 +363,7 @@
|
|||
this.buttonOutput35.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput35.GroupID = 0;
|
||||
this.buttonOutput35.InitVisible = true;
|
||||
this.buttonOutput35.Location = new System.Drawing.Point(484, 188);
|
||||
this.buttonOutput35.Location = new System.Drawing.Point(514, 188);
|
||||
this.buttonOutput35.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput35.Name = "buttonOutput35";
|
||||
this.buttonOutput35.NestedClickEventPrevent = false;
|
||||
|
|
@ -371,7 +371,7 @@
|
|||
this.buttonOutput35.RepeatInterval = 200;
|
||||
this.buttonOutput35.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput35.SafeInterval = 200;
|
||||
this.buttonOutput35.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput35.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput35.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput35.TabIndex = 213;
|
||||
this.buttonOutput35.Tag = "7735";
|
||||
|
|
@ -397,7 +397,7 @@
|
|||
this.buttonOutput38.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput38.GroupID = 0;
|
||||
this.buttonOutput38.InitVisible = true;
|
||||
this.buttonOutput38.Location = new System.Drawing.Point(484, 356);
|
||||
this.buttonOutput38.Location = new System.Drawing.Point(514, 356);
|
||||
this.buttonOutput38.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput38.Name = "buttonOutput38";
|
||||
this.buttonOutput38.NestedClickEventPrevent = false;
|
||||
|
|
@ -405,7 +405,7 @@
|
|||
this.buttonOutput38.RepeatInterval = 200;
|
||||
this.buttonOutput38.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput38.SafeInterval = 200;
|
||||
this.buttonOutput38.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput38.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput38.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput38.TabIndex = 208;
|
||||
this.buttonOutput38.Tag = "7738";
|
||||
|
|
@ -431,7 +431,7 @@
|
|||
this.buttonOutput34.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput34.GroupID = 0;
|
||||
this.buttonOutput34.InitVisible = true;
|
||||
this.buttonOutput34.Location = new System.Drawing.Point(484, 132);
|
||||
this.buttonOutput34.Location = new System.Drawing.Point(514, 132);
|
||||
this.buttonOutput34.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput34.Name = "buttonOutput34";
|
||||
this.buttonOutput34.NestedClickEventPrevent = false;
|
||||
|
|
@ -439,7 +439,7 @@
|
|||
this.buttonOutput34.RepeatInterval = 200;
|
||||
this.buttonOutput34.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput34.SafeInterval = 200;
|
||||
this.buttonOutput34.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput34.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput34.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput34.TabIndex = 211;
|
||||
this.buttonOutput34.Tag = "7734";
|
||||
|
|
@ -465,7 +465,7 @@
|
|||
this.buttonOutput37.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput37.GroupID = 0;
|
||||
this.buttonOutput37.InitVisible = true;
|
||||
this.buttonOutput37.Location = new System.Drawing.Point(484, 300);
|
||||
this.buttonOutput37.Location = new System.Drawing.Point(514, 300);
|
||||
this.buttonOutput37.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput37.Name = "buttonOutput37";
|
||||
this.buttonOutput37.NestedClickEventPrevent = false;
|
||||
|
|
@ -473,7 +473,7 @@
|
|||
this.buttonOutput37.RepeatInterval = 200;
|
||||
this.buttonOutput37.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput37.SafeInterval = 200;
|
||||
this.buttonOutput37.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput37.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput37.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput37.TabIndex = 207;
|
||||
this.buttonOutput37.Tag = "7737";
|
||||
|
|
@ -499,7 +499,7 @@
|
|||
this.buttonOutput33.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput33.GroupID = 0;
|
||||
this.buttonOutput33.InitVisible = true;
|
||||
this.buttonOutput33.Location = new System.Drawing.Point(484, 76);
|
||||
this.buttonOutput33.Location = new System.Drawing.Point(514, 76);
|
||||
this.buttonOutput33.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput33.Name = "buttonOutput33";
|
||||
this.buttonOutput33.NestedClickEventPrevent = false;
|
||||
|
|
@ -507,7 +507,7 @@
|
|||
this.buttonOutput33.RepeatInterval = 200;
|
||||
this.buttonOutput33.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput33.SafeInterval = 200;
|
||||
this.buttonOutput33.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput33.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput33.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput33.TabIndex = 214;
|
||||
this.buttonOutput33.Tag = "7733";
|
||||
|
|
@ -533,7 +533,7 @@
|
|||
this.buttonOutput32.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput32.GroupID = 0;
|
||||
this.buttonOutput32.InitVisible = true;
|
||||
this.buttonOutput32.Location = new System.Drawing.Point(377, 468);
|
||||
this.buttonOutput32.Location = new System.Drawing.Point(397, 468);
|
||||
this.buttonOutput32.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput32.Name = "buttonOutput32";
|
||||
this.buttonOutput32.NestedClickEventPrevent = false;
|
||||
|
|
@ -541,7 +541,7 @@
|
|||
this.buttonOutput32.RepeatInterval = 200;
|
||||
this.buttonOutput32.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput32.SafeInterval = 200;
|
||||
this.buttonOutput32.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput32.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput32.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput32.TabIndex = 197;
|
||||
this.buttonOutput32.Tag = "7732";
|
||||
|
|
@ -567,7 +567,7 @@
|
|||
this.buttonOutput17.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput17.GroupID = 0;
|
||||
this.buttonOutput17.InitVisible = true;
|
||||
this.buttonOutput17.Location = new System.Drawing.Point(272, 76);
|
||||
this.buttonOutput17.Location = new System.Drawing.Point(282, 76);
|
||||
this.buttonOutput17.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput17.Name = "buttonOutput17";
|
||||
this.buttonOutput17.NestedClickEventPrevent = false;
|
||||
|
|
@ -575,7 +575,7 @@
|
|||
this.buttonOutput17.RepeatInterval = 200;
|
||||
this.buttonOutput17.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput17.SafeInterval = 200;
|
||||
this.buttonOutput17.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput17.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput17.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput17.TabIndex = 199;
|
||||
this.buttonOutput17.Tag = "7717";
|
||||
|
|
@ -601,7 +601,7 @@
|
|||
this.buttonOutput24.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput24.GroupID = 0;
|
||||
this.buttonOutput24.InitVisible = true;
|
||||
this.buttonOutput24.Location = new System.Drawing.Point(272, 468);
|
||||
this.buttonOutput24.Location = new System.Drawing.Point(282, 468);
|
||||
this.buttonOutput24.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput24.Name = "buttonOutput24";
|
||||
this.buttonOutput24.NestedClickEventPrevent = false;
|
||||
|
|
@ -609,7 +609,7 @@
|
|||
this.buttonOutput24.RepeatInterval = 200;
|
||||
this.buttonOutput24.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput24.SafeInterval = 200;
|
||||
this.buttonOutput24.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput24.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput24.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput24.TabIndex = 196;
|
||||
this.buttonOutput24.Tag = "7724";
|
||||
|
|
@ -635,7 +635,7 @@
|
|||
this.buttonOutput28.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput28.GroupID = 0;
|
||||
this.buttonOutput28.InitVisible = true;
|
||||
this.buttonOutput28.Location = new System.Drawing.Point(378, 244);
|
||||
this.buttonOutput28.Location = new System.Drawing.Point(398, 244);
|
||||
this.buttonOutput28.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput28.Name = "buttonOutput28";
|
||||
this.buttonOutput28.NestedClickEventPrevent = false;
|
||||
|
|
@ -643,7 +643,7 @@
|
|||
this.buttonOutput28.RepeatInterval = 200;
|
||||
this.buttonOutput28.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput28.SafeInterval = 200;
|
||||
this.buttonOutput28.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput28.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput28.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput28.TabIndex = 202;
|
||||
this.buttonOutput28.Tag = "7728";
|
||||
|
|
@ -669,7 +669,7 @@
|
|||
this.buttonOutput31.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput31.GroupID = 0;
|
||||
this.buttonOutput31.InitVisible = true;
|
||||
this.buttonOutput31.Location = new System.Drawing.Point(378, 412);
|
||||
this.buttonOutput31.Location = new System.Drawing.Point(398, 412);
|
||||
this.buttonOutput31.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput31.Name = "buttonOutput31";
|
||||
this.buttonOutput31.NestedClickEventPrevent = false;
|
||||
|
|
@ -677,7 +677,7 @@
|
|||
this.buttonOutput31.RepeatInterval = 200;
|
||||
this.buttonOutput31.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput31.SafeInterval = 200;
|
||||
this.buttonOutput31.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput31.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput31.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput31.TabIndex = 198;
|
||||
this.buttonOutput31.Tag = "7731";
|
||||
|
|
@ -703,7 +703,7 @@
|
|||
this.buttonOutput23.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput23.GroupID = 0;
|
||||
this.buttonOutput23.InitVisible = true;
|
||||
this.buttonOutput23.Location = new System.Drawing.Point(272, 412);
|
||||
this.buttonOutput23.Location = new System.Drawing.Point(282, 412);
|
||||
this.buttonOutput23.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput23.Name = "buttonOutput23";
|
||||
this.buttonOutput23.NestedClickEventPrevent = false;
|
||||
|
|
@ -711,7 +711,7 @@
|
|||
this.buttonOutput23.RepeatInterval = 200;
|
||||
this.buttonOutput23.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput23.SafeInterval = 200;
|
||||
this.buttonOutput23.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput23.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput23.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput23.TabIndex = 192;
|
||||
this.buttonOutput23.Tag = "7723";
|
||||
|
|
@ -737,7 +737,7 @@
|
|||
this.buttonOutput20.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput20.GroupID = 0;
|
||||
this.buttonOutput20.InitVisible = true;
|
||||
this.buttonOutput20.Location = new System.Drawing.Point(272, 244);
|
||||
this.buttonOutput20.Location = new System.Drawing.Point(282, 244);
|
||||
this.buttonOutput20.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput20.Name = "buttonOutput20";
|
||||
this.buttonOutput20.NestedClickEventPrevent = false;
|
||||
|
|
@ -745,7 +745,7 @@
|
|||
this.buttonOutput20.RepeatInterval = 200;
|
||||
this.buttonOutput20.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput20.SafeInterval = 200;
|
||||
this.buttonOutput20.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput20.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput20.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput20.TabIndex = 201;
|
||||
this.buttonOutput20.Tag = "7720";
|
||||
|
|
@ -771,7 +771,7 @@
|
|||
this.buttonOutput27.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput27.GroupID = 0;
|
||||
this.buttonOutput27.InitVisible = true;
|
||||
this.buttonOutput27.Location = new System.Drawing.Point(378, 188);
|
||||
this.buttonOutput27.Location = new System.Drawing.Point(398, 188);
|
||||
this.buttonOutput27.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput27.Name = "buttonOutput27";
|
||||
this.buttonOutput27.NestedClickEventPrevent = false;
|
||||
|
|
@ -779,7 +779,7 @@
|
|||
this.buttonOutput27.RepeatInterval = 200;
|
||||
this.buttonOutput27.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput27.SafeInterval = 200;
|
||||
this.buttonOutput27.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput27.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput27.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput27.TabIndex = 204;
|
||||
this.buttonOutput27.Tag = "7727";
|
||||
|
|
@ -805,7 +805,7 @@
|
|||
this.buttonOutput30.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput30.GroupID = 0;
|
||||
this.buttonOutput30.InitVisible = true;
|
||||
this.buttonOutput30.Location = new System.Drawing.Point(378, 356);
|
||||
this.buttonOutput30.Location = new System.Drawing.Point(398, 356);
|
||||
this.buttonOutput30.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput30.Name = "buttonOutput30";
|
||||
this.buttonOutput30.NestedClickEventPrevent = false;
|
||||
|
|
@ -813,7 +813,7 @@
|
|||
this.buttonOutput30.RepeatInterval = 200;
|
||||
this.buttonOutput30.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput30.SafeInterval = 200;
|
||||
this.buttonOutput30.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput30.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput30.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput30.TabIndex = 195;
|
||||
this.buttonOutput30.Tag = "7730";
|
||||
|
|
@ -839,7 +839,7 @@
|
|||
this.buttonOutput19.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput19.GroupID = 0;
|
||||
this.buttonOutput19.InitVisible = true;
|
||||
this.buttonOutput19.Location = new System.Drawing.Point(272, 188);
|
||||
this.buttonOutput19.Location = new System.Drawing.Point(282, 188);
|
||||
this.buttonOutput19.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput19.Name = "buttonOutput19";
|
||||
this.buttonOutput19.NestedClickEventPrevent = false;
|
||||
|
|
@ -847,7 +847,7 @@
|
|||
this.buttonOutput19.RepeatInterval = 200;
|
||||
this.buttonOutput19.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput19.SafeInterval = 200;
|
||||
this.buttonOutput19.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput19.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput19.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput19.TabIndex = 206;
|
||||
this.buttonOutput19.Tag = "7719";
|
||||
|
|
@ -873,7 +873,7 @@
|
|||
this.buttonOutput22.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput22.GroupID = 0;
|
||||
this.buttonOutput22.InitVisible = true;
|
||||
this.buttonOutput22.Location = new System.Drawing.Point(272, 356);
|
||||
this.buttonOutput22.Location = new System.Drawing.Point(282, 356);
|
||||
this.buttonOutput22.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput22.Name = "buttonOutput22";
|
||||
this.buttonOutput22.NestedClickEventPrevent = false;
|
||||
|
|
@ -881,7 +881,7 @@
|
|||
this.buttonOutput22.RepeatInterval = 200;
|
||||
this.buttonOutput22.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput22.SafeInterval = 200;
|
||||
this.buttonOutput22.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput22.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput22.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput22.TabIndex = 194;
|
||||
this.buttonOutput22.Tag = "7722";
|
||||
|
|
@ -907,7 +907,7 @@
|
|||
this.buttonOutput26.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput26.GroupID = 0;
|
||||
this.buttonOutput26.InitVisible = true;
|
||||
this.buttonOutput26.Location = new System.Drawing.Point(378, 132);
|
||||
this.buttonOutput26.Location = new System.Drawing.Point(398, 132);
|
||||
this.buttonOutput26.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput26.Name = "buttonOutput26";
|
||||
this.buttonOutput26.NestedClickEventPrevent = false;
|
||||
|
|
@ -915,7 +915,7 @@
|
|||
this.buttonOutput26.RepeatInterval = 200;
|
||||
this.buttonOutput26.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput26.SafeInterval = 200;
|
||||
this.buttonOutput26.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput26.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput26.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput26.TabIndex = 200;
|
||||
this.buttonOutput26.Tag = "7726";
|
||||
|
|
@ -941,7 +941,7 @@
|
|||
this.buttonOutput29.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput29.GroupID = 0;
|
||||
this.buttonOutput29.InitVisible = true;
|
||||
this.buttonOutput29.Location = new System.Drawing.Point(378, 300);
|
||||
this.buttonOutput29.Location = new System.Drawing.Point(398, 300);
|
||||
this.buttonOutput29.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput29.Name = "buttonOutput29";
|
||||
this.buttonOutput29.NestedClickEventPrevent = false;
|
||||
|
|
@ -949,7 +949,7 @@
|
|||
this.buttonOutput29.RepeatInterval = 200;
|
||||
this.buttonOutput29.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput29.SafeInterval = 200;
|
||||
this.buttonOutput29.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput29.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput29.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput29.TabIndex = 191;
|
||||
this.buttonOutput29.Tag = "7729";
|
||||
|
|
@ -975,7 +975,7 @@
|
|||
this.buttonOutput18.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput18.GroupID = 0;
|
||||
this.buttonOutput18.InitVisible = true;
|
||||
this.buttonOutput18.Location = new System.Drawing.Point(272, 132);
|
||||
this.buttonOutput18.Location = new System.Drawing.Point(282, 132);
|
||||
this.buttonOutput18.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput18.Name = "buttonOutput18";
|
||||
this.buttonOutput18.NestedClickEventPrevent = false;
|
||||
|
|
@ -983,7 +983,7 @@
|
|||
this.buttonOutput18.RepeatInterval = 200;
|
||||
this.buttonOutput18.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput18.SafeInterval = 200;
|
||||
this.buttonOutput18.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput18.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput18.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput18.TabIndex = 203;
|
||||
this.buttonOutput18.Tag = "7718";
|
||||
|
|
@ -1009,7 +1009,7 @@
|
|||
this.buttonOutput21.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput21.GroupID = 0;
|
||||
this.buttonOutput21.InitVisible = true;
|
||||
this.buttonOutput21.Location = new System.Drawing.Point(272, 300);
|
||||
this.buttonOutput21.Location = new System.Drawing.Point(282, 300);
|
||||
this.buttonOutput21.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput21.Name = "buttonOutput21";
|
||||
this.buttonOutput21.NestedClickEventPrevent = false;
|
||||
|
|
@ -1017,7 +1017,7 @@
|
|||
this.buttonOutput21.RepeatInterval = 200;
|
||||
this.buttonOutput21.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput21.SafeInterval = 200;
|
||||
this.buttonOutput21.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput21.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput21.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput21.TabIndex = 193;
|
||||
this.buttonOutput21.Tag = "7721";
|
||||
|
|
@ -1043,7 +1043,7 @@
|
|||
this.buttonOutput25.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput25.GroupID = 0;
|
||||
this.buttonOutput25.InitVisible = true;
|
||||
this.buttonOutput25.Location = new System.Drawing.Point(378, 76);
|
||||
this.buttonOutput25.Location = new System.Drawing.Point(398, 76);
|
||||
this.buttonOutput25.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput25.Name = "buttonOutput25";
|
||||
this.buttonOutput25.NestedClickEventPrevent = false;
|
||||
|
|
@ -1051,7 +1051,7 @@
|
|||
this.buttonOutput25.RepeatInterval = 200;
|
||||
this.buttonOutput25.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput25.SafeInterval = 200;
|
||||
this.buttonOutput25.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput25.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput25.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput25.TabIndex = 205;
|
||||
this.buttonOutput25.Tag = "7725";
|
||||
|
|
@ -1078,7 +1078,7 @@
|
|||
this.buttonOutput16.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput16.GroupID = 0;
|
||||
this.buttonOutput16.InitVisible = true;
|
||||
this.buttonOutput16.Location = new System.Drawing.Point(132, 468);
|
||||
this.buttonOutput16.Location = new System.Drawing.Point(142, 468);
|
||||
this.buttonOutput16.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput16.Name = "buttonOutput16";
|
||||
this.buttonOutput16.NestedClickEventPrevent = false;
|
||||
|
|
@ -1086,7 +1086,7 @@
|
|||
this.buttonOutput16.RepeatInterval = 200;
|
||||
this.buttonOutput16.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput16.SafeInterval = 200;
|
||||
this.buttonOutput16.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput16.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput16.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput16.TabIndex = 68;
|
||||
this.buttonOutput16.Tag = "7716";
|
||||
|
|
@ -1120,7 +1120,7 @@
|
|||
this.buttonOutput1.RepeatInterval = 200;
|
||||
this.buttonOutput1.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput1.SafeInterval = 200;
|
||||
this.buttonOutput1.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput1.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput1.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput1.TabIndex = 183;
|
||||
this.buttonOutput1.Tag = "7701";
|
||||
|
|
@ -1154,7 +1154,7 @@
|
|||
this.buttonOutput8.RepeatInterval = 200;
|
||||
this.buttonOutput8.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput8.SafeInterval = 200;
|
||||
this.buttonOutput8.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput8.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput8.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput8.TabIndex = 68;
|
||||
this.buttonOutput8.Tag = "7708";
|
||||
|
|
@ -1181,7 +1181,7 @@
|
|||
this.buttonOutput12.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput12.GroupID = 0;
|
||||
this.buttonOutput12.InitVisible = true;
|
||||
this.buttonOutput12.Location = new System.Drawing.Point(132, 244);
|
||||
this.buttonOutput12.Location = new System.Drawing.Point(142, 244);
|
||||
this.buttonOutput12.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput12.Name = "buttonOutput12";
|
||||
this.buttonOutput12.NestedClickEventPrevent = false;
|
||||
|
|
@ -1189,7 +1189,7 @@
|
|||
this.buttonOutput12.RepeatInterval = 200;
|
||||
this.buttonOutput12.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput12.SafeInterval = 200;
|
||||
this.buttonOutput12.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput12.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput12.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput12.TabIndex = 186;
|
||||
this.buttonOutput12.Tag = "7712";
|
||||
|
|
@ -1216,7 +1216,7 @@
|
|||
this.buttonOutput15.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput15.GroupID = 0;
|
||||
this.buttonOutput15.InitVisible = true;
|
||||
this.buttonOutput15.Location = new System.Drawing.Point(132, 412);
|
||||
this.buttonOutput15.Location = new System.Drawing.Point(142, 412);
|
||||
this.buttonOutput15.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput15.Name = "buttonOutput15";
|
||||
this.buttonOutput15.NestedClickEventPrevent = false;
|
||||
|
|
@ -1224,7 +1224,7 @@
|
|||
this.buttonOutput15.RepeatInterval = 200;
|
||||
this.buttonOutput15.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput15.SafeInterval = 200;
|
||||
this.buttonOutput15.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput15.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput15.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput15.TabIndex = 68;
|
||||
this.buttonOutput15.Tag = "7715";
|
||||
|
|
@ -1258,7 +1258,7 @@
|
|||
this.buttonOutput7.RepeatInterval = 200;
|
||||
this.buttonOutput7.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput7.SafeInterval = 200;
|
||||
this.buttonOutput7.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput7.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput7.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput7.TabIndex = 68;
|
||||
this.buttonOutput7.Tag = "7707";
|
||||
|
|
@ -1292,7 +1292,7 @@
|
|||
this.buttonOutput4.RepeatInterval = 200;
|
||||
this.buttonOutput4.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput4.SafeInterval = 200;
|
||||
this.buttonOutput4.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput4.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput4.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput4.TabIndex = 185;
|
||||
this.buttonOutput4.Tag = "7704";
|
||||
|
|
@ -1319,7 +1319,7 @@
|
|||
this.buttonOutput11.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput11.GroupID = 0;
|
||||
this.buttonOutput11.InitVisible = true;
|
||||
this.buttonOutput11.Location = new System.Drawing.Point(132, 188);
|
||||
this.buttonOutput11.Location = new System.Drawing.Point(142, 188);
|
||||
this.buttonOutput11.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput11.Name = "buttonOutput11";
|
||||
this.buttonOutput11.NestedClickEventPrevent = false;
|
||||
|
|
@ -1327,7 +1327,7 @@
|
|||
this.buttonOutput11.RepeatInterval = 200;
|
||||
this.buttonOutput11.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput11.SafeInterval = 200;
|
||||
this.buttonOutput11.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput11.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput11.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput11.TabIndex = 188;
|
||||
this.buttonOutput11.Tag = "7711";
|
||||
|
|
@ -1354,7 +1354,7 @@
|
|||
this.buttonOutput14.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput14.GroupID = 0;
|
||||
this.buttonOutput14.InitVisible = true;
|
||||
this.buttonOutput14.Location = new System.Drawing.Point(132, 356);
|
||||
this.buttonOutput14.Location = new System.Drawing.Point(142, 356);
|
||||
this.buttonOutput14.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput14.Name = "buttonOutput14";
|
||||
this.buttonOutput14.NestedClickEventPrevent = false;
|
||||
|
|
@ -1362,7 +1362,7 @@
|
|||
this.buttonOutput14.RepeatInterval = 200;
|
||||
this.buttonOutput14.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput14.SafeInterval = 200;
|
||||
this.buttonOutput14.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput14.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput14.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput14.TabIndex = 68;
|
||||
this.buttonOutput14.Tag = "7714";
|
||||
|
|
@ -1396,7 +1396,7 @@
|
|||
this.buttonOutput3.RepeatInterval = 200;
|
||||
this.buttonOutput3.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput3.SafeInterval = 200;
|
||||
this.buttonOutput3.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput3.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput3.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput3.TabIndex = 190;
|
||||
this.buttonOutput3.Tag = "7703";
|
||||
|
|
@ -1430,7 +1430,7 @@
|
|||
this.buttonOutput6.RepeatInterval = 200;
|
||||
this.buttonOutput6.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput6.SafeInterval = 200;
|
||||
this.buttonOutput6.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput6.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput6.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput6.TabIndex = 68;
|
||||
this.buttonOutput6.Tag = "7706";
|
||||
|
|
@ -1457,7 +1457,7 @@
|
|||
this.buttonOutput10.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput10.GroupID = 0;
|
||||
this.buttonOutput10.InitVisible = true;
|
||||
this.buttonOutput10.Location = new System.Drawing.Point(132, 132);
|
||||
this.buttonOutput10.Location = new System.Drawing.Point(142, 132);
|
||||
this.buttonOutput10.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput10.Name = "buttonOutput10";
|
||||
this.buttonOutput10.NestedClickEventPrevent = false;
|
||||
|
|
@ -1465,7 +1465,7 @@
|
|||
this.buttonOutput10.RepeatInterval = 200;
|
||||
this.buttonOutput10.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput10.SafeInterval = 200;
|
||||
this.buttonOutput10.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput10.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput10.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput10.TabIndex = 184;
|
||||
this.buttonOutput10.Tag = "7710";
|
||||
|
|
@ -1492,7 +1492,7 @@
|
|||
this.buttonOutput13.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput13.GroupID = 0;
|
||||
this.buttonOutput13.InitVisible = true;
|
||||
this.buttonOutput13.Location = new System.Drawing.Point(132, 300);
|
||||
this.buttonOutput13.Location = new System.Drawing.Point(142, 300);
|
||||
this.buttonOutput13.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput13.Name = "buttonOutput13";
|
||||
this.buttonOutput13.NestedClickEventPrevent = false;
|
||||
|
|
@ -1500,7 +1500,7 @@
|
|||
this.buttonOutput13.RepeatInterval = 200;
|
||||
this.buttonOutput13.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput13.SafeInterval = 200;
|
||||
this.buttonOutput13.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput13.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput13.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput13.TabIndex = 68;
|
||||
this.buttonOutput13.Tag = "7713";
|
||||
|
|
@ -1534,7 +1534,7 @@
|
|||
this.buttonOutput2.RepeatInterval = 200;
|
||||
this.buttonOutput2.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput2.SafeInterval = 200;
|
||||
this.buttonOutput2.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput2.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput2.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput2.TabIndex = 187;
|
||||
this.buttonOutput2.Tag = "7702";
|
||||
|
|
@ -1568,7 +1568,7 @@
|
|||
this.buttonOutput5.RepeatInterval = 200;
|
||||
this.buttonOutput5.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput5.SafeInterval = 200;
|
||||
this.buttonOutput5.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput5.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput5.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput5.TabIndex = 68;
|
||||
this.buttonOutput5.Tag = "7705";
|
||||
|
|
@ -1595,7 +1595,7 @@
|
|||
this.buttonOutput9.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonOutput9.GroupID = 0;
|
||||
this.buttonOutput9.InitVisible = true;
|
||||
this.buttonOutput9.Location = new System.Drawing.Point(132, 76);
|
||||
this.buttonOutput9.Location = new System.Drawing.Point(142, 76);
|
||||
this.buttonOutput9.Mode = SmartX.SmartButton.BUTTONMODE.PUSH;
|
||||
this.buttonOutput9.Name = "buttonOutput9";
|
||||
this.buttonOutput9.NestedClickEventPrevent = false;
|
||||
|
|
@ -1603,7 +1603,7 @@
|
|||
this.buttonOutput9.RepeatInterval = 200;
|
||||
this.buttonOutput9.RepeatIntervalAccelerate = null;
|
||||
this.buttonOutput9.SafeInterval = 200;
|
||||
this.buttonOutput9.Size = new System.Drawing.Size(100, 50);
|
||||
this.buttonOutput9.Size = new System.Drawing.Size(110, 50);
|
||||
this.buttonOutput9.SpecialFunction = SmartX.SmartButton.SPECIALFUNC.NONE;
|
||||
this.buttonOutput9.TabIndex = 189;
|
||||
this.buttonOutput9.Tag = "7709";
|
||||
|
|
@ -1691,7 +1691,7 @@
|
|||
this.smartGroupBox2.FrameStyle = SmartX.SmartGroupBox.FRAMESTYLES.RoundRectangle;
|
||||
this.smartGroupBox2.Image = null;
|
||||
this.smartGroupBox2.InitVisible = true;
|
||||
this.smartGroupBox2.Location = new System.Drawing.Point(638, 79);
|
||||
this.smartGroupBox2.Location = new System.Drawing.Point(651, 79);
|
||||
this.smartGroupBox2.Name = "smartGroupBox2";
|
||||
this.smartGroupBox2.RoundRadius = 5;
|
||||
this.smartGroupBox2.Size = new System.Drawing.Size(370, 581);
|
||||
|
|
|
|||
|
|
@ -22,12 +22,10 @@ namespace INT63DC_2C.Forms
|
|||
private Color ColorIOStatusOn;
|
||||
private Color ColorIOStatusOff;
|
||||
|
||||
private string Text_Out;
|
||||
private string Text_In;
|
||||
|
||||
private Collection<Label> CollectionInputLabel;
|
||||
private Collection<Label> CollectionInputLabel1;
|
||||
private Collection<SmartLabel> CollectionInputLabelName;
|
||||
private Collection<SmartLabel> CollectionInputLabelName1;
|
||||
private Collection<SmartButton> CollectionOutputButton;
|
||||
|
||||
// OUT 1 : RED LAMP
|
||||
|
|
@ -84,16 +82,11 @@ namespace INT63DC_2C.Forms
|
|||
switch (this.ParentForm.SystemConfig.Language)
|
||||
{
|
||||
case DataStore.E_LanguageID.Korean:
|
||||
this.Text_Out = "OUT";
|
||||
this.Text_In = "IN";
|
||||
break;
|
||||
case DataStore.E_LanguageID.English:
|
||||
#region English
|
||||
this.labelTitle.Text = "I/O Test";
|
||||
|
||||
this.Text_Out = "OUT";
|
||||
this.Text_In = "IN";
|
||||
|
||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDisable));
|
||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackDown));
|
||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.engBackUp));
|
||||
|
|
@ -103,9 +96,6 @@ namespace INT63DC_2C.Forms
|
|||
#region Chinese
|
||||
this.labelTitle.Text = "I/O测试";
|
||||
|
||||
this.Text_Out = "OUT";
|
||||
this.Text_In = "IN";
|
||||
|
||||
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));
|
||||
|
|
@ -115,9 +105,6 @@ namespace INT63DC_2C.Forms
|
|||
#region Czech
|
||||
this.labelTitle.Text = "Test I/O";
|
||||
|
||||
this.Text_Out = "OUT";
|
||||
this.Text_In = "IN";
|
||||
|
||||
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));
|
||||
|
|
@ -127,9 +114,6 @@ namespace INT63DC_2C.Forms
|
|||
#region German
|
||||
this.labelTitle.Text = "I/O Test";
|
||||
|
||||
this.Text_Out = "OUT";
|
||||
this.Text_In = "IN";
|
||||
|
||||
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));
|
||||
|
|
@ -142,9 +126,6 @@ namespace INT63DC_2C.Forms
|
|||
this.smartGroupBox1.Text = "出力";
|
||||
this.smartGroupBox2.Text = "入力";
|
||||
|
||||
this.Text_Out = "出力";
|
||||
this.Text_In = "入力";
|
||||
|
||||
this.buttonBack.DisableImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackDisable));
|
||||
this.buttonBack.DownImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackDown));
|
||||
this.buttonBack.UpImage = new Bitmap(images.GetImage(ImageDll.ButtonImages.jpnBackUp));
|
||||
|
|
@ -171,7 +152,6 @@ namespace INT63DC_2C.Forms
|
|||
this.ColorIOStatusOff = Color.Gray;
|
||||
|
||||
this.CollectionInputLabel = new Collection<Label>();
|
||||
this.CollectionInputLabel.Clear();
|
||||
this.CollectionInputLabel.Add(this.labelInput1);
|
||||
this.CollectionInputLabel.Add(this.labelInput2);
|
||||
this.CollectionInputLabel.Add(this.labelInput3);
|
||||
|
|
@ -190,7 +170,6 @@ namespace INT63DC_2C.Forms
|
|||
this.CollectionInputLabel.Add(this.labelInput16);
|
||||
|
||||
this.CollectionInputLabel1 = new Collection<Label>();
|
||||
this.CollectionInputLabel1.Clear();
|
||||
this.CollectionInputLabel1.Add(this.labelInput17);
|
||||
this.CollectionInputLabel1.Add(this.labelInput18);
|
||||
this.CollectionInputLabel1.Add(this.labelInput19);
|
||||
|
|
@ -209,7 +188,6 @@ namespace INT63DC_2C.Forms
|
|||
this.CollectionInputLabel1.Add(this.labelInput32);
|
||||
|
||||
this.CollectionInputLabelName = new Collection<SmartLabel>();
|
||||
this.CollectionInputLabelName.Clear();
|
||||
this.CollectionInputLabelName.Add(this.labelInputName1);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName2);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName3);
|
||||
|
|
@ -226,25 +204,26 @@ namespace INT63DC_2C.Forms
|
|||
this.CollectionInputLabelName.Add(this.labelInputName14);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName15);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName16);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName17);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName18);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName19);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName20);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName21);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName22);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName23);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName24);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName25);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName26);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName27);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName28);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName29);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName30);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName31);
|
||||
this.CollectionInputLabelName.Add(this.labelInputName32);
|
||||
|
||||
this.CollectionInputLabelName1 = new Collection<SmartLabel>();
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName17);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName18);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName19);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName20);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName21);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName22);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName23);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName24);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName25);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName26);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName27);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName28);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName29);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName30);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName31);
|
||||
this.CollectionInputLabelName1.Add(this.labelInputName32);
|
||||
|
||||
this.CollectionOutputButton = new Collection<SmartButton>();
|
||||
this.CollectionOutputButton.Clear();
|
||||
this.CollectionOutputButton.Add(this.buttonOutput1);
|
||||
this.CollectionOutputButton.Add(this.buttonOutput2);
|
||||
this.CollectionOutputButton.Add(this.buttonOutput3);
|
||||
|
|
@ -286,11 +265,6 @@ namespace INT63DC_2C.Forms
|
|||
this.CollectionOutputButton.Add(this.buttonOutput39);
|
||||
this.CollectionOutputButton.Add(this.buttonOutput40);
|
||||
|
||||
for (int i = 0; i < this.CollectionInputLabelName.Count; i++)
|
||||
this.CollectionInputLabelName[i].Text = string.Format("{0}{1}", this.Text_In, i + 1);
|
||||
for (int i = 0; i < this.CollectionOutputButton.Count; i++)
|
||||
this.CollectionOutputButton[i].Text = string.Format("{0}{1}", this.Text_Out, i + 1);
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns <= 12)
|
||||
{
|
||||
for (int i = 32; i < 40; i++)
|
||||
|
|
@ -302,6 +276,127 @@ namespace INT63DC_2C.Forms
|
|||
new Point(this.CollectionOutputButton[i].Location.X + 50, this.CollectionOutputButton[i].Location.Y);
|
||||
}
|
||||
}
|
||||
|
||||
for (int i = 0; i < this.CollectionInputLabel1.Count; i++)
|
||||
this.CollectionInputLabel1[i].Visible = false;
|
||||
|
||||
for (int i = 0; i < this.CollectionInputLabel.Count; i++)
|
||||
{
|
||||
this.CollectionInputLabel[i].Location = new Point(this.CollectionInputLabel[i].Location.X + 50, this.CollectionInputLabel[i].Location.Y);
|
||||
this.CollectionInputLabelName[i].Location = new Point(this.CollectionInputLabelName[i].Location.X + 50, this.CollectionInputLabelName[i].Location.Y);
|
||||
|
||||
this.CollectionInputLabel1[i].Visible = false;
|
||||
this.CollectionInputLabelName1[i].Visible = false;
|
||||
}
|
||||
}
|
||||
private void SetLabelName()
|
||||
{
|
||||
#region Input
|
||||
this.labelInputName1.Text = "DIS_JAM_SEN";
|
||||
this.labelInputName2.Text = "NONE";
|
||||
this.labelInputName3.Text = "PRES_SEN";
|
||||
this.labelInputName4.Text = "NONE";
|
||||
this.labelInputName5.Text = "OP_SW";
|
||||
this.labelInputName6.Text = "E-STOP";
|
||||
this.labelInputName7.Text = "ENT_SEN";
|
||||
this.labelInputName8.Text = "NONE";
|
||||
this.labelInputName9.Text = "SV_ORG_SEN";
|
||||
this.labelInputName10.Text = "SVON";
|
||||
this.labelInputName11.Text = "SV_IN";
|
||||
this.labelInputName12.Text = "SV_IN";
|
||||
this.labelInputName13.Text = "SV_IN";
|
||||
this.labelInputName14.Text = "SV_IN";
|
||||
this.labelInputName15.Text = "SV_IN";
|
||||
this.labelInputName16.Text = "SV_IN";
|
||||
|
||||
this.labelInputName17.Text = "NONE";
|
||||
this.labelInputName18.Text = "NONE";
|
||||
this.labelInputName19.Text = "NONE";
|
||||
this.labelInputName20.Text = "NONE";
|
||||
this.labelInputName21.Text = "NONE";
|
||||
this.labelInputName22.Text = "NONE";
|
||||
this.labelInputName23.Text = "NONE";
|
||||
this.labelInputName24.Text = "NONE";
|
||||
this.labelInputName25.Text = "NONE";
|
||||
this.labelInputName26.Text = "NONE";
|
||||
this.labelInputName27.Text = "NONE";
|
||||
this.labelInputName28.Text = "NONE";
|
||||
this.labelInputName29.Text = "NONE";
|
||||
this.labelInputName30.Text = "NONE";
|
||||
this.labelInputName31.Text = "NONE";
|
||||
this.labelInputName32.Text = "NONE";
|
||||
#endregion
|
||||
|
||||
#region Output
|
||||
this.buttonOutput1.Text = "RED_LAMP";
|
||||
this.buttonOutput2.Text = "GRN_LAMP";
|
||||
this.buttonOutput3.Text = "BUZZER";
|
||||
this.buttonOutput4.Text = "CHECK_SIG";
|
||||
this.buttonOutput5.Text = "OPERATION";
|
||||
|
||||
if (this.ParentForm.SystemConfig.Sorter4Location == 1)
|
||||
this.buttonOutput6.Text = "LK_STP";
|
||||
else
|
||||
this.buttonOutput6.Text = "NONE";
|
||||
|
||||
this.buttonOutput7.Text = "ENTRY_GATE";
|
||||
this.buttonOutput8.Text = "DISCHARGE_STP";
|
||||
|
||||
this.buttonOutput9.Text = "SV_OUT";
|
||||
this.buttonOutput10.Text = "SV_OUT";
|
||||
this.buttonOutput11.Text = "SV_OUT";
|
||||
this.buttonOutput12.Text = "SV_OUT";
|
||||
this.buttonOutput13.Text = "SV_OUT";
|
||||
this.buttonOutput14.Text = "SV_OUT";
|
||||
this.buttonOutput15.Text = "SV_OUT";
|
||||
this.buttonOutput16.Text = "SV_OUT";
|
||||
|
||||
this.buttonOutput17.Text = "SORTER1-1";
|
||||
this.buttonOutput18.Text = "SORTER1-2";
|
||||
this.buttonOutput19.Text = "SORTER1-3";
|
||||
this.buttonOutput20.Text = "SORTER1-4";
|
||||
this.buttonOutput21.Text = "SORTER1-5";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 6)
|
||||
this.buttonOutput22.Text = "SORTER1-6";
|
||||
else
|
||||
this.buttonOutput22.Text = "NONE";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 7)
|
||||
this.buttonOutput23.Text = "SORTER1-7";
|
||||
else
|
||||
this.buttonOutput23.Text = "NONE";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 8)
|
||||
this.buttonOutput24.Text = "SORTER1-8";
|
||||
else
|
||||
this.buttonOutput24.Text = "NONE";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 9)
|
||||
this.buttonOutput25.Text = "SORTER1-9";
|
||||
else
|
||||
this.buttonOutput25.Text = "NONE";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 10)
|
||||
this.buttonOutput26.Text = "SORTER1-10";
|
||||
else
|
||||
this.buttonOutput26.Text = "NONE";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 11)
|
||||
this.buttonOutput27.Text = "SORTER1-11";
|
||||
else
|
||||
this.buttonOutput27.Text = "NONE";
|
||||
|
||||
if (this.ParentForm.SystemConfig.EquipmentColumns >= 12)
|
||||
this.buttonOutput28.Text = "SORTER1-12";
|
||||
else
|
||||
this.buttonOutput28.Text = "NONE";
|
||||
|
||||
this.buttonOutput29.Text = "NONE";
|
||||
this.buttonOutput30.Text = "SORTER2";
|
||||
this.buttonOutput31.Text = "SORTER3";
|
||||
this.buttonOutput32.Text = "NONE";
|
||||
#endregion
|
||||
}
|
||||
|
||||
private void SetlabelOnOff(Label control, bool isOn)
|
||||
|
|
@ -350,6 +445,7 @@ namespace INT63DC_2C.Forms
|
|||
this.InitializeDesign();
|
||||
this.DefaultSetting();
|
||||
this.InitializeControl();
|
||||
this.SetLabelName();
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
|
|
|||
|
|
@ -165,75 +165,77 @@
|
|||
XTesb3QPLh88M+QwdP6m681Lt7xuXbu94vbgcOjwnZHokdE77DtTd1PuvriXeW/h/sYH6AdFD6UeVjxS
|
||||
fNTws+7PbaOWo6fHXMf6Hwc/vj/OGn/2S8Yv7ycKnpCfVEyqTDZPmU2dmnafvvF05dOJZ+nPFmYKf5X+
|
||||
tfa5zvMffnP8rX82YnbiBf/Fp99LXsq/PPRq2aueuYC5R69TXy/MF72Rf3P4LeNt37vwd5MLWe+x7ys/
|
||||
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwAAADsABataJCQAAD99JREFUeF7t1wENADAI
|
||||
wDD8CwC5v5B1qYnNkyRJkpTJAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiS
|
||||
JEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmS
|
||||
FMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmh
|
||||
DIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoA
|
||||
SJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAk
|
||||
SZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIk
|
||||
SaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIU
|
||||
ygBIkiRJoQyAJEmSFMoASJIkSaEMgCRJkhTKAEiSJEmhDIAkSZIUygBIkiRJoQyAJEmSFMoASJIkSaEM
|
||||
gCRJkhRqbg8AAIgwAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAA
|
||||
ACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEG
|
||||
AAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQ
|
||||
YgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAA
|
||||
ACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEA
|
||||
AAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQ
|
||||
AwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAA
|
||||
CDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEA
|
||||
AIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQY
|
||||
AAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABA
|
||||
iAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAA
|
||||
AIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQA
|
||||
AABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABC
|
||||
DAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAA
|
||||
IMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYA
|
||||
AABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBi
|
||||
AAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAA
|
||||
IQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAA
|
||||
ABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBAD
|
||||
AAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAI
|
||||
MQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAA
|
||||
gBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgA
|
||||
AAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECI
|
||||
AQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAA
|
||||
hBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAA
|
||||
AECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIM
|
||||
AAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAg
|
||||
xAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAA
|
||||
AEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIA
|
||||
AAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAh
|
||||
BgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAA
|
||||
EGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMA
|
||||
AAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgx
|
||||
AAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACA
|
||||
EAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAA
|
||||
AAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgB
|
||||
AACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACE
|
||||
GAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAA
|
||||
QIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwA
|
||||
AACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDE
|
||||
AAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAA
|
||||
QgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQYgAA
|
||||
ACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAAACEG
|
||||
AAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEAAAAQ
|
||||
YgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQAwAA
|
||||
ACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAACDEA
|
||||
AAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEAAIAQ
|
||||
AwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQYAAAA
|
||||
CDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABAiAEA
|
||||
AIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAAAIQY
|
||||
AAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQAAABA
|
||||
iAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABCDAAA
|
||||
AIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAAIMQA
|
||||
AABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYAAABC
|
||||
DAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBiAAAA
|
||||
IMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAAIQYA
|
||||
AABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAAABBi
|
||||
AAAAIMQAAABAiAEAAIAQAwAAACEGAAAAQgwAAACEGAAAAAgxAAAAEGIAAAAgxAAAAECIAQAAgBADAAAA
|
||||
IQYAAABCDAAAAIQYAAAACDEAAAAQYgAAACDEAAAAQIgBAACAEAMAAAAhBgAAAEIMAAAAhBgAAAAIMQAA
|
||||
ABBiAAAAIMQAAABAiAEAAIAQAwAAACEGAAAAMvY+1tRWy+4CoZ0AAAAASUVORK5CYII=
|
||||
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOwAAADsABataJCQAAEEJJREFUeF7t1zERACAQ
|
||||
xMD3LwDkQo8EspmtzsHNkSRJkpRp3kGSJEnSvzkAkiRJUigHQJIkSQrlAEiSJEmhHABJkiQplAMgSZIk
|
||||
hXIAJEmSpFAOgCRJkhTKAZAkSZJCOQCSJElSKAdAkiRJCuUASJIkSaEcAEmSJCmUAyBJkiSFcgAkSZKk
|
||||
UA6AJEmSFMoBkCRJkkI5AJIkSVIoB0CSJEkK5QBIkiRJoRwASZIkKZQDIEmSJIVyACRJkqRQDoAkSZIU
|
||||
ygGQJEmSQjkAkiRJUigHQJIkSQrlAEiSJEmhHABJkiQplAMgSZIkhXIAJEmSpFAOgCRJkhTKAZAkSZJC
|
||||
OQCSJElSKAdAkiRJCuUASJIkSaEcAEmSJCmUAyBJkiSFcgAkSZKkUA6AJEmSFMoBkCRJkkI5AJIkSVIo
|
||||
B0CSJEkK5QBIkiRJoRwASZIkKZQDIEmSJIVyACRJkqRQDoAkSZIUygGQJEmSQjkAkiRJUigHQJIkSQrl
|
||||
AEiSJEmhHABJkiQplAMgSZIkhXIAJEmSpFAOgCRJkhTKAZAkSZJCOQCSJElSKAdAkiRJCuUASJIkSaEc
|
||||
AEmSJCmUAyBJkiSFcgAkSZKkUA6AJEmSFMoBkCRJkkI5AJIkSVIoB0CSJEkK5QBIkiRJoRwASZIkKZQD
|
||||
IEmSJIVyACRJkqRQDoAkSZIUavbaAABAhAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABA
|
||||
iAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIA
|
||||
AABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAA
|
||||
EOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4
|
||||
AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAA
|
||||
AIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAh
|
||||
DgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMAAAAhDgAAAIQ4AAAAEOIAAABAiAMA
|
||||
AAAhDgAAAIRc1tRWy/QY8wMAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonBack.DisableImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -283,28 +285,29 @@
|
|||
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
|
||||
hf8BrK786fYhO9AAAAAASUVORK5CYII=
|
||||
6H7o/ujz8cGn1E+f/gUDmPP8usTo0wAAAAlwSFlzAAAOxAAADsQBlSsOGwAABPpJREFUeF7tnOlyqkgY
|
||||
QH1aoSomNd7JoENUEALEBAUjAop7xBFBQZwHnIqdMKZdwhWICp7ij9Ubh27hY6kvpcgKtMlNmWXZXC6X
|
||||
yWQQBElfLCiK3t3d5XI5juXkprxtmoJ+l8tlFEVJkmy1WrPZzHXdfy8Wx3Gm02mr1SJJEkXRcrm8V74u
|
||||
1nEcJwjCMAy4m8vHMAyCIHAcr4t1WL4u1hEEEUURbhQvRFFEEMTz/5DHcTz25gBRFHEc/1+eJEiSJOFa
|
||||
8YUkSYIg3uXlpoyiqGmacJX4YlkWiqJyU06xDEtRFFwedyiKYhgmhWFYu92GC+OOpmkYhqUymUyi1jzA
|
||||
NM1MJpNCEOSiI5njcF0XQZBUOp2GS5JBOp2+yieSq/xV/oTYtm1Zlm3bcEHEnF7ecZy3t7fhcGhZ1mq1
|
||||
gouj5MTy8/m83+9LktRqtUzTTIr8arWyLKvb7YqiKAhCq9VKyszbtq3ruqIogiDU1iRCHky4pmmiKFY3
|
||||
UFU15vLL5XIymaiqWq1W+a8oihJn+cViMRgMXl9fX3ahKEo8T3jL5XI2m7XbbZ7nK3uQZdmyLLhlxEQu
|
||||
7zgOmPBKpcLtp9lsxk3esiww4RzHsQep1Wq9Xm+8h7e3N13X4d4DE5X8crnUdb3ZbHIcx/iA4zie58Fl
|
||||
b/Mq4BHFY/VI5BeLRb/fr1ardHiwLAsPE5iQ5V3XNQxDlmWO46hQeXp6ggcLTJjypmn2ej2e52mafn8H
|
||||
EirnLq+qKsMwpVKJiIBzX/aapj0/PxMEUYoAhmHg8QITprzjOLqu1+t1mqaLYXPu8oDFYtHpdFiWLRQK
|
||||
D+FB0zQ8UmDCl/cezlSr1UKh8HdIFItFeJjARCIPbl0Nw5AkiSTJvA/AwgZx/tMWIASCxwhMVPIA27bb
|
||||
7TZN0ziO5w7CMEy32/1nzWQX0+kU7j0w0cqDOBf8BXAc/2s/lUplOp2uDgJ3HZjI5b2nN4qiFIvFP/fA
|
||||
cVwUc3uYn5AH2Lbd7XYZhrm/v89uwTCMrutRTO8Bfk4eLAFd13mexzDsj6/QND2ZTOIsD/zn87kkSQ8P
|
||||
D9ls9u4TmqZjPvMejuOMRiOO47LZ7O2acrmcFHmAYRiCIPz69evm5qZYLI7H4wTJg9dVjUYjn8+XSqXh
|
||||
cJgsefCcTxTFl5eX0WiUOPkTcpW/yieQq/xVPmqm0yl49wQXnI5w5AeDweN+QJ3Hx8f7NXDjLcbjseSD
|
||||
wWAAt/xNwpH3xHYC1YEbbyFJEtzFLrzDejQhy8OTvgaqAzfeotPpwF185Uzl4YIN/NTxyVX+/OThrwrW
|
||||
OI7zW/KqqoKahzk7+Z2Ay5t/+Qs74YmiCO/aBkfLw0voK8G/4QlH3g9HyMMFYRNU3nEceEY+8aIRnuc3
|
||||
L1FwF1v4nHnvbHI0QeXH4zHY0W85Qv5bAgbLEcrn83kvLJEkyb98p9OB+9rDieUhNlcsVORfHsI7vpIk
|
||||
wWXBuMqfjXyn0/ly4/Z5vgQNwd9nG7gX35yX/OFgaR9wL765yp+N/A8TsrwX22zHnvGXvyyu8kmWR1E0
|
||||
4B3CJfKROeH29vbnv4Q6OR85MxKdLSXReXISnSEp0bmxkp4VzcuH12g04LrxotFo7MiHp8iKUBPinQmR
|
||||
JEkcx4WaAGdC9DaQA5OiKE3TLj0Hpuu6s9lM0zSKor7Jgelt79lPGRbDsEvPfoogSCaTwTCMZdid2U//
|
||||
A6yu/OmZUbOXAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonBack.DownImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -354,120 +357,128 @@
|
|||
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
|
||||
9pH/yfYAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="buttonBack.UpImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
|
@ -517,47 +528,49 @@
|
|||
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
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="$this.FormFactorShadowProperty" xml:space="preserve">
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ namespace INT63DC_2C.Forms
|
|||
}
|
||||
private void DefaultSetting()
|
||||
{
|
||||
this.labelDisplayVer.Text = "9.2.0";
|
||||
this.labelDisplayVer.Text = "9.3.0";
|
||||
this.labelSerialNo.Text = this.ParentForm.SystemConfig.SerialNumber;
|
||||
this.textBoxSerialNo.Location = new Point(395, 225);
|
||||
this.textBoxSerialNo.Visible = false;
|
||||
|
|
|
|||
|
|
@ -2501,13 +2501,13 @@ namespace INT63DC_2C.Forms
|
|||
|
||||
this.SystemConfig.Initialization();
|
||||
|
||||
structItem.IsDataBackup = this.SystemConfig.IsDataBackup;
|
||||
structItem.DummyBool8 = false;
|
||||
structItem.IsEachNG = this.SystemConfig.IsEachNG;
|
||||
structItem.IsLogin = this.SystemConfig.IsLogin;
|
||||
structItem.IsWeightViewForward = this.SystemConfig.IsWeightViewForward;
|
||||
structItem.IsOptDataStatistics = this.SystemConfig.IsOptDataStatistics;
|
||||
structItem.IsSorterCheckEnable = this.SystemConfig.IsSorterCheckEnable;
|
||||
structItem.IsDeleteAfterBackup = this.SystemConfig.IsDeleteAfterBackup;
|
||||
structItem.DummyBool6 = false;
|
||||
structItem.DummyBool7 = false;
|
||||
|
||||
structItem.DecimalPlaces = this.SystemConfig.DecimalPlaces;
|
||||
|
|
@ -2528,7 +2528,7 @@ namespace INT63DC_2C.Forms
|
|||
structItem.DummyBool2 = false;
|
||||
structItem.DummyBool3 = false;
|
||||
structItem.DummyBool4 = false;
|
||||
structItem.DummyBool8 = false;
|
||||
structItem.DummyBool5 = false;
|
||||
structItem.Sorter1Location = this.SystemConfig.Sorter1Location;
|
||||
structItem.Sorter2Location = this.SystemConfig.Sorter2Location;
|
||||
structItem.EXT1_DelayTime = this.SystemConfig.EXT1_DelayTime;
|
||||
|
|
@ -2563,13 +2563,13 @@ namespace INT63DC_2C.Forms
|
|||
this.CreateSystemConfigurationFile1();
|
||||
}
|
||||
|
||||
structItem.IsDataBackup = item.IsDataBackup;
|
||||
structItem.DummyBool8 = false;
|
||||
structItem.IsEachNG = item.IsEachNG;
|
||||
structItem.IsLogin = item.IsLogin;
|
||||
structItem.IsWeightViewForward = item.IsWeightViewForward;
|
||||
structItem.IsOptDataStatistics = item.IsOptDataStatistics;
|
||||
structItem.IsSorterCheckEnable = item.IsSorterCheckEnable;
|
||||
structItem.IsDeleteAfterBackup = item.IsDeleteAfterBackup;
|
||||
structItem.DummyBool6 = false;
|
||||
structItem.DummyBool7 = false;
|
||||
|
||||
structItem.DecimalPlaces = item.DecimalPlaces;
|
||||
|
|
@ -2590,7 +2590,7 @@ namespace INT63DC_2C.Forms
|
|||
structItem.DummyBool2 = false;
|
||||
structItem.DummyBool3 = false;
|
||||
structItem.DummyBool4 = false;
|
||||
structItem.DummyBool8 = false;
|
||||
structItem.DummyBool5 = false;
|
||||
structItem.Sorter1Location = item.Sorter1Location;
|
||||
structItem.Sorter2Location = item.Sorter2Location;
|
||||
structItem.EXT1_DelayTime = item.EXT1_DelayTime;
|
||||
|
|
@ -2630,13 +2630,11 @@ namespace INT63DC_2C.Forms
|
|||
{
|
||||
structItem = (StructSystemConfigurationItem1)this.smartFileIO.ReadStructure(0, typeof(StructSystemConfigurationItem1));
|
||||
|
||||
this.SystemConfig.IsDataBackup = structItem.IsDataBackup;
|
||||
this.SystemConfig.IsEachNG = structItem.IsEachNG;
|
||||
this.SystemConfig.IsLogin = structItem.IsLogin;
|
||||
this.SystemConfig.IsWeightViewForward = structItem.IsWeightViewForward;
|
||||
this.SystemConfig.IsOptDataStatistics = structItem.IsOptDataStatistics;
|
||||
this.SystemConfig.IsSorterCheckEnable = structItem.IsSorterCheckEnable;
|
||||
this.SystemConfig.IsDeleteAfterBackup = structItem.IsDeleteAfterBackup;
|
||||
|
||||
this.SystemConfig.DecimalPlaces = structItem.DecimalPlaces;
|
||||
this.SystemConfig.EquipmentColumns = structItem.EquipmentColumns;
|
||||
|
|
@ -9237,83 +9235,80 @@ namespace INT63DC_2C.Forms
|
|||
string fullFilePath = "", folderPath = "", fileName = "";
|
||||
StreamWriter sw;
|
||||
|
||||
if (this.SystemConfig.IsDataBackup == true)
|
||||
this.GetTrackingInspectionFolderPath(ref folderPath, ref fileName);
|
||||
fullFilePath = string.Format("{0}{1}", folderPath, fileName);
|
||||
|
||||
DirectoryInfo di = new DirectoryInfo(folderPath);
|
||||
directoryCheck = di.Exists;
|
||||
// 폴더 체크
|
||||
if (directoryCheck == false)
|
||||
di.Create();
|
||||
|
||||
FileInfo fileInfo = new FileInfo(fullFilePath);
|
||||
fileCheck = fileInfo.Exists;
|
||||
|
||||
sw = new StreamWriter(fullFilePath, true, Encoding.UTF8);
|
||||
|
||||
if (fileCheck == false)
|
||||
{
|
||||
this.GetTrackingInspectionFolderPath(ref folderPath, ref fileName);
|
||||
fullFilePath = string.Format("{0}{1}", folderPath, fileName);
|
||||
this.RemoveInspectionDataFile();
|
||||
|
||||
DirectoryInfo di = new DirectoryInfo(folderPath);
|
||||
directoryCheck = di.Exists;
|
||||
// 폴더 체크
|
||||
if (directoryCheck == false)
|
||||
di.Create();
|
||||
|
||||
FileInfo fileInfo = new FileInfo(fullFilePath);
|
||||
fileCheck = fileInfo.Exists;
|
||||
|
||||
sw = new StreamWriter(fullFilePath, true, Encoding.UTF8);
|
||||
|
||||
if (fileCheck == false)
|
||||
{
|
||||
this.RemoveInspectionDataFile();
|
||||
|
||||
sw.Write("Date");
|
||||
sw.Write(",");
|
||||
sw.Write("Time");
|
||||
sw.Write(",");
|
||||
sw.Write("P_No");
|
||||
sw.Write(",");
|
||||
sw.Write("Name");
|
||||
sw.Write(",");
|
||||
sw.Write("Lot");
|
||||
sw.Write(",");
|
||||
sw.Write("UnderRange");
|
||||
sw.Write(",");
|
||||
sw.Write("PassRange");
|
||||
sw.Write(",");
|
||||
sw.Write("OverRange");
|
||||
sw.Write(",");
|
||||
sw.Write("TareRange");
|
||||
|
||||
for (int i = 0; i < this.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
sw.Write(",");
|
||||
sw.Write(string.Format("#{0}_Weight", i + 1));
|
||||
sw.Write(",");
|
||||
sw.Write(string.Format("#{0}_Grade", i + 1));
|
||||
}
|
||||
|
||||
sw.WriteLine();
|
||||
}
|
||||
|
||||
sw.Write(string.Format("{0:yyyy-MM-dd}", DateTime.Now));
|
||||
sw.Write("Date");
|
||||
sw.Write(",");
|
||||
sw.Write(string.Format("{0:HH:mm:ss}", DateTime.Now));
|
||||
sw.Write("Time");
|
||||
sw.Write(",");
|
||||
sw.Write(this.CurrentProductItem.Number);
|
||||
sw.Write("P_No");
|
||||
sw.Write(",");
|
||||
sw.Write(this.CurrentProductItem.Name);
|
||||
sw.Write("Name");
|
||||
sw.Write(",");
|
||||
sw.Write(this.CurrentProductItem.LotNo);
|
||||
sw.Write("Lot");
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.UnderRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write("UnderRange");
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.PassRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write("PassRange");
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.OverRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write("OverRange");
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.TareRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write("TareRange");
|
||||
|
||||
for (int i = 0; i < this.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.DoubleToString(items[i].Weight, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write(string.Format("#{0}_Weight", i + 1));
|
||||
sw.Write(",");
|
||||
sw.Write(items[i].JudgmentStatus);
|
||||
sw.Write(string.Format("#{0}_Grade", i + 1));
|
||||
}
|
||||
|
||||
sw.WriteLine();
|
||||
sw.Close();
|
||||
}
|
||||
|
||||
sw.Write(string.Format("{0:yyyy-MM-dd}", DateTime.Now));
|
||||
sw.Write(",");
|
||||
sw.Write(string.Format("{0:HH:mm:ss}", DateTime.Now));
|
||||
sw.Write(",");
|
||||
sw.Write(this.CurrentProductItem.Number);
|
||||
sw.Write(",");
|
||||
sw.Write(this.CurrentProductItem.Name);
|
||||
sw.Write(",");
|
||||
sw.Write(this.CurrentProductItem.LotNo);
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.UnderRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.PassRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.OverRange, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.StringToDecimalPlaces(this.CurrentProductItem.TareRange, this.SystemConfig.DecimalPlaces));
|
||||
|
||||
for (int i = 0; i < this.SystemConfig.EquipmentColumns; i++)
|
||||
{
|
||||
sw.Write(",");
|
||||
sw.Write(Helper.DoubleToString(items[i].Weight, this.SystemConfig.DecimalPlaces));
|
||||
sw.Write(",");
|
||||
sw.Write(items[i].JudgmentStatus);
|
||||
}
|
||||
sw.WriteLine();
|
||||
sw.Close();
|
||||
}
|
||||
private void RemoveInspectionDataFile()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -37,7 +37,6 @@
|
|||
this.labelLotNo = new SmartX.SmartLabel();
|
||||
this.pictureBoxStop = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxStart = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxUSBBackOn = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBoxCommunicationStatus = new System.Windows.Forms.PictureBox();
|
||||
this.buttonUnder = new SmartX.SmartButton();
|
||||
this.buttonPass = new SmartX.SmartButton();
|
||||
|
|
@ -303,14 +302,6 @@
|
|||
this.pictureBoxStart.Size = new System.Drawing.Size(55, 55);
|
||||
this.pictureBoxStart.Click += new System.EventHandler(this.pictureBoxStart_Click);
|
||||
//
|
||||
// pictureBoxUSBBackOn
|
||||
//
|
||||
this.pictureBoxUSBBackOn.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxUSBBackOn.Image")));
|
||||
this.pictureBoxUSBBackOn.Location = new System.Drawing.Point(925, 41);
|
||||
this.pictureBoxUSBBackOn.Name = "pictureBoxUSBBackOn";
|
||||
this.pictureBoxUSBBackOn.Size = new System.Drawing.Size(27, 27);
|
||||
this.pictureBoxUSBBackOn.Visible = false;
|
||||
//
|
||||
// pictureBoxCommunicationStatus
|
||||
//
|
||||
this.pictureBoxCommunicationStatus.BackColor = System.Drawing.Color.Lime;
|
||||
|
|
@ -740,7 +731,7 @@
|
|||
this.groupBoxJudgmentSetting.Controls.Add(this.labelFilter);
|
||||
this.groupBoxJudgmentSetting.Controls.Add(this.labelStaticJudgmentDelayTime);
|
||||
this.groupBoxJudgmentSetting.Controls.Add(this.labelJudgmentCount);
|
||||
this.groupBoxJudgmentSetting.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxJudgmentSetting.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxJudgmentSetting.ForeColor = System.Drawing.Color.White;
|
||||
this.groupBoxJudgmentSetting.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxJudgmentSetting.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
|
|
@ -785,7 +776,7 @@
|
|||
this.labelStaticTurnDelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticTurnDelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticTurnDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticTurnDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticTurnDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticTurnDelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticTurnDelayTime.InitVisible = true;
|
||||
this.labelStaticTurnDelayTime.LineSpacing = 0F;
|
||||
|
|
@ -827,7 +818,7 @@
|
|||
this.labelStaticForcedZeroDelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticForcedZeroDelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticForcedZeroDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticForcedZeroDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticForcedZeroDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticForcedZeroDelayTime.ForeColor = System.Drawing.Color.WhiteSmoke;
|
||||
this.labelStaticForcedZeroDelayTime.InitVisible = true;
|
||||
this.labelStaticForcedZeroDelayTime.LineSpacing = 0F;
|
||||
|
|
@ -848,7 +839,7 @@
|
|||
this.labelStaticFilter.BackPictureBox2 = null;
|
||||
this.labelStaticFilter.BorderColor = System.Drawing.Color.SteelBlue;
|
||||
this.labelStaticFilter.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticFilter.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticFilter.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticFilter.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticFilter.InitVisible = true;
|
||||
this.labelStaticFilter.LineSpacing = 0F;
|
||||
|
|
@ -869,7 +860,7 @@
|
|||
this.labelStaticJudgmentCount.BackPictureBox2 = null;
|
||||
this.labelStaticJudgmentCount.BorderColor = System.Drawing.Color.SteelBlue;
|
||||
this.labelStaticJudgmentCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticJudgmentCount.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticJudgmentCount.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticJudgmentCount.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticJudgmentCount.InitVisible = true;
|
||||
this.labelStaticJudgmentCount.LineSpacing = 0F;
|
||||
|
|
@ -932,7 +923,7 @@
|
|||
this.labelStaticJudgmentDelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticJudgmentDelayTime.BorderColor = System.Drawing.Color.SteelBlue;
|
||||
this.labelStaticJudgmentDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticJudgmentDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticJudgmentDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticJudgmentDelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticJudgmentDelayTime.InitVisible = true;
|
||||
this.labelStaticJudgmentDelayTime.LineSpacing = 0F;
|
||||
|
|
@ -999,7 +990,7 @@
|
|||
//
|
||||
// buttonClose
|
||||
//
|
||||
this.buttonClose.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonClose.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.buttonClose.Location = new System.Drawing.Point(457, 450);
|
||||
this.buttonClose.Name = "buttonClose";
|
||||
this.buttonClose.Size = new System.Drawing.Size(100, 30);
|
||||
|
|
@ -1040,7 +1031,7 @@
|
|||
this.groupBoxSorter.Controls.Add(this.labelStaticSorter1DelayTime);
|
||||
this.groupBoxSorter.Controls.Add(this.labelSorter1RunTime);
|
||||
this.groupBoxSorter.Controls.Add(this.labelStaticSorter1RunTime);
|
||||
this.groupBoxSorter.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxSorter.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.groupBoxSorter.FrameLineColor1 = System.Drawing.Color.Black;
|
||||
this.groupBoxSorter.FrameLineColor2 = System.Drawing.Color.Black;
|
||||
this.groupBoxSorter.FrameLineThickness = 1;
|
||||
|
|
@ -1126,7 +1117,7 @@
|
|||
this.labelStaticDischargeStopperRunTime.BackPictureBox2 = null;
|
||||
this.labelStaticDischargeStopperRunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticDischargeStopperRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticDischargeStopperRunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticDischargeStopperRunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticDischargeStopperRunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticDischargeStopperRunTime.InitVisible = true;
|
||||
this.labelStaticDischargeStopperRunTime.LineSpacing = 0F;
|
||||
|
|
@ -1147,7 +1138,7 @@
|
|||
this.labelStaticDischargeStopperDelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticDischargeStopperDelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticDischargeStopperDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticDischargeStopperDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticDischargeStopperDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticDischargeStopperDelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticDischargeStopperDelayTime.InitVisible = true;
|
||||
this.labelStaticDischargeStopperDelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1168,7 +1159,7 @@
|
|||
this.labelStaticSorter4RunTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter4RunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter4RunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter4RunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter4RunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter4RunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter4RunTime.InitVisible = true;
|
||||
this.labelStaticSorter4RunTime.LineSpacing = 0F;
|
||||
|
|
@ -1189,7 +1180,7 @@
|
|||
this.labelStaticStopper2DelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticStopper2DelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticStopper2DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticStopper2DelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticStopper2DelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticStopper2DelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticStopper2DelayTime.InitVisible = true;
|
||||
this.labelStaticStopper2DelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1231,7 +1222,7 @@
|
|||
this.labelStaticSorter4DelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter4DelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter4DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter4DelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter4DelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter4DelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter4DelayTime.InitVisible = true;
|
||||
this.labelStaticSorter4DelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1252,7 +1243,7 @@
|
|||
this.labelStaticEntryGateRunTime.BackPictureBox2 = null;
|
||||
this.labelStaticEntryGateRunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticEntryGateRunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticEntryGateRunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticEntryGateRunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticEntryGateRunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticEntryGateRunTime.InitVisible = true;
|
||||
this.labelStaticEntryGateRunTime.LineSpacing = 0F;
|
||||
|
|
@ -1273,7 +1264,7 @@
|
|||
this.labelStaticEntryGateDelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticEntryGateDelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticEntryGateDelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticEntryGateDelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticEntryGateDelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticEntryGateDelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticEntryGateDelayTime.InitVisible = true;
|
||||
this.labelStaticEntryGateDelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1294,7 +1285,7 @@
|
|||
this.labelStaticStopper2RunTime.BackPictureBox2 = null;
|
||||
this.labelStaticStopper2RunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticStopper2RunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticStopper2RunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticStopper2RunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticStopper2RunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticStopper2RunTime.InitVisible = true;
|
||||
this.labelStaticStopper2RunTime.LineSpacing = 0F;
|
||||
|
|
@ -1420,7 +1411,7 @@
|
|||
this.labelStaticSorter3DelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter3DelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter3DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter3DelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter3DelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter3DelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter3DelayTime.InitVisible = true;
|
||||
this.labelStaticSorter3DelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1462,7 +1453,7 @@
|
|||
this.labelStaticSorter3RunTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter3RunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter3RunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter3RunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter3RunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter3RunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter3RunTime.InitVisible = true;
|
||||
this.labelStaticSorter3RunTime.LineSpacing = 0F;
|
||||
|
|
@ -1504,7 +1495,7 @@
|
|||
this.labelStaticSorter2DelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter2DelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter2DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter2DelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter2DelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter2DelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter2DelayTime.InitVisible = true;
|
||||
this.labelStaticSorter2DelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1546,7 +1537,7 @@
|
|||
this.labelStaticSorter2RunTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter2RunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter2RunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter2RunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter2RunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter2RunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter2RunTime.InitVisible = true;
|
||||
this.labelStaticSorter2RunTime.LineSpacing = 0F;
|
||||
|
|
@ -1588,7 +1579,7 @@
|
|||
this.labelStaticSorter1DelayTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter1DelayTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter1DelayTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter1DelayTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter1DelayTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter1DelayTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter1DelayTime.InitVisible = true;
|
||||
this.labelStaticSorter1DelayTime.LineSpacing = 0F;
|
||||
|
|
@ -1630,7 +1621,7 @@
|
|||
this.labelStaticSorter1RunTime.BackPictureBox2 = null;
|
||||
this.labelStaticSorter1RunTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSorter1RunTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSorter1RunTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter1RunTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSorter1RunTime.ForeColor = System.Drawing.Color.White;
|
||||
this.labelStaticSorter1RunTime.InitVisible = true;
|
||||
this.labelStaticSorter1RunTime.LineSpacing = 0F;
|
||||
|
|
@ -1694,7 +1685,7 @@
|
|||
//
|
||||
this.pictureBoxAlarm.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(151)))), ((int)(((byte)(150)))), ((int)(((byte)(151)))));
|
||||
this.pictureBoxAlarm.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxAlarm.Image")));
|
||||
this.pictureBoxAlarm.Location = new System.Drawing.Point(818, 18);
|
||||
this.pictureBoxAlarm.Location = new System.Drawing.Point(843, 18);
|
||||
this.pictureBoxAlarm.Name = "pictureBoxAlarm";
|
||||
this.pictureBoxAlarm.Size = new System.Drawing.Size(50, 50);
|
||||
this.pictureBoxAlarm.Visible = false;
|
||||
|
|
@ -1719,7 +1710,7 @@
|
|||
this.smartListBox1.ColumnAlign = SmartX.SmartListBox.COLUMNALIGNS.CENTER;
|
||||
this.smartListBox1.ColumnDelimiter = '\0';
|
||||
this.smartListBox1.ColumnOffsets = null;
|
||||
this.smartListBox1.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.smartListBox1.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.smartListBox1.FontColor = System.Drawing.Color.Black;
|
||||
this.smartListBox1.InitVisible = true;
|
||||
this.smartListBox1.ItemAddOrder = SmartX.SmartListBox.ITEMADDORDERS.BOTTOMADD;
|
||||
|
|
@ -1758,7 +1749,7 @@
|
|||
this.labelAlarm2ErrorCode.BackPictureBox2 = null;
|
||||
this.labelAlarm2ErrorCode.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelAlarm2ErrorCode.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelAlarm2ErrorCode.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelAlarm2ErrorCode.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelAlarm2ErrorCode.InitVisible = true;
|
||||
this.labelAlarm2ErrorCode.LineSpacing = 0F;
|
||||
this.labelAlarm2ErrorCode.Location = new System.Drawing.Point(11, 4);
|
||||
|
|
@ -1828,7 +1819,7 @@
|
|||
this.labelTitleScreen.BackPictureBox2 = null;
|
||||
this.labelTitleScreen.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleScreen.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleScreen.Font = new System.Drawing.Font("새굴림", 15F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleScreen.Font = new System.Drawing.Font("New Gulim", 15F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleScreen.InitVisible = true;
|
||||
this.labelTitleScreen.LineSpacing = 0F;
|
||||
this.labelTitleScreen.Location = new System.Drawing.Point(661, 583);
|
||||
|
|
@ -1847,7 +1838,7 @@
|
|||
this.labelTitleNG.BackPictureBox2 = null;
|
||||
this.labelTitleNG.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleNG.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleNG.Font = new System.Drawing.Font("새굴림", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleNG.Font = new System.Drawing.Font("New Gulim", 18F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleNG.InitVisible = true;
|
||||
this.labelTitleNG.LineSpacing = 0F;
|
||||
this.labelTitleNG.Location = new System.Drawing.Point(307, 704);
|
||||
|
|
@ -1866,7 +1857,7 @@
|
|||
this.labelTitleTotalCount.BackPictureBox2 = null;
|
||||
this.labelTitleTotalCount.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleTotalCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleTotalCount.Font = new System.Drawing.Font("새굴림", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleTotalCount.Font = new System.Drawing.Font("New Gulim", 20F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleTotalCount.InitVisible = true;
|
||||
this.labelTitleTotalCount.LineSpacing = 0F;
|
||||
this.labelTitleTotalCount.Location = new System.Drawing.Point(25, 704);
|
||||
|
|
@ -1967,7 +1958,7 @@
|
|||
this.labelTitleSampling.BackPictureBox2 = null;
|
||||
this.labelTitleSampling.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleSampling.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleSampling.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSampling.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleSampling.InitVisible = true;
|
||||
this.labelTitleSampling.LineSpacing = 0F;
|
||||
this.labelTitleSampling.Location = new System.Drawing.Point(238, 8);
|
||||
|
|
@ -1994,7 +1985,7 @@
|
|||
this.labelStaticSamplingCount.BackPictureBox2 = null;
|
||||
this.labelStaticSamplingCount.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSamplingCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSamplingCount.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSamplingCount.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSamplingCount.InitVisible = true;
|
||||
this.labelStaticSamplingCount.LineSpacing = 0F;
|
||||
this.labelStaticSamplingCount.Location = new System.Drawing.Point(238, 78);
|
||||
|
|
@ -2014,7 +2005,7 @@
|
|||
this.labelStaticSamplingTime.BackPictureBox2 = null;
|
||||
this.labelStaticSamplingTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticSamplingTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticSamplingTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSamplingTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticSamplingTime.InitVisible = true;
|
||||
this.labelStaticSamplingTime.LineSpacing = 0F;
|
||||
this.labelStaticSamplingTime.Location = new System.Drawing.Point(238, 44);
|
||||
|
|
@ -2168,7 +2159,7 @@
|
|||
this.labelTitleBypass.BackPictureBox2 = null;
|
||||
this.labelTitleBypass.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleBypass.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleBypass.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleBypass.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleBypass.InitVisible = true;
|
||||
this.labelTitleBypass.LineSpacing = 0F;
|
||||
this.labelTitleBypass.Location = new System.Drawing.Point(35, 8);
|
||||
|
|
@ -2384,7 +2375,7 @@
|
|||
this.labelMessage4.BackPictureBox2 = null;
|
||||
this.labelMessage4.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage4.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage4.InitVisible = true;
|
||||
this.labelMessage4.LineSpacing = 0F;
|
||||
this.labelMessage4.Location = new System.Drawing.Point(75, 79);
|
||||
|
|
@ -2403,7 +2394,7 @@
|
|||
this.labelMessage3.BackPictureBox2 = null;
|
||||
this.labelMessage3.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage3.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage3.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage3.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage3.InitVisible = true;
|
||||
this.labelMessage3.LineSpacing = 0F;
|
||||
this.labelMessage3.Location = new System.Drawing.Point(75, 56);
|
||||
|
|
@ -2422,7 +2413,7 @@
|
|||
this.smartLabel4.BackPictureBox2 = null;
|
||||
this.smartLabel4.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel4.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel4.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.smartLabel4.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.smartLabel4.InitVisible = true;
|
||||
this.smartLabel4.LineSpacing = 0F;
|
||||
this.smartLabel4.Location = new System.Drawing.Point(11, 4);
|
||||
|
|
@ -2498,7 +2489,7 @@
|
|||
this.labelStaticOverRangeLimit.BackPictureBox2 = null;
|
||||
this.labelStaticOverRangeLimit.BorderColor = System.Drawing.Color.SteelBlue;
|
||||
this.labelStaticOverRangeLimit.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticOverRangeLimit.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticOverRangeLimit.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticOverRangeLimit.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelStaticOverRangeLimit.InitVisible = true;
|
||||
this.labelStaticOverRangeLimit.LineSpacing = 0F;
|
||||
|
|
@ -2568,7 +2559,7 @@
|
|||
this.labelStaticUnderRangeLimit.BackPictureBox2 = null;
|
||||
this.labelStaticUnderRangeLimit.BorderColor = System.Drawing.Color.SteelBlue;
|
||||
this.labelStaticUnderRangeLimit.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticUnderRangeLimit.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticUnderRangeLimit.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticUnderRangeLimit.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelStaticUnderRangeLimit.InitVisible = true;
|
||||
this.labelStaticUnderRangeLimit.LineSpacing = 0F;
|
||||
|
|
@ -2589,7 +2580,7 @@
|
|||
this.labelStaticOverRange.BackPictureBox2 = null;
|
||||
this.labelStaticOverRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticOverRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticOverRange.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticOverRange.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticOverRange.InitVisible = true;
|
||||
this.labelStaticOverRange.LineSpacing = 0F;
|
||||
this.labelStaticOverRange.Location = new System.Drawing.Point(64, 10);
|
||||
|
|
@ -2630,7 +2621,7 @@
|
|||
this.labelStaticUnderRange.BackPictureBox2 = null;
|
||||
this.labelStaticUnderRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticUnderRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticUnderRange.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticUnderRange.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticUnderRange.InitVisible = true;
|
||||
this.labelStaticUnderRange.LineSpacing = 0F;
|
||||
this.labelStaticUnderRange.Location = new System.Drawing.Point(64, 78);
|
||||
|
|
@ -2650,7 +2641,7 @@
|
|||
this.labelStaticPassRange.BackPictureBox2 = null;
|
||||
this.labelStaticPassRange.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticPassRange.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticPassRange.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticPassRange.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticPassRange.InitVisible = true;
|
||||
this.labelStaticPassRange.LineSpacing = 0F;
|
||||
this.labelStaticPassRange.Location = new System.Drawing.Point(64, 44);
|
||||
|
|
@ -2731,7 +2722,7 @@
|
|||
this.labelMessage5.BackPictureBox2 = null;
|
||||
this.labelMessage5.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelMessage5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelMessage5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.labelMessage5.InitVisible = true;
|
||||
this.labelMessage5.LineSpacing = 0F;
|
||||
this.labelMessage5.Location = new System.Drawing.Point(75, 62);
|
||||
|
|
@ -2750,7 +2741,7 @@
|
|||
this.smartLabel5.BackPictureBox2 = null;
|
||||
this.smartLabel5.BorderColor = System.Drawing.Color.Black;
|
||||
this.smartLabel5.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.smartLabel5.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.smartLabel5.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Regular);
|
||||
this.smartLabel5.InitVisible = true;
|
||||
this.smartLabel5.LineSpacing = 0F;
|
||||
this.smartLabel5.Location = new System.Drawing.Point(11, 4);
|
||||
|
|
@ -2851,7 +2842,7 @@
|
|||
this.labelTitleLeakSampling.BackPictureBox2 = null;
|
||||
this.labelTitleLeakSampling.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelTitleLeakSampling.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelTitleLeakSampling.Font = new System.Drawing.Font("새굴림", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleLeakSampling.Font = new System.Drawing.Font("New Gulim", 11F, System.Drawing.FontStyle.Bold);
|
||||
this.labelTitleLeakSampling.InitVisible = true;
|
||||
this.labelTitleLeakSampling.LineSpacing = 0F;
|
||||
this.labelTitleLeakSampling.Location = new System.Drawing.Point(35, 12);
|
||||
|
|
@ -2878,7 +2869,7 @@
|
|||
this.labelStaticLeakSamplingTime.BackPictureBox2 = null;
|
||||
this.labelStaticLeakSamplingTime.BorderColor = System.Drawing.Color.Black;
|
||||
this.labelStaticLeakSamplingTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelStaticLeakSamplingTime.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticLeakSamplingTime.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelStaticLeakSamplingTime.InitVisible = true;
|
||||
this.labelStaticLeakSamplingTime.LineSpacing = 0F;
|
||||
this.labelStaticLeakSamplingTime.Location = new System.Drawing.Point(35, 61);
|
||||
|
|
@ -2959,7 +2950,7 @@
|
|||
this.labelExpireOfPassword.BackPictureBox2 = null;
|
||||
this.labelExpireOfPassword.BorderColor = System.Drawing.Color.LightGray;
|
||||
this.labelExpireOfPassword.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelExpireOfPassword.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelExpireOfPassword.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelExpireOfPassword.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelExpireOfPassword.InitVisible = true;
|
||||
this.labelExpireOfPassword.LineSpacing = 0F;
|
||||
|
|
@ -2981,7 +2972,7 @@
|
|||
this.labelUserID.BackPictureBox2 = null;
|
||||
this.labelUserID.BorderColor = System.Drawing.Color.LightGray;
|
||||
this.labelUserID.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelUserID.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelUserID.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelUserID.InitVisible = true;
|
||||
this.labelUserID.LineSpacing = 0F;
|
||||
this.labelUserID.Location = new System.Drawing.Point(661, 9);
|
||||
|
|
@ -3001,7 +2992,7 @@
|
|||
this.labelUserLevel.BackPictureBox2 = null;
|
||||
this.labelUserLevel.BorderColor = System.Drawing.Color.LightGray;
|
||||
this.labelUserLevel.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.labelUserLevel.Font = new System.Drawing.Font("새굴림", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelUserLevel.Font = new System.Drawing.Font("New Gulim", 10F, System.Drawing.FontStyle.Bold);
|
||||
this.labelUserLevel.ForeColor = System.Drawing.Color.Black;
|
||||
this.labelUserLevel.InitVisible = true;
|
||||
this.labelUserLevel.LineSpacing = 0F;
|
||||
|
|
@ -3017,7 +3008,7 @@
|
|||
// pictureBoxEthernetDisconnection
|
||||
//
|
||||
this.pictureBoxEthernetDisconnection.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxEthernetDisconnection.Image")));
|
||||
this.pictureBoxEthernetDisconnection.Location = new System.Drawing.Point(869, 41);
|
||||
this.pictureBoxEthernetDisconnection.Location = new System.Drawing.Point(925, 41);
|
||||
this.pictureBoxEthernetDisconnection.Name = "pictureBoxEthernetDisconnection";
|
||||
this.pictureBoxEthernetDisconnection.Size = new System.Drawing.Size(27, 27);
|
||||
this.pictureBoxEthernetDisconnection.Visible = false;
|
||||
|
|
@ -3025,7 +3016,7 @@
|
|||
// pictureBoxEthernetConnection
|
||||
//
|
||||
this.pictureBoxEthernetConnection.Image = ((System.Drawing.Image)(resources.GetObject("pictureBoxEthernetConnection.Image")));
|
||||
this.pictureBoxEthernetConnection.Location = new System.Drawing.Point(869, 41);
|
||||
this.pictureBoxEthernetConnection.Location = new System.Drawing.Point(925, 41);
|
||||
this.pictureBoxEthernetConnection.Name = "pictureBoxEthernetConnection";
|
||||
this.pictureBoxEthernetConnection.Size = new System.Drawing.Size(27, 27);
|
||||
this.pictureBoxEthernetConnection.Visible = false;
|
||||
|
|
@ -3114,7 +3105,6 @@
|
|||
this.Controls.Add(this.pictureBoxCommunicationStatus);
|
||||
this.Controls.Add(this.pictureBoxBypass);
|
||||
this.Controls.Add(this.pictureBoxCH3);
|
||||
this.Controls.Add(this.pictureBoxUSBBackOn);
|
||||
this.Controls.Add(this.pictureBoxStop);
|
||||
this.Controls.Add(this.pictureBoxStart);
|
||||
this.Controls.Add(this.labelTime);
|
||||
|
|
@ -3145,7 +3135,6 @@
|
|||
private SmartX.SmartLabel labelProductName;
|
||||
private SmartX.SmartLabel labelTime;
|
||||
private SmartX.SmartLabel labelLotNo;
|
||||
private System.Windows.Forms.PictureBox pictureBoxUSBBackOn;
|
||||
private SmartX.SmartButton buttonUnder;
|
||||
private SmartX.SmartButton buttonPass;
|
||||
private SmartX.SmartButton buttonOver;
|
||||
|
|
|
|||
|
|
@ -641,7 +641,6 @@ namespace INT63DC_2C.Forms
|
|||
this.MainDisplayAlarmList.Visible = false;
|
||||
|
||||
// ICON
|
||||
this.pictureBoxUSBBackOn.Visible = this.ParentForm.SystemConfig.IsDataBackup;
|
||||
this.pictureBoxBypass.Visible = this.ParentForm.SystemConfig.IsBypassMode;
|
||||
|
||||
if (this.ParentForm.SystemConfig.Serial3Mode != 0)
|
||||
|
|
@ -2866,7 +2865,6 @@ namespace INT63DC_2C.Forms
|
|||
if (this.ParentForm.EquipmentStatus == DataStore.EquipmentStatus.Stop)
|
||||
this.ProductChange(this.ParentForm.SystemConfig.ProductNumber);
|
||||
|
||||
this.pictureBoxUSBBackOn.Visible = this.ParentForm.SystemConfig.IsDataBackup;
|
||||
this.pictureBoxBypass.Visible = this.ParentForm.SystemConfig.IsBypassMode;
|
||||
|
||||
if (this.ParentForm.SystemConfig.Serial3Mode != 0)
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -237,14 +237,12 @@ namespace INT63DC_2C.Forms
|
|||
this.ParentForm.SystemConfig.IsPart11 = true;
|
||||
this.ParentForm.SystemConfig.IsOptDataStatistics = true;
|
||||
this.ParentForm.SystemConfig.IsLogin = true;
|
||||
this.ParentForm.SystemConfig.IsDataBackup = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
this.ParentForm.SystemConfig.IsPart11 = false;
|
||||
this.ParentForm.SystemConfig.IsOptDataStatistics = false;
|
||||
this.ParentForm.SystemConfig.IsLogin = false;
|
||||
this.ParentForm.SystemConfig.IsDataBackup = false;
|
||||
|
||||
// Delete user list
|
||||
UserManager.UserManager_UserAllDel();
|
||||
|
|
|
|||
|
|
@ -507,7 +507,6 @@ namespace INT63DC_2C.Forms
|
|||
this.ParentForm.SystemConfig.IsPart11 = false;
|
||||
this.ParentForm.SystemConfig.IsLogin = false;
|
||||
this.ParentForm.SystemConfig.IsOptDataStatistics = false;
|
||||
this.ParentForm.SystemConfig.IsDataBackup = false;
|
||||
|
||||
if (this.ParentForm.SystemConfig.StoragePeriod > 12)
|
||||
this.ParentForm.SystemConfig.StoragePeriod = 12;
|
||||
|
|
@ -530,7 +529,6 @@ namespace INT63DC_2C.Forms
|
|||
this.ParentForm.SystemConfig.IsLogin = true;
|
||||
this.ParentForm.SystemConfig.IsPart11 = true;
|
||||
this.ParentForm.SystemConfig.IsOptDataStatistics = true;
|
||||
this.ParentForm.SystemConfig.IsDataBackup = true;
|
||||
|
||||
if (this.ParentForm.SystemConfig.StoragePeriod <= 12)
|
||||
this.ParentForm.SystemConfig.StoragePeriod = 24;
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue