我在加载使用 Crystal Report 的表单时收到此错误:
无法打开连接详细信息:[数据库供应商代码:17] 无法打开连接。ReportMonthly {...}.rpt 详细信息:[数据库供应商代码:17]
我在谷歌上研究过这个错误,所以我找到了这个网站。我尝试了那里的步骤或说明,但它不起作用意味着同样的错误。
这是我表单中的代码部分:
Private Sub FRViolators_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.ShowReport(My.Application.Info.DirectoryPath & "\ReportMonthly.rpt")
End Sub
Public Sub ShowReport(ByVal strReportPath As String)
Dim rptDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
rptDoc = New ReportDocument
rptDoc.Load(strReportPath)
CrystalReportViewer1.ReportSource = rptDoc
CrystalReportViewer1.Refresh()
End Sub