In the Telerik Message Library mode, each report consists of 3 files by default. Let's say I create a report called "ProductReport" in the draft report. it will generate ProductReport.cs, ProductReport.Designer.cs, ProductReport.resx
Below is the code "ProductReport.cs":
public partial class ProductReport : Telerik.Reporting.Report { public ProductReport() {
I think one of the options is to add another constructor with the parameters that you want to insert into the Report instance, include the data source and do not forget to call "InitializeComponent ()".
Another good side of this solution is that it will not affect the use of the report designer and the modification of report elements by the designer.
source share