Hi
I have created a subreport in a main report and run it using.
1) crep = new CrystalReport1();
2) crep.Load();
3) crep.SetDataSource((System.Data.DataTable)dt); // Filled table
if I use
4) crep3 = (CrystalReport3)crep.OpenSubreport("Subreport1")
the function returns null.
I want to do a load and setdatasource on CRep3 afterwards.
Why would it return null and what can I do to get a valid object.?