Get row in DataGridView, how??

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

..NET 2.0

How do I in the double-clicked event of a DataGridView controller get the
row number of the row double-clicked??..

I just trying to get a value from this row....

any suggestions?

Jeff
 
Hello Jeff,

You must handle the CellDoubleClick event. Then use the DataGridViewCellEventArgs
object and access the RowIndex property to get the current row index

Regards
Martin
 
Back
Top