Esempio n. 1
0
        private void InicializarReporte()
        {
            ReportDataSource rptDataSource = new ReportDataSource();

            dataset = new dsReportesAsuntos();

            dataset.BeginInit();
            rptDataSource.Name  = "DataSetReportes";
            rptDataSource.Value = dataset.VistaReporteDiario;
            rptAsuntosTotales.LocalReport.DataSources.Add(rptDataSource);
            rptAsuntosTotales.LocalReport.ReportEmbeddedResource = "UISolucioname.Reports.rptAsuntosOperador.rdlc";
            adaptadorReportes = new dsReportesAsuntosTableAdapters.VistaReporteDiarioTableAdapter();
            adaptadorReportes.ClearBeforeFill = true;
            dataset.EnforceConstraints        = false;
            dataset.EndInit();

            rptAsuntosTotales.RefreshReport();
        }
Esempio n. 2
0
        private void RptPruebaReporte_Load(object sender, EventArgs e)
        {
            if (!isReportLoaded)
            {
                Microsoft.Reporting.WinForms.ReportDataSource rptDataSource = new Microsoft.Reporting.WinForms.ReportDataSource();
                dsReportesAsuntos dataSet = new dsReportesAsuntos();

                dataSet.BeginInit();

                rptDataSource.Name  = "DataSetReportes";
                rptDataSource.Value = dataSet.AsuntosPorOperadorSegunMes;
                rptPruebaReporte.LocalReport.DataSources.Add(rptDataSource);
                rptPruebaReporte.LocalReport.ReportEmbeddedResource = "UISolucioname.Reports.rptAsuntosOperador.rdlc";

                dsReportesAsuntosTableAdapters.AsuntosPorOperadorSegunMesTableAdapter adaptadorTabla = new dsReportesAsuntosTableAdapters.AsuntosPorOperadorSegunMesTableAdapter();
                adaptadorTabla.Fill(dataSet.AsuntosPorOperadorSegunMes, "mleiva", new DateTime(2018, 06, 01), new DateTime(2018, 06, 30));

                dataSet.EndInit();

                rptPruebaReporte.RefreshReport();
                isReportLoaded = true;
            }
        }