Hi all,
I'm using a DataTable with computed columns of DataGridView.in C#
When I change the value used by the computed column, the computed column is
updated only when I leave the row. I would like to update the computed
column when I leave cell (moving to another cell on the same row).
How could I do that ?
plz help .
thanx
Loading
Roei BarPosted Sep 21, 2009, 10:13 AM
then by e.Column and e.Row you can edit and manipulate the other cells in that row
Master BillaPosted Sep 21, 2009, 10:11 AM
You can use,Cellvalidating event to this task.
http://msdn.microsoft.com/en-us/library/ms993231.aspx
thank you