private void rpvCantTiposCarpas_Load(object sender, EventArgs e) { DataTable table = new DataTable(); table = AD_Carpa.obtenerEstadisticaTiposCarpas(); ReportDataSource ds = new ReportDataSource("CantTiposCarpas", table); rpvCantTiposCarpas.LocalReport.DataSources.Clear(); rpvCantTiposCarpas.LocalReport.DataSources.Add(ds); rpvCantTiposCarpas.LocalReport.Refresh(); }
private void rpvListadoCarpas_Load(object sender, EventArgs e) { DataTable table = new DataTable(); table = AD_Carpa.listadoCarpas(); ReportDataSource ds = new ReportDataSource("ListadoCarpas", table); rpvListadoCarpas.LocalReport.DataSources.Clear(); rpvListadoCarpas.LocalReport.DataSources.Add(ds); rpvListadoCarpas.LocalReport.Refresh(); }
private void reportViewer1_Load(object sender, EventArgs e) { DataTable table = new DataTable(); table = AD_Carpa.obtenerDormitoriosPorTipo(); ReportDataSource ds = new ReportDataSource("DormitoriosXTipo", table); rpvCantDormitorios.LocalReport.DataSources.Clear(); rpvCantDormitorios.LocalReport.DataSources.Add(ds); rpvCantDormitorios.LocalReport.Refresh(); }