Dynamic filter in DataGridView

  • Thread starter Thread starter CMC
  • Start date Start date
C

CMC

Hi!

I've a bound DataGridView with 2 columns. The second one is a ComboBoxColumn
loaded with a datatable.
Can I filter the list of the ComboBoxColumn by the Cell value of the same
row of the previous column???

I don't know how!

Thanks in advance
CC
 
You can bind the combobox to a dataview and set the rowfilter - which will
show only the filtered results. I'm not sure if this is what you're asking
or not - so if not, let me know.
 
Back
Top