any event in datagrid raised when data in datagrid changed

  • Thread starter Thread starter ali asjad
  • Start date Start date
A

ali asjad

is there any event that is raised when data in datagrid is changed.

actually im using a dataset filled through data adapter and is the
data source of datagrid
 
You want to look at the DataTable events I believe.

AddHandler DataSet1.Tables(0).RowDeleted, AddressOf ......

There are several events you can look at in there.

Chris


ali asjad said:
is there any event that is raised when data in datagrid is changed.

actually im using a dataset filled through data adapter and is the
data source of datagrid
 
Back
Top