-2
I am programming a button that checks if the login is existing and advances to another screen but appears the following error:
"no Overload for 'btnEntrar_Click' Matches delegate 'Eventhandler'"
private void btnEntrar_Click(object sender, EventArgs e, String login, String senha)
{
Cadastrar cad = new Cadastrar();
cad.Acessar(txtLogin.Text, txtSenha.Text);
if (cad.tem)
{
string nomeusu;
MessageBox.Show("Logado com sucesso","Entrando",MessageBoxButtons.OK,MessageBoxIcon.Information);
pnlCadMat.Visible = true;
cmd.CommandText = "SELECT nome_estudantes FROM Estudantes WHERE @login = email_estudantes AND @senha = senha_estudantes";
nomeusuario = cmd.ExecuteReader();
nomeusu = Convert.ToString(nomeusuario);
cadh.lblNomeUsuario.Text = nomeusu;
}
else
{
MessageBox.Show("LOGIN NAO ENCONTRADO", "ERRO", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}