Is it possible to hide a row in a datagrid?

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

Guest

I'm wondering if there is a property in the datagrid that allows me to hide a
particular row. My situation is that I have approximately 100 rows that I
want to filter by category. This makes organizing the data and saving the
data easier.

Thanks in advanace
 
Have you tried using a DataView to get to the data in your DataSet, and set a
RowFilter?

-KeithNL
 
Back
Top