1

私は SQLITE データベースを使用しており、C# を使用して Windows アプリケーションでレポートを表示するためにレポート ビューアを使用したいと考えています。私のコードは

DataSet ds=rel.show_data1("site_master");
this.reportViewer1.Reset();
ReportDataSource rds = new ReportDataSource("test_rds", ds.Tables[0]);
reportViewer1.LocalReport.DataSources.Clear();
reportViewer1.LocalReport.DataSources.Add(rds);
reportViewer1.Visible = true;
reportViewer1.LocalReport.Refresh();

しかし、レポート ページでデータを表示できません。親切に助けてください。私はレポートに非常に慣れていないので、有用なリンクがあれば教えてください。ありがとう

4

1 に答える 1