i get error 0x800A5077, i try import CrystalActiveXReportViewerLib10 and CrystalReportsCommonObjectModelLib, but it still no work.

Call ReportConnection(CInspAuditList, "Pab_Prod")
        CInspAuditList.ReportFileName = My.Application.Info.DirectoryPath & "\MAuditList.rpt"
        Call SubReportConnection(CInspAuditList, "Pab_Prod")
        CInspAuditList.set_ParameterFields(0, "mchno; " & frmMachine.machine & " ;true")
        CInspAuditList.set_ParameterFields(1, "batch; " & CDbl(frmMachine.batch) - 1 & " ;true")
        CInspAuditList.set_ParameterFields(2, "Points; " & InpStdPt & " ;true")
        CInspAuditList.set_ParameterFields(3, "ovrpt; " & OvrPoints & " ;true")
        CInspAuditList.Action = 1

the error occur when CInspAuditList.Action = 1

vb.net help me declare CInspAuditList as AxCrystal.AxCrystalReport
This is my function for connection:

Public Function ReportConnection(ByRef CrystalReport1 As AxCrystal.AxCrystalReport, ByRef dsnname As String) As Boolean
        CrystalReport1.Connect = "dsn=" & dsnname & ";UID=" & gstrID & ";PWD=" & gstrPassword & ";DSQ="
    End Function

I want to know the reason cause the error happen & my connection correct or not

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.