protected override void OnCreateMainForm() { MainForm = SEBClientInfo.SebWindowsClientForm; string[] arguments = Environment.GetCommandLineArgs(); // Logger.AddInformation("KeyKitePassword: "******"REDACTED") { Logger.AddInformation("returning false, not correct config file."); // return; } if (arguments.Count() == 1) { var splashThread = new Thread(SebWindowsClientMain.StartSplash); splashThread.Start(); try { SebWindowsClientMain.InitSEBDesktop(); } catch (Exception ex) { Logger.AddError("Unable to InitSEBDesktop", null, ex); } if (!SEBClientInfo.SebWindowsClientForm.OpenSEBForm()) { Logger.AddError("Unable to OpenSEBForm", null, null); } SebWindowsClientMain.CloseSplash(); } }
protected override void OnCreateMainForm() { MainForm = SEBClientInfo.SebWindowsClientForm; string[] arguments = Environment.GetCommandLineArgs(); if (arguments.Count() == 1) { var splashThread = new Thread(SebWindowsClientMain.StartSplash); splashThread.Start(); try { SebWindowsClientMain.InitSEBDesktop(); } catch (Exception ex) { Logger.AddError("Unable to InitSEBDesktop", null, ex); } if (!SEBClientInfo.SebWindowsClientForm.OpenSEBForm()) { Logger.AddError("Unable to OpenSEBForm", null, null); } SebWindowsClientMain.CloseSplash(); } }