Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating data in a Column in a DataView

Status
Not open for further replies.

DLLHell

Programmer
May 9, 2003
69
0
0
US
I am trying to override data in a column of a DataView that will be used in a datagrid.

So far all I can find is that you can add a column to a DataView but I am not finding a way to modify the data in the column. Ex: dataView.Table.Columns.Add( datacolumn ); works fine but there is apparently no option to modify the data listed in Columns.

How to modify the data in an existing column of a dataview instead? It seems like a waste of time to use a DataTable, modify the data there, then move the DataTable row-by-row to a DataView.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top