DataGrid

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

Guest

The datagrid.click event only fires when the grid is clicked (ie the lines around each cell
Is there a way to detect a click inside a cell in the datagrid
TIA
 
Is there a way to detect a click inside a cell in the datagrid?

Yes.

C#
myCol.TexBox.Click+=new EventHandler(myClickHandler)

VB
AddHandler myCol.TexBox.Click, AddressOf myClickHandler

Ernest
 
Back
Top