Report does not refresh with BindingSource Filter

 
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
 
Steve

Leave a comment