正在调用 Crystal 报告文件
Calling Crystal Report File
你能帮我吗,我的 vb.net 语言有问题。
我想调用 crystal 报告,但不能使用通过 crystal 报告发送的 gridview 中的数据格式。使用以下代码:
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim reports As New bpkb_1
reports.SetDataSource(ds.Tables(0))
viewermurabahah.CrystalReportViewer1.ReportSource = reports
viewermurabahah.ShowDialog()
end sub
您能否举例说明如何在 visual studio vb.net 项目文件之外调用 crystal 报告文件的代码?
可以调用ReportDocument的load方法
Dim rpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
rpt.Load(<Path to your crystal report file>)
rpt.SetDataSource(<your data table>)
YouReportViewer.ReportSource = rpt
你能帮我吗,我的 vb.net 语言有问题。 我想调用 crystal 报告,但不能使用通过 crystal 报告发送的 gridview 中的数据格式。使用以下代码:
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim reports As New bpkb_1
reports.SetDataSource(ds.Tables(0))
viewermurabahah.CrystalReportViewer1.ReportSource = reports
viewermurabahah.ShowDialog()
end sub
您能否举例说明如何在 visual studio vb.net 项目文件之外调用 crystal 报告文件的代码?
可以调用ReportDocument的load方法
Dim rpt As New CrystalDecisions.CrystalReports.Engine.ReportDocument
rpt.Load(<Path to your crystal report file>)
rpt.SetDataSource(<your data table>)
YouReportViewer.ReportSource = rpt