on 2016 Dec 19 5:28 PM
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:
Have you tried commenting out the call to VerifyDatabase? Unless your database is going through a lot of changes where fields are being added, removed, or changed, you don't really need to call it.
-Dell
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
62 | |
10 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.