or
var reportAssembly = AppDomain.CurrentDomain
.GetAssemblies()
.Where(x => x.GetName().Name == REPORT_NAMESPACE).FirstOrDefault();
Type reportType = reportAssembly.GetType(rptInfo.ReportClassName);
var report = (Report)Activator.CreateInstance(reportType);
report.DataSource = results;
After upgrading to Q3, I cannot apply built-in stylesheets like civic or solstice to reports. Can you try and tell me if it is working?
Thank you.
Hi
I currently have a report with 1 sub reports. At runtime I set the report's data source to a Dataset. I also set the data source for the sub reports to the same Dataset and different table. I need grouping the sub report based on master report.
I have two tables one master table another one detail table,
Firs page display master report and then second page corresponding details displaying.
How to grouping the sub report?
Regards,
VinothKumar.K