If I click and drag to select a range of cells on a DataGridView control how can I get at the values stored in the selected cells, thanks.
Printable View
If I click and drag to select a range of cells on a DataGridView control how can I get at the values stored in the selected cells, thanks.
You get them using the SelectedCells property of your datagridview. This property returns a DataGridViewSelectedCellCollection, you just loop thru it and read the individual cell value.