Hi,
i'm trying to use Crystal Reports 2008 with SP3, Visual Studio 2008 and OS Windows Server 2003 (I use this Server OS because i'm developing for Microsoft SharePoint).
Before upgrading to Crystal Reports SP3 i could not set a basic Visual Studio C# Dataset as the Datasource of my Report. Everytime i get the following Error:
Unknown Database Connector Error - Error in file temp_GUID.rpt
Then i read theis forum and it was mentioned that maybe SP3 could solve this problem. But after applying CR 2008 SP3 the following Error occur (VS cancel the debug mode and this error is logged to the Windows Server-Log):
Message: Could not load file or assembly 'crdb_adoplus, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. Failed to grant permission to execute. (Exception from HRESULT: 0x80131418)
I'm using the following Code-Snippet:
CrystalReport1 report = new CrystalReport1();
NewsDataSet nds = new NewsDataSet();
DataRow r;
r = nds.Tables[0].NewRow();
r["Title"] = "Title";
r["Body"] = "Body";
nds.Tables[0].Rows.Add(r);
//Now the exception will be thrown
report.SetDataSource(nds.Tables[0]);
Maybe someone can help me to solve this problem.
Thanks in Advance!
Christian