Can a Subreport be done within another Subreport in reportviewer?

1

Currently when I'm doing a subreport I pass the data in this way:

  ........
  report.SubreportProcessing += new SubreportProcessingEventHandler(SubreportProcessingEventHandler);
  .........


void SubreportProcessingEventHandler(object sender, SubreportProcessingEventArgs e)
    {
        int id = int.Parse(e.Parameters["id"].Values[0].ToString());
        DataTable dt_subreportCuentaResumen = GetCuentaResumenGrupo(id);
        ReportDataSource ds = new ReportDataSource("DataSet_DetalleResumenGrupo", dt_subreportCuentaResumen);
        e.DataSources.Add(ds);

    }

but if I wanted to create a subreport, within another subreport, would I have to do something similar in the SubreportProcessingEventHandler function, how would I create the subreport of a subreport?

    
asked by Danilo 14.10.2016 в 17:13
source

0 answers