find a value ona datagridview

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
 
B

Ben Voigt

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.
 
P

paolol

Thanks a lot . :)

Paolol

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top