From 933519164e096b9505e1736c5580dc1d37bdb88a Mon Sep 17 00:00:00 2001 From: T001084 Date: Wed, 5 Mar 2025 12:59:00 +0900 Subject: [PATCH] EISLog OpenWindow --- DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs b/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs index 51da569..62afdce 100644 --- a/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs +++ b/DDUtilityApp/LOGPARSER/PARSER/EisParser0.cs @@ -381,7 +381,7 @@ namespace DDUtilityApp.LOGPARSER.PARSER dlg.Size = sender.Size; dlg.StartPosition = FormStartPosition.CenterParent; dlg.ServerName = this.ServerName; - dlg.Equipment = sender.Equipment; + dlg.Equipment = sender.Equipment == null ? new EisEquipment() { EquipmentID = this.EquipmentID, Server = new LogServer(this.ServerName)} : sender.Equipment; dlg.SelectedLogFiles = logFiles.ToArray(); DialogResult dlgResult = dlg.ShowDialog(); if (dlgResult != DialogResult.OK) return null;