DataGridView first column,first row, is selected on Load, I don’t want this

I was having quite a bit of trouble with this myself. I have a user control with a DataGridView that is populated on application/form load. The selection of the first row seems to happen after databinding is complete and the grid is populated/rendered. The user control load event (and presumably, form load as well) fires … Read more

DataGridViewComboBoxCell Binding – “value is not valid”

I managed to find the solution not long after posting the question. For anyone else: The problem was that I was trying to assign the DataGridViewComboBoxCell.Value to an object, expecting that because the Cell was bound to a data source that it would automatically find the object in the source and update. This wasn’t actually … Read more