Hi my goal is to convert a Crystal Report File to PDF.
I got the Logon Error when switch to x64-Mode. This error occurs only with certain .rpt-Files. When using the "AnyOption" in debug mode everything goes well. It seems to me that the .dll has some bug when switching the compilation to x64 in Visual Studio.
The interesting thing is, i still could export the file after the exception occured which is raised by the method VerifyDatabase().
Does anyone have the same problem?
This are my codes:
ReportDocument reportDocument = new ReportDocument(); reportDocument.Load(@"C:\Users\lbui\AppData\Local\Temp\TestSourceFolder\ReportWithSubReportWithViewAndSP.rpt"); foreach (IConnectionInfo dataSourceConnection in reportDocument.DataSourceConnections) { dataSourceConnection.SetConnection("localhost", "SomewhereDb", "UserId", "Password"); } reportDocument.VerifyDatabase(); reportDocument.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, @"C:\Users\lbui\AppData\Local\Temp\TestSourceFolder\defcon.pdf");
Exception: