private void btnEntrar_Click(object sender, EventArgs e) { ClassConexao.Conectando(); ClassConexao.StrConexao = "select Usuario,Senha from dbo.Login where Usuario='" + txtUsuario.Text + "' and Senha='" + txtSenha.Text + "'"; ClassConexao.Verificando(); if (ClassConexao.Table.Rows.Count == 0) { MessageBox.Show("Não foi possiver se conectar com o sistema!"); txtUsuario.Focus(); } else { FrmMenu Menu = new FrmMenu(); Menu.Show(); this.Hide(); } }