datagrid filtering

  • Thread starter Thread starter vijaya
  • Start date Start date
V

vijaya

I want to collect all the datarows of a table which do not
satisfy the filter condition in a separate table?

How can I do it?

thanks in advance
vijaya
 
Hi,

To select them you might use DataView or DataTable.Select method.
For copying the rows to another table you'll have to do it manually.
 
Back
Top