0

我有一个表格和一个datagridview。我想将 datagridview 导出到 ReportViewer。我怎样才能做到这一点?因为我现在正在过滤datagridview,但我无法过滤reportviewer。如果这不是不可能的,你能告诉我如何过滤reportviewer?我使用 Visual Studio 2010

感谢大家

4

1 回答 1

0

如果您使用 LocalReport 处理模式,您可以执行以下操作,

Microsoft.Reporting.WebForms.ReportDataSource Rds = new Microsoft.Reporting.WebForms.ReportDataSource(DataSet.Name, SortedAndFilteredDataGridView);
ReportViewer.LocalReport.DataSources.Add(Rds);

理想情况下,这应该有效,除非我误解了你的问题。

于 2013-06-12T17:43:42.400 回答