Ver.2025.03.18.2

This commit is contained in:
2025-03-18 11:43:59 +09:00
parent 1ee9e948d9
commit f57a9ae1ff
3 changed files with 10 additions and 5 deletions

View File

@@ -30,6 +30,7 @@ namespace DDUtilityApp
Application.SetCompatibleTextRenderingDefault(false);
Form frm = null;
bool isShowServerLodDownload = false;
if (args.Length > 0)
{
@@ -56,6 +57,10 @@ namespace DDUtilityApp
}
frm = frmFDCMongo;
}
if (string.Compare(args[0], "daeduck!1") == 0)
{
isShowServerLodDownload = true;
}
}
if (frm == null)
@@ -71,7 +76,7 @@ namespace DDUtilityApp
#region [ ]
frmMain.Buttons.Add("EIS Log Viewer", new EisParser0());
//frmMain.Buttons.Add("MES Log Download", typeof(MESDOWNLOADER.ServerLog));
frmMain.Buttons.Add("ServerLog Download", typeof(MESDOWNLOADER.FrmServerLog));
if (isShowServerLodDownload) frmMain.Buttons.Add("ServerLog Download", typeof(MESDOWNLOADER.FrmServerLog));
//frmMain.Buttons.Add("MIS Log Viewer", new AgvParser()); // 제거
frmMain.Buttons.Add("FDC Mongo Viewer", typeof(MONGO.FrmFDCMongo));
frmMain.Buttons.Add("HSMS Converter", typeof(LOGPARSER.FrmHsmsViewer));