Reputation: 60871
i have a datagridview whose datasource is attached to a datatable
how do i update the datatable and then make sure to refresh the datagridview to reflect the changes in the datasource? or do i need to do this at all?
Upvotes: 0
Views: 576
Reputation: 57823
You shouldn't need to do this. If you delete or update a row in the datatable, the bound datagridview should update its display to reflect the changes.
Upvotes: 2