public Form1(string[] args) { if (args.Length == 0) { if (SenhaForm() != Config.Senha) { Environment.Exit(1); } else { SenhaCorreta = true; } } else { if (args.Length == 1 && args[0] == Config.Senha) { SenhaCorreta = true; } else { SenhaCorreta = false; } } if (!SenhaCorreta) { Environment.Exit(1); } InitializeComponent(); ap = new Gerenciador(); Atualizar(); }
public Form1(string[] args) { if (args.Length < 2 || args[1] != Config.Senha) { if (Interaction.InputBox("Digite a senha: ", "REQUIRIDO") != Config.Senha) { Environment.Exit(1); } else { SenhaCorreta = true; } } else { SenhaCorreta = true; } if (!SenhaCorreta) { Environment.Exit(1); } InitializeComponent(); ap = new Gerenciador(); Atualizar(); }