08-13-2012, 08:57 PM
Hmmm. Well, I think getting the data from a datagridview cell is pretty simple. All you need is the cell column and cell row. Then, you can get the value with this:
[code2=vbnet]Dim cIndex As Integer = 3 'Column Index
Dim rIndex As Integer = 5 'Row Index
Label1.Text =
Me.DataGridView1.Item(cIndex, rIndex).Value.ToString[/code2]
Hope this helps.
[code2=vbnet]Dim cIndex As Integer = 3 'Column Index
Dim rIndex As Integer = 5 'Row Index
Label1.Text =
Me.DataGridView1.Item(cIndex, rIndex).Value.ToString[/code2]
Hope this helps.