views:

66

answers:

2

I have datagridview I want to automatically save each record after editing this record.

A: 

There is a RowValidated event that would be suitable for this. You could then pull the values out of the grid and populate your database command.

Adam