Telling if a dataset has changed

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

Hi,

I am working with a set of data which is displayed on the screen. The
problem is that it is in a datatable in a dataset. I need to know when a row
was added or removed from that datatable inorder to redraw the text to match
it correctly. I am trying to do this in visual basic.net right now, is there
a way to do this? thanks
 
See RowChangedEvent
adn RowChangingEvent

Strongly typed datasets create strongly typed versions of these events.
 
Back
Top