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 & "*'"
 

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

Back
Top