private void pu_AbrirPrestamos()
        {
            try
            {
                ro_prestamo_Info cab    = new ro_prestamo_Info();
                ro_periodo_Info  period = new ro_periodo_Info();

                if (period != null)
                {
                    cab.IdEmpleado = Info.IdEmpleado;
                }
                cab.IdNomina_Tipo = _idNominaTipo;


                frmRo_Prestamos frmPrestamo = new frmRo_Prestamos();
                frmPrestamo = new frmRo_Prestamos(Cl_Enumeradores.eTipo_action.grabar);
                frmPrestamo.setCabPrestamo(cab);

                frmPrestamo.ShowDialog();

                //btnRefresh_Click(sender, e);

                //setInfo();

                //this.CargaEmpSalNeg();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
                Log_Error_bus.Log_Error(ex.ToString());
            }
        }