Hello,

I've created a form to display a crystal report.
Data are collected in a dataset and sended to the CR

All was working perfect but now I have the following message :

An unhandled exception of type 'System.ExecutionEngineException' occurred in crdb_adoplus.dll

And I don't know Why ??? I created a new CR from scratch in case I have modify dataset models and linking was not updated but still the same


VB Code:
  1. ' CR Variables
  2. Dim crReportDocument As ReportDocument
  3. Dim FrmAccuse As New FormCrystalReport()
  4. Dim Rpt As New CRAccuseComplet()
  5.  
  6. Rpt.SetDataSource(DSDossier1)
  7. crReportDocument = rpt
  8. FrmAccuse.CrystalReportViewer1.ReportSource = crReportDocument
  9.  
  10. FrmAccuse.ShowDialog()  '<<<<<<<<<<<---------------


Any Idea ?

Thanks