0

レポートを作成し、レポート ビューアーに手動でロードしようとしましたが、ロードできませんでした。私のコード

 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  ReportViewer1.Reset()
    Dim ReportDataSource1 As Microsoft.Reporting.WinForms.ReportDataSource = New Microsoft.Reporting.WinForms.ReportDataSource
    ReportDataSource1.Name = "InvoiceData_DataTable1"
    ReportDataSource1.Value = New InvoiceDataTableAdapters.DataTable1TableAdapter().GetData("EBM267")
    Me.ReportViewer1.LocalReport.DataSources.Clear()
    Me.ReportViewer1.LocalReport.DataSources.Add(ReportDataSource1)
    ReportViewer1.LocalReport.ReportEmbeddedResource = "Billmanagement.report.rdlc"
    ReportViewer1.RefreshReport()
End Sub

私のデータセット名は InvoiceData DataTable1 には、デモ用に提供しているパラメータ billno がありますが、動作していません。レポートが空白のレポートを読み込んでいない理由を教えてください。

4

1 に答える 1