DataTables (newbie question)

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hi, I've created a DataTable in the visual studio designer. I can't find
anywhere in the documentation that says how to access the data in this data
table. Doing google searches brings up loads of websites that tell me how
to create a datatable, but none seem to show me how to access the data that
the user has inputted. What members do I use to get at the data?

Thanks for any help,
Regards,
Dan.
 
Dan,

The most simple answer,

A datatable exist from rows which has items. Those items are described in
the columns.

Therefore
\\\
dt.Rows[0][0] is the first item in the first row.
///

However the possibilities to change items are almost endless.

I hope this gives an idea anyway

Cor
 
Back
Top