hi, Im trying to return the value contained in a datagridview cell upon clicking on the cell. can anyone please show me how to do this using vb.net?thanks
+1
A:
Check this sample code. The key is to use the event's DataGridViewCellEventArgs
parameter to find the clicked cell's RowIndex
and ColumnIndex
.
Private Sub DataGridView1_CellClick(ByVal sender As System.Object, _
ByVal e As DataGridViewCellEventArgs) _
Handles DataGridView1.CellClick
MsgBox(DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value)
End Sub
M.A. Hanin
2010-03-15 13:37:18
P.S: You will probably get more answers if you actually bother to mark the answer which helped you most - Reputation is the only reward for those answering you.
M.A. Hanin
2010-03-15 13:39:14