BindingList(Of T) : Filter

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
 
R

rowe_newsgroups

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
 
S

Sheng Jiang[MVP]

BindingSource and DataView support filtering through the IBindingListView
interface
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top