first error;
Error 1
The call is ambiguous between the following methods or properties: 'CrystalDecisions.CrystalReports.Engine.ReportDocument.SetDataSource(System.Collections.IEnumerable)' and 'CrystalDecisions.CrystalReports.Engine.ReportDocument.SetDataSource(System.Data.DataTable)' C:\Visual C# Samples\oracle\Form1.cs
second
it' hangs up and after it du nothing
but this works:
CrystalReport1 rp = new CrystalReport1();
rp.Load("CrystalReport1.rpt");
AktTypedList akttype = new AktTypedList();
DataSet ds = new DataSet();
ds.Tables.Add(akttype);
rp.SetDataSource(ds);
crystalReportViewer1.ReportSource = rp;
it displays me password login form of report and i couldn't remove this