private void btnImprimirCobranza_Click(object sender, EventArgs e) { btnGuardarSocio.Enabled = true; DE.cancelacion.Rows.Add(txtCiCA.Text, txtNroCobroCA.Text, txtOficinaCA.Text + "/" + txtIncisoCA.Text, txtApeNomCA.Text, txtNroPrestamoCA.Text, txtCuotasPactadasCA.Text, txtCuotasPagadasCA.Text, txtAmortizacionAVencerCA.Text, txtInteresesAVencerCA.Text, txtPresupuestoDeCancelacion.Text, DateTime.Today, Utilidades.UsuarioLogueado.Alias.ToString(), "( " + empresa.ESCNUM(txtAmortizacionAVencerCA.Text) + " )"); frmVerReportes reporte = new frmVerReportes(DE, "CANCELACION"); reporte.ShowDialog(); DE.cancelacion.Rows.Clear(); }