DataSet Event

Hello,
I have a DataSet, which is containing some tables with data.

If I will change some data in the tables which is displayed in my controls, how can I come to know that data is changed.

Is there any event on DataSet which will fire, if any data change occur on it. ( in the columns of the tables or when rows are added or deleted from the tables )

Any Suggestions !!!




Answer this question

DataSet Event

  • Roland Weiss

    u can use

    ColumnChanging or Column Changed or Row Changing or RowChanged in DataSet.Tables[0]



  • Gombly

    But requirment is that If there is a change in anything inside the DataSet is changed,
    I make my Save Button Enabled !!!

    and for that right now I am writing code on all events. I just need to know is there any event exposed by the DataSet itself which let me know that underlying data has changed !

    thnaks !!!


  • DataSet Event