Default.aspx.vb
Dim FullnameRpt As New ClassLibrary1.Fullname()
FullnameRpt.Param = tbWorkerId.Text
ReportViewer1.Report = FullnameRpt
ReportViewer1.RefreshReport()
Fullname.vb
Public Property Param() As String
Get
Return SqlDataSource1.Parameters(0).Value.ToString
End Get
Set(ByVal value As String)
SqlDataSource1.Parameters(0).Value = value
End Set
End Property
The referenced assembly
"D:\PROJEKTY\EastSoft.HandelForte.Konfiguracja\bin\Debug\ES.HandelForte.Konfiguracja.dll"
could not be resolved because it has a dependency on
"System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
which
is
not
in
the currently targeted framework
".NETFramework,Version=v4.0,Profile=Client"
. Please remove references to assemblies not
in
the targeted framework or consider retargeting your project.
ES.HandelForte.Konfiguracja.dll
. ES.HandelForte.Konfiguracja.dll
project is set to using .Net Framework 4.0.Public Sub New()
txtReportTitle.Value = "Active Employees by Location"
txtSubtitle.Value = Me.ReportParameters("CompanyName").Value
InitializeComponent()
End Sub
Hello Telerik Team,
I have a requirement where in i need to pass multiple filter values to a report.I am using master detail reports using Subreports .
But as of now..i am able to provide only single filter to the detail report.
Telerik.Reporting.Data.Filter fltrVal = new Telerik.Reporting.Data.Filter();
fltrVal.Expression = "=Fields.ItemID";
fltrVal.Operator = Telerik.Reporting.Data.FilterOperator.Equal;
fltrVal.Value = "=1000";
this.Filters.Add(fltrVal);
How do i pass multiple values to this filter.I have an array of values to be passed.
I appreciate your help. and support.
Thank you
Smith
var reportViewerModel = reportViewer.DataContext
as
ReportViewerModel;
if
(reportViewerModel.State.Equals(
"ViewerPageState"
))
{
reportViewerModel.PrintReportCommand.Execute(
null
);
}