Windows Forms Datagrid

  • Thread starter Thread starter Bernardo
  • Start date Start date
B

Bernardo

Hi,

I have a datagrid with one column updatable (checkbox).
Anyone knows how can I receive it's value when it is
updated?
There is any event like AfterUpdate?

Thanks,
BP
 
Hi,

You should listen to the bound datasource's events instead, for instance,
RowChanged for the DataTable class.
 
Back
Top