Hello,
If I want to update data displayed in a datagrideview/datagridview cell, how
can I determine what cell I am updating? I am looking at the click event
below, for example. Can I get information from the sender object or the
EventArgs? How?
Private Sub DataGridView1_C lick(ByVal sender As Object, ByVal e As
System.EventArg s) Handles DataGridView1.C lick
Console.WriteLi ne("row number of cell is ?")
Console.Writeli ne("Column Name of Cell is ?")
End Sub
Thanks,
Rich
If I want to update data displayed in a datagrideview/datagridview cell, how
can I determine what cell I am updating? I am looking at the click event
below, for example. Can I get information from the sender object or the
EventArgs? How?
Private Sub DataGridView1_C lick(ByVal sender As Object, ByVal e As
System.EventArg s) Handles DataGridView1.C lick
Console.WriteLi ne("row number of cell is ?")
Console.Writeli ne("Column Name of Cell is ?")
End Sub
Thanks,
Rich
Comment