Editing Datasets

  • Thread starter Thread starter Nancy
  • Start date Start date
Hi Nancy,

If you need to edit rows in a dataset, just assign values to each column of
that row. Here's an example:

Dataset1.Tables["TableName"].Rows[<RowIndex>]["ColumnName"] = value

Please check the following links for more information:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfSystemDataDataRowClassTopic.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfsystemdatadatarowclassitemtopic.asp

If anything is unclear, please feel free to reply to the post.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Back
Top