private void ToolStripButton1_Click(object sender, EventArgs e) { this.Hide(); var myForm = new Controle_operacional(); myForm.Show(); }
private void Button1_Click(object sender, EventArgs e) { if (textBox1.Text == "Alex" && textBox2.Text == "1234") { this.Hide(); MessageBox.Show("Bem Vindo ao Sistema!"); var myForm = new Controle_operacional(); myForm.Show(); } else { MessageBox.Show("Usúario ou Senha inválidos!"); } }