private void btnNuevo_Click(object sender, EventArgs e)
 {
     try
     {
         frmNuevaCompraMobiliario NCompra = new frmNuevaCompraMobiliario();
         this.Visible = false;
         NCompra.ShowDialog();
         NCompra.Dispose();
         this.Visible = true;
         if (NCompra.DialogResult == DialogResult.OK)
         {
             if (Busqueda)
             {
                 this.ComprasPendientes = false;
                 this.CargarComprasPendientesBusq(this.DatosBusq);
             }
             else
             {
                 this.ComprasPendientes = false;
                 this.CargarComprasPendientes();
             }
         }
     }
     catch (Exception ex)
     {
         this.Visible = true;
         LogError.AddExcFileTxt(ex, "frmCompras ~ btnNuevo_Click");
         MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
 private void btnModificar_Click(object sender, EventArgs e)
 {
     try
     {
         Compra DatosAux = this.ObtenerDatosGrid();
         if (!string.IsNullOrEmpty(DatosAux.IDCompra))
         {
             if (DatosAux.IDEstatusCompra == 1)
             {
                 frmNuevaCompraMobiliario NCompra = new frmNuevaCompraMobiliario(DatosAux.IDCompra);
                 this.Visible = false;
                 NCompra.ShowDialog();
                 NCompra.Dispose();
                 this.Visible = true;
                 if (NCompra.DialogResult == DialogResult.OK)
                 {
                     if (Busqueda)
                     {
                         this.ComprasPendientes = false;
                         this.CargarComprasPendientesBusq(this.DatosBusq);
                     }
                     else
                     {
                         this.ComprasPendientes = false;
                         this.CargarComprasPendientes();
                     }
                 }
             }
             else
             {
                 MessageBox.Show("La compra debe estar en estatus Creada.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Information);
             }
         }
         else
         {
             MessageBox.Show("Seleccione un registro.", Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
     }
     catch (Exception ex)
     {
         this.Visible = true;
         LogError.AddExcFileTxt(ex, "frmCompras ~ btnModificar_Click");
         MessageBox.Show(Comun.MensajeError, Comun.Sistema, MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }