Hi,
Datasets contain one or more DataTables which in turn contain DataRows. To
access a specific row in a table, follow this hierarchy.
DataSet.Tables(0).Rows(0)("ColumnName") -- gives the value of column
"ColumnName" in the first row (0-based indexing) of the first table in the
given dataset.
Also, check MSDN for DataSet topic. It contains plenty of info on
manipulating/accessing datasets.
Hope this helps.
"Nikolay Petrov" <(E-Mail Removed)> wrote in message
news:#(E-Mail Removed)...
how to assign data from a dataset to an array or other variables?
how to address data, contaning in dataset.
I know it is organized in row, but how to work with them?
|