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
 

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