Dataset events with added records?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I’m having a problem with strongly typed dataset events and new records.
I need to perform a task summing columns every time records are changed.
I’ve used the RowChanging, RowChanged and ListChanged. These all work
except for added records.
Any ideas?
 
You see, the DataRowChangeEventArgs have the Action and the new row but the
Rows collection does not have the new row. On every change I want to sum all
the records, including recent added ones. The Rows collection is not updated
till ALL Events are complete is what I understand
So how is this possible?
 
Back
Top