Ejemplo n.º 1
0
        private void btnConsolidado3_Click(object sender, EventArgs e)
        {
            String[] CadenaServicios = new String[8000];

            for (int i = 0; i < _ListaFacturacionDetalle.Count; i++)
            {
                CadenaServicios[i] = _ListaFacturacionDetalle[i].v_ServicioId;
            }
            Reports.frmFactura frm = new Reports.frmFactura(_v_FacturacionId, _EmpresaCliente, _EmpresaSede, _FechaInicio, _FechaFin, 1, CadenaServicios, 2);
            frm.ShowDialog();
        }
 private void btnImprimir_Click(object sender, EventArgs e)
 {
     Reports.frmFactura frm = new Reports.frmFactura(_v_FacturacionId, _EmpresaCliente, _EmpresaSede, _FechaInicio, _FechaFin);
     frm.ShowDialog();
 }