In my .NET / Forms application, I have a DataGridView bound to a DataTable. The user selects the DataGridView row with a double click and performs some interaction with the application. After that, the contents of the string are updated programmatically.
When the user selects a new row, the changes in the previous case are automatically propagated to the DataTable using the framework. How can I call this update from my code so that the user does not need to select a new line?
Olaf
source
share