UserDeletedRow

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi ,

I want to get the value of a cell returned when the UserDeletedRow event
files, but for some reason cannot get anything to return.

Thanks

Neil

Private Sub dgridProducts_UserDeletedRow(ByVal sender As Object, ByVal e As
System.Windows.Forms.DataGridViewRowEventArgs) Handles
dgridProducts.UserDeletedRow

'Get Column value retuned ?

End Sub
 
I found using the UserDeletingRow works. Is there anything out there to make
the help easier to read in visual studio.

Neil
 
You may want to try UserDeletingRow instead. Then you can use
e.Row.Cells(x).value.

Hope this helps.

Newish
 
Back
Top