private void btnPrestamo_Click(object sender, EventArgs e) { lblError.Text = ""; clsPrestamo objPrestamo = new clsPrestamo(); objPrestamo.CodigoLibro = txtCodLibro.Text; objPrestamo.DocumentoEstudiante = txtDocEstudiante.Text; if (objPrestamo.PrestarLibro()) { if (objPrestamo.Error.Equals("0")) { lblError.Text = "El libro no esta disponible."; } else if (objPrestamo.Error.Equals("1")) { lblError.Text = "Préstamo registrado exitosamente."; } else if (objPrestamo.Error.Equals("2")) { Form.ActiveForm.Visible = false; frmEstudiante frmEstudiante = new frmEstudiante(); frmEstudiante.Show(); } } txtCodLibro.Clear(); txtDocEstudiante.Clear(); objPrestamo = null; //objPrestamo.cargarPrestamos(GridViewPrestamos); }
private void btnEstudiante_Click(object sender, EventArgs e) { Form.ActiveForm.Visible = false; Formularios.frmEstudiante frmEstudiante = new Formularios.frmEstudiante(); frmEstudiante.Show(); }