private void mbtnDevolverLibro_Click(object sender, EventArgs e)
        {
            try
            {
                DataGridViewRow renglon = dgwListaPrestamos.SelectedRows[0];
                int NoControl = (int)renglon.Cells[0].Value;
                string Titulo = (string)renglon.Cells[1].Value;
                int prestamoID = (int)renglon.Cells[4].Value;
                string idEjemplar = (string)renglon.Cells[3].Value;
                DateTime dtFechaEbtrega = (DateTime)renglon.Cells[6].Value;
                DateTime dtFechaDePrestamo = (DateTime)renglon.Cells[5].Value;
                string strISBN = (string)renglon.Cells[2].Value;


                // int intIdEjemplar = (int)renglon.Cells[2].Value;
                Nuevo_Prestamo v = new Nuevo_Prestamo(NoControl, Titulo, prestamoID, this, idEjemplar, dtFechaEbtrega, dtFechaDePrestamo, strISBN);
                v.ShowDialog(this);
                ActualizarVentana();
            }
            catch { MessageBox.Show("Porfavor Seleccione Una Opcion", "Error De Seleccion", MessageBoxButtons.OK, MessageBoxIcon.Information); }
        }
 private void realizarPrestamoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Nuevo_Prestamo v = new Nuevo_Prestamo();
     v.ShowDialog();
   
 }