Nebiw question about data grid elements

  • Thread starter Thread starter Willie Neal
  • Start date Start date
W

Willie Neal

When I populate a data gird on my form, I need a way to hold two of the data
elements for each row, and be able to loop through these elements and use
them for other task such as filtering another data set. What is the best way
to perform this in vb.net.

Thanks for the advice.

Wil.
 
Hi Willie,

The best way in VB.net is to work with the datasource elements and not with
the grid elements.

Than can be a datatable or a dataset.
Or the filter that can be used which is the dataview.

A dataset is nothing more than

dataset.tables(x).rows(y).item(z)

that datasets holds datatbles, which contents rows, which has items
or better said
a dataset has references to tables which have references to rows which have
references to items

I hope that this helps?

Cor
 
Back
Top