Administrator

Administrator

  • Tech Writer
  • 2.2k
  • 1.5m

GetChanges problem!!

Mar 10 2003 11:07 AM
In my solution I have made a filter on my typed dataset. On this filter I make certain changes, before I make a new dataset to get these changes using getchanges(). When I try to display the dataset containing the changes, it wont disaplay the first row. Ie. Org dataset. Name Age A 5 B 7 C 8 After changes Name Age A 12 B 12 C 12 This is displayed in the datagrid. Name Age B 12 C 12 Why doesn't it display the first row?? Here is the code I use for changeing the values in the filter. int testscore = 12 foreach(DataRowView a in tableFilter) { a["Age"] = testscore.ToString(); } plz help.. Ottar