我想在 vb.net 中创建一份报告。我的代码是
da = New SqlDataAdapter("select biography FROM [gholeha].[dbo].[tbl_charachter] where name=N'آیت الله بهجت' ", con)
da.Fill(ds)
Dim rep As ReportDataSource
rep = New ReportDataSource("dts", ds.Tables(0))
ReportViewer1.LocalReport.DataSources.Clear()
Me.ReportViewer1.LocalReport.DataSources.Add(rep)
ReportViewer1.LocalReport.Refresh()
Me.ReportViewer1.RefreshReport()
但是然后调试我没有查看报告并且我有错误:
尚未指定报告定义的来源。