Пример #1
0
        public void mostrar()
        {
            CGActaParcial oGenerador = new CGActaParcial();
            oGenerador.IdDocumento = "4022";
            ReportDataSource rds = new ReportDataSource();
            rds.Name = "datosActa";

            rds.Value = oGenerador.GetActa();
            rv.LocalReport.DataSources.Clear();
            rv.LocalReport.DataSources.Add(rds);
            rv.LocalReport.Refresh();
        }
Пример #2
0
 /// <summary>
 /// Prueba de Report
 /// </summary>
 /// <returns></returns>
 public List<vDocActasParcial> ActaParcial() {
     CGActaParcial cg = new CGActaParcial();
     return cg.GetActa();
 }