private void btnAgregar_Click(object sender, EventArgs e)
        {
            FrmEditar_Transacciones frm = new FrmEditar_Transacciones();

            frm.ShowDialog();
            frm.Focus();
        }
        private void dgvTransacciones_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            DataGridViewRow row = dgvTransacciones.SelectedRows[0];

            CuentasXCobrar.Transacciones transacciones = new CuentasXCobrar.Transacciones();

            transacciones.IdTrans         = Int32.Parse(row.Cells[0].Value.ToString());
            transacciones.IdMovimiento    = Int32.Parse(row.Cells[1].Value.ToString());
            transacciones.IdDoc           = Int32.Parse(row.Cells[2].Value.ToString());
            transacciones.IdCliente       = Int32.Parse(row.Cells[3].Value.ToString());
            transacciones.NumeroDocumento = Int32.Parse(row.Cells[4].Value.ToString());
            transacciones.Fecha           = Convert.ToDateTime(row.Cells[5].Value.ToString());
            transacciones.Monto           = Convert.ToDecimal(row.Cells[6].Value.ToString());

            FrmEditar_Transacciones fed = new FrmEditar_Transacciones();

            fed.transaccion = transaccion;
            fed.ShowDialog();
        }
        private void dgvTrans_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            DataGridViewRow row = this.dgvTrans.CurrentRow;

            CuentasXCobrar.Transacciones transacciones = new CuentasXCobrar.Transacciones();
            transacciones.IdTrans         = Int32.Parse(row.Cells[0].Value.ToString());
            transacciones.IdMovimiento    = Int32.Parse(row.Cells[1].Value.ToString());
            transacciones.IdDoc           = Int32.Parse(row.Cells[2].Value.ToString());
            transacciones.IdCliente       = Int32.Parse(row.Cells[3].Value.ToString());
            transacciones.NumeroDocumento = Int32.Parse(row.Cells[4].Value.ToString());
            transacciones.Fecha           = Convert.ToDateTime(row.Cells[5].Value.ToString());
            transacciones.Monto           = decimal.Parse(row.Cells[6].Value.ToString());

            FrmEditar_Transacciones fet = new FrmEditar_Transacciones();

            fet.transacciones = transacciones;
            fet.ShowDialog();
            fet.Focus();
        }