Private Sub DataGridView1_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellContentClick
MsgBox(DataGridView1.CurrentCell.Value)
End Sub
这是用VS2010里的VB.net写的,不知你合适不?我为了超时髦,2010都用上了。
或者:Datagridview(列,行).Value
把列和行的参数等于你的光标所在行,但是在致命时,容易出错。
来一个不会出错的方法: DataGridView3(0, e.RowIndex).Value
为了把程序的稳定性提高,建议把防错语句放在头顶上。