Datagrid question

  • Thread starter Thread starter MSNEWS
  • Start date Start date
M

MSNEWS

Hi

I have a datagrid with one table in it. One of the columns in the table is
called filename.

I want to copy the contents of filename in all the rows to a string array,
how do I access the contents of the column in a datagrid?


Thanks
 
You will have to work with the underlying DataSet that the datagrid is bound
to. Use the Rows property of the DataSet to get the individual Rows and the
Columns property of the DataRow objects to get the data in the columns.
 
Back
Top