I have a DataGridView. Some of the cells receive their data from a serial port: I want to shove the data into the cell, and have it update the underlying bound object.
Try this way:
dataGridView.CurrentCell.Value = newValue; dataGridView.EndEdit(); dataGridView.CurrentCell.Value = newValue; dataGridView.EndEdit();
Need to write two times...