How can I add a row to a datagridview control if it is bounded to a datasource (datatable) ? Thanks!
// I manipulated a binding list. Here I was moving a row down in sequence.
BindingList lst = (BindingList)DataGridView.DataSource; MyType objQcc = lst[rowIndex]; lst.Insert(rowIndex + 2, objQcc); lst.RemoveAt(rowIndex);