Hur gör jag för att läsa ut varje cell för sig till variabler i programkod för den rad som är vald i DataGridView'n DataGridViewRow selectedRow = dataGridView1.Rows[dataGridView1.SelectedCells[0].RowIndex];DataGridView
Sv: DataGridView
<code>
dim myRownr as integer
Private Sub myGrid_CellMouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles myGrid.CellMouseDoubleClick
Minvariabel = myGrid.Rows.Item(myRownr).Cells(myCellnr).Value
end sub
Private Sub myGrid_CellMouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles myGrid.CellMouseDown
myRownr = e.RowIndex
end sub
</code>Sv: DataGridView
myVar1 = selectedRow.Cells["columnName"];
//OR
myVar1 = selectedRow.Cells[indexNumber];