Please excuse me because I am not familiar with English.
Hi.
My WinForm is open report and report is open the secend report by subreport .
firstreport is passing 6parameter
--------------------------------------------------------------------------------------------------------------------------------------------------
Telerik.Reporting.TypeReportSource typeReportSource1 = new Telerik.Reporting.TypeReportSource();
typeReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("AS_PLANTCODE", "=FIELDS.PLANTCODE"));
typeReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("AS_LOTNO", BarCode));
typeReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("AS_FIRSTFLAG", "=FIELDS.FIRSTFLAG"));
typeReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("AS_FROM", "=FIELDS.FROM"));
typeReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("AS_TO", "=FIELDS.TO"));
typeReportSource1.Parameters.Add(new Telerik.Reporting.Parameter("AS_ODD", "1"));
typeReportSource1.TypeName = "DAS.DA3301_R_Private_Sub1, DAS, Version=1.0.3.2, Culture=neutral, Pub" +
"licKeyToken=null";
this.subReport1.ReportSource = typeReportSource1;
--------------------------------------------------------------------------------------------------------------------------------------------------
and subreports are queried using parameters from parent reports in the data source.
subreport is output and 5 Textbox and 1 Picturebox
I want to use the parameter values of the designer in the source,
When i get the value into the source, value = "=Parameters.AS_LOTNO.Value" be perceived as
But if i use it to print out, "0001010101:20200131:1:2"
how can i use designer parameters in sourcecode ..TT