DataGrid - Incremental search

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can someone share code of doing that
I want to be able to type something into a textbo
and the grids get filtered out with the rows that meet criteria

Thanks
 
One key down, use the RowFilter using the * wild card each tiem the key is
presseed

DataView.Rowfilter = "Somefield = '" &tbText.Text & e.KeyChar & "*'"
 
Back
Top