private void CommandLineParametersToolStripMenuItem_Click(object sender, EventArgs e) { CommandLineParametersForm form = new CommandLineParametersForm(); form.Initialize(); form.ShowDialog(); }
private static void WriteCommandSyntax() { ConfigHandler.LoadConfig(); CommandLineParametersForm form = new CommandLineParametersForm(); form.SetCommandSyntaxOptions(); form.ShowDialog(); }
private static void WriteCommandSyntax() { ConfigHandler.LoadConfig(); Translator.GenerateDictionary(); CommandLineParametersForm form = new CommandLineParametersForm(); form.Initialize(); form.SetCommandSyntaxOptions(); if (GenericHelper.IsUserInteractive()) { form.ShowDialog(); } OutputHandler.WriteToLog("Wrong unattended Parameters."); }