- (버그수정) 로그인 미사용 시, Submenu - 선별기설정 지연시간/동작시간 변경 안되는 버그 수정

- (버그수정) 초기 Log 파일 생성 추가
 - (버그수정) 소거 시 메인화면 갱신 안되는 버그 수정
master V3.3.2
DESKTOP-999R8N3\CJY 2024-03-26 16:44:12 +09:00
parent 170202d17a
commit 59cfc5895d
7 changed files with 10 additions and 4 deletions

View File

@ -278,7 +278,7 @@ namespace ITC81DB_0H.Controls
this.groupBoxSorter.Enabled = true;
break;
default:
this.groupBoxSorter.Enabled = false;
this.groupBoxSorter.Enabled = true;
break;
}
}

View File

@ -33,8 +33,8 @@ namespace ITC81DB_0H.Controls
this.ParentForm = parent;
this.InitializeDesign();
this.DefaultSetting();
this.InitializeDesign();
}
#endregion

View File

@ -26,7 +26,7 @@ namespace ITC81DB_0H.Forms
{
#region Field
public static string DisplayVersion = "3.3.2";
public static string ReleaseDate = "2024.02.22";
public static string ReleaseDate = "2024.03.06";
private SmartSplash SmartSplashProgramLoad;
public bool IsCommunicationLogOpen;
@ -570,6 +570,10 @@ namespace ITC81DB_0H.Forms
// Others 폴더 생성
if (Directory.Exists(this.PathDataOthersFolder) == false)
Directory.CreateDirectory(this.PathDataOthersFolder);
// Log 폴더 생성
if (Directory.Exists(this.PathDataLogFolder) == false)
Directory.CreateDirectory(this.PathDataLogFolder);
}
private void DefaultSetting2()
{

View File

@ -21,8 +21,10 @@
2. 운전 시 Disconnect 되었을 경우, Timer를 통해 Connect 시도
- Modbus
Modbus 업데이트 화면 변경(label 색상 검정)
소거 시 메인화면 갱신 안되는 버그 수정
(버그수정) 소거 시 메인화면 갱신 안되는 버그 수정
- 시리얼통신/이더넷통신 진입 시 Addon 화면 Off된 상태로 진입하도록 변경
- (버그수정) 로그인 미사용 시, Submenu - 선별기설정 지연시간/동작시간 변경 안되는 버그 수정
- (버그수정) 초기 Log 파일 생성 추가
@ Ver 3.3.1 by CJY
- 2024.02.07

Binary file not shown.