This statement no longer works
foreach (DataGridViewRow R in dgvMCC.SelectedRows)
As an integer array is returned instead of a collection of selected rows
Is this by design?
Thank you for reporting it. It should/will work as before. The DGV in 2.2 doesn’t create any row until used by the app so internally it refers to data only by the row index and creates rows on demand. This saves a lot of memory for data bound or virtualmode grids.
Please login first to submit.