HSMS 로그파일 갱신오류

This commit is contained in:
2025-03-17 10:52:33 +09:00
parent c3e6aad895
commit 4f59f1ab2f
4 changed files with 7 additions and 7 deletions

View File

@@ -218,7 +218,7 @@ namespace DDUtilityApp.LOGPARSER
{
if (this.tabControl1.SelectedTab == this.tabHSMS)
{
if (this.gridHsms.DataSource == null) return;
if (this.gridHsms.DataSource != null) return;
string remotePath = $"/{this.Account.DefaultPath}/{this.Equipment.EquipmentID}/THiRA_SECSGEM/HSMS";
switch (this.Account.Access)
@@ -911,7 +911,7 @@ namespace DDUtilityApp.LOGPARSER
}
}
MessageBox.Show($"{grid.SelectedRows.Count}개의 파일을 저장하였습니다.");
//MessageBox.Show($"{grid.SelectedRows.Count}개의 파일을 저장하였습니다.");
foreach (string file in downfiles)
System.Diagnostics.Process.Start(file);
}