Please help: How to check whether user has changed data in a DataGrid?

  • Thread starter Thread starter Tee
  • Start date Start date
T

Tee

Hi,

Is there any way to check whether user has changed the data in a DataGrid?


Thanks,
Tee
 
Tee,

Tee said:
Hi,

Is there any way to check whether user has changed the data in a DataGrid?

Thanks,
Tee

You could register to the ColumnChanged or ColumnChanging event of the
DataTable, and set a boolean isChanged flag to true.

Kind regards,
Tom T.
 
Back
Top