AD
Administrator
Syncfusion Team
March 19, 2004 01:37 PM UTC
Try handling CurrentCellDeactivateFailed, and simulate a click into the cell. (This would avoid worrying about exactly what kind of cell you are using.)
Private Sub GridControl1_CurrentCellDeactivateFailed(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridControl1.CurrentCellDeactivateFailed
Dim c As Control = Me.GridControl1.CurrentCell.Renderer.Control
Syncfusion.Drawing.ActiveXSnapshot.FakeLeftMouseClick(c, New Point(1, 5))
End Sub