Select cell in datagrid

  • Thread starter Thread starter Diego F.
  • Start date Start date
D

Diego F.

Hello, I have a datagrid that load the data with a DataView. I need to use
the value shown in any row. I know how to select a cell when the DataGrid
loads the data directly from a DataSet, but not with a DataView.

How can I do that?

Regards,

Diego F.
 
Not sure what are you trying to do, but when you bind a datagrid to a
dataset it in effect is bound to a
DataSet.Tables[tableName].DefaultDataView, so there is no difference.
 
Back
Top