private void button1_Click(object sender, EventArgs e) { String strSql = "Select*from CadastroAdm where login_adm='" + txtlogin.Text + "' and senha_adm ='" + txtsenha.Text + "'"; objCmd.Connection = objCnx; objCmd.CommandText = strSql; //objL ira ler a linha e xecutar o comando de leitura que é executaReader// objL = objCmd.ExecuteReader(); //se ele não encontro ele vai me dar amensagem de erro// if (!objL.HasRows) { MessageBox.Show("Login e seha incorretos!", "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error); this.Visible = false; this.Hide(); TelaAdm tela1 = new TelaAdm(); tela1.ShowDialog(); } else { MessageBox.Show("Login e seha corretos!", "Logado no sistema", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Visible = false; this.Hide(); TelaSplash tela1 = new TelaSplash(); tela1.ShowDialog(); } }
private void button1_Click(object sender, EventArgs e) { this.Visible = false; this.Hide(); TelaAdm tela = new TelaAdm(); tela.ShowDialog(); }