- (버그수정) 로그인 미사용 시, Submenu - 선별기설정 지연시간/동작시간 변경 안되는 버그 수정
- (버그수정) 초기 Log 파일 생성 추가 - (버그수정) 소거 시 메인화면 갱신 안되는 버그 수정master V3.3.2
parent
170202d17a
commit
59cfc5895d
|
@ -278,7 +278,7 @@ namespace ITC81DB_0H.Controls
|
||||||
this.groupBoxSorter.Enabled = true;
|
this.groupBoxSorter.Enabled = true;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
this.groupBoxSorter.Enabled = false;
|
this.groupBoxSorter.Enabled = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,8 +33,8 @@ namespace ITC81DB_0H.Controls
|
||||||
|
|
||||||
this.ParentForm = parent;
|
this.ParentForm = parent;
|
||||||
|
|
||||||
this.InitializeDesign();
|
|
||||||
this.DefaultSetting();
|
this.DefaultSetting();
|
||||||
|
this.InitializeDesign();
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ namespace ITC81DB_0H.Forms
|
||||||
{
|
{
|
||||||
#region Field
|
#region Field
|
||||||
public static string DisplayVersion = "3.3.2";
|
public static string DisplayVersion = "3.3.2";
|
||||||
public static string ReleaseDate = "2024.02.22";
|
public static string ReleaseDate = "2024.03.06";
|
||||||
|
|
||||||
private SmartSplash SmartSplashProgramLoad;
|
private SmartSplash SmartSplashProgramLoad;
|
||||||
public bool IsCommunicationLogOpen;
|
public bool IsCommunicationLogOpen;
|
||||||
|
@ -570,6 +570,10 @@ namespace ITC81DB_0H.Forms
|
||||||
// Others 폴더 생성
|
// Others 폴더 생성
|
||||||
if (Directory.Exists(this.PathDataOthersFolder) == false)
|
if (Directory.Exists(this.PathDataOthersFolder) == false)
|
||||||
Directory.CreateDirectory(this.PathDataOthersFolder);
|
Directory.CreateDirectory(this.PathDataOthersFolder);
|
||||||
|
|
||||||
|
// Log 폴더 생성
|
||||||
|
if (Directory.Exists(this.PathDataLogFolder) == false)
|
||||||
|
Directory.CreateDirectory(this.PathDataLogFolder);
|
||||||
}
|
}
|
||||||
private void DefaultSetting2()
|
private void DefaultSetting2()
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,8 +21,10 @@
|
||||||
2. 운전 시 Disconnect 되었을 경우, Timer를 통해 Connect 시도
|
2. 운전 시 Disconnect 되었을 경우, Timer를 통해 Connect 시도
|
||||||
- Modbus
|
- Modbus
|
||||||
Modbus 업데이트 화면 변경(label 색상 검정)
|
Modbus 업데이트 화면 변경(label 색상 검정)
|
||||||
소거 시 메인화면 갱신 안되는 버그 수정
|
(버그수정) 소거 시 메인화면 갱신 안되는 버그 수정
|
||||||
- 시리얼통신/이더넷통신 진입 시 Addon 화면 Off된 상태로 진입하도록 변경
|
- 시리얼통신/이더넷통신 진입 시 Addon 화면 Off된 상태로 진입하도록 변경
|
||||||
|
- (버그수정) 로그인 미사용 시, Submenu - 선별기설정 지연시간/동작시간 변경 안되는 버그 수정
|
||||||
|
- (버그수정) 초기 Log 파일 생성 추가
|
||||||
|
|
||||||
@ Ver 3.3.1 by CJY
|
@ Ver 3.3.1 by CJY
|
||||||
- 2024.02.07
|
- 2024.02.07
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue