Hi,
I would like to know if there is a way to change the report from the regular style to be in black and white. I would like this to be changeable either by code or even better using a report parameter to indicate if we want it in black and white or color.
Thanks
Naphtali
Imports T
elerik.Reporting
...
Sorry, wrong forum.

1. string
reportName = "MIDAS.Reporting.Calls.CallOutReport, MIDAS.Reporting, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null";
2. IReportDocument objReportDoc;
3. Type
reportType = Type.GetType(reportName);
4. objReportDoc = (
IReportDocument)Activator.CreateInstance(reportType);
Here 4th point/line takes almoset 1 minute to Execute. Is it due to 5 subReports ? is there any other approach to improve the performance.
Any help would be highly appreciated.
Thanks in advance.
------------------------------------
Ajay