Report does not refresh with BindingSource Filter
25-Jun-0909 Leave a comment
For a local report, where you want to refresh based on the BindingSource. See this link.
Required code is
Dim tempBindingSource As New BindingSource(Me.OriginalBindingSource, "")
Me.ReportViewer1.LocalReport.DataSources(0).Value = tempBindingSource
Me.ReportViewer1.LocalReport.DataSources(0).Value = tempBindingSource
Steve