I am working with a DataGridView filled up from a view in my database.
Being a view (maybe I’m wrong) I can’t use the TableAdapter.Update() method so I need to know the altered cells from the DataGridView so I can update the values in their respective tables programatically.
Can you help me?
You are able to update Views http://msdn.microsoft.com/en-us/library/aa214068(v=SQL.80).aspx
You can also get the edited rows by called
DataTable.GetChanges()