BindingList(Of T) : Filter

  • Thread starter Thread starter Pieter
  • Start date Start date
P

Pieter

Hi,

Im' using a custom list Inherited from BindingList(Of T). I would like to
add a Filter to be able to filter on different column values.

Offcourse this must exist already, and after some google-search I found 2
nice implementations:
- http://sourceforge.net/projects/blw/
-
http://www.teamjohnston.net/cs/blogs/jesse/Default.aspx#ae1af67f6-fe7a-4567-9d1a-ce75000aa327
Both solutions are using a View that is put on top of the BindingList.
Especially the second looks great, and is updated regularly.

Does anybody else knows some sample code for this? some nice
implementations? anybody used one of these 2? any feedback?

Thanks a lot in advance,


Pieter
 
Hi,

Im' using a custom list Inherited from BindingList(Of T). I would like to
add a Filter to be able to filter on different column values.

Offcourse this must exist already, and after some google-search I found 2
nice implementations:
-http://sourceforge.net/projects/blw/
-http://www.teamjohnston.net/cs/blogs/jesse/Default.aspx#ae1af67f6-fe7...
Both solutions are using a View that is put on top of the BindingList.
Especially the second looks great, and is updated regularly.

Does anybody else knows some sample code for this? some nice
implementations? anybody used one of these 2? any feedback?

Thanks a lot in advance,

Pieter

Your sample code should be downloadable from sourceforge as the
project is open source.

Thanks,

Seth Rowe
 
BindingSource and DataView support filtering through the IBindingListView
interface
 
Back
Top