AD
Administrator
Syncfusion Team
October 12, 2002 06:49 AM UTC
Have you tried explicitly adding the handler by calling AddHandler?
'maybe in your OnLoad override, add
AddHandler ctlGrid.grdInfo.CellDoubleClick, AddressOf HandleDClick
'...
Private Sub HandleDClick(ByVal sender as Object, ByVal e as GridCellClickEventArgs)
'do whatever....
End Sub
RM
Rollan Mosko
October 14, 2002 12:53 PM UTC
Hi Clay,
That does the trick. I haven't had to add any handlers manually until now. I'll use this technique when I have similar problems in the future.
thanks again,
Rollan