find a value ona datagridview

  • Thread starter Thread starter paolol
  • Start date Start date
P

paolol

Hi,
I have a datagridview and at the doubleclick event I will like to open a
new window with a collection of data from an ADO DB , but I don't know
how to get the value of a cell in the clicked row :|
Help please :)
Paolol
 
paolol said:
Hi,
I have a datagridview and at the doubleclick event I will like to open a
new window with a collection of data from an ADO DB , but I don't know how
to get the value of a cell in the clicked row :|

Use the CellDoubleClick event instead. The DataGridViewCellEventArgs
parameter includes ColumnIndex and RowIndex properties.
 
Thanks a lot . :)

Paolol

Ben Voigt ha scritto:
Use the CellDoubleClick event instead. The DataGridViewCellEventArgs
parameter includes ColumnIndex and RowIndex properties.
 
Back
Top