|
Subject:
|
"Failed to open a rowset"
|
|
Posted By:
|
veera_c
|
Post Date:
|
5/16/2006 7:37:49 AM
|
Help me.... I have a report which I'm loading using the following code. When I deploy the application in a client's pc "Failed to open a rowset" is the error that appears. I am using an ODBC connection. Any help would be appreciated....
Dim cr As New crptCMR
Dim crtableLogoninfos As New TableLogOnInfos Dim crtableLogoninfo As New TableLogOnInfo Dim crConnectionInfo As New ConnectionInfo Dim CrTables As Tables Dim CrTable As Table Dim TableCounter
Dim crReportDocument As New crptCMR
With crConnectionInfo .ServerName = sname .DatabaseName = dbname .UserID = uid .Password = pwd End With
CrTables = crReportDocument.Database.Tables
For Each CrTable In CrTables crtableLogoninfo = CrTable.LogOnInfo crtableLogoninfo.ConnectionInfo = crConnectionInfo CrTable.ApplyLogOnInfo(crtableLogoninfo) Next
CRVcmr.ReportSource = crReportDocument
|
|