I need to handle the DblClick event without expanding the items. Is it possible?
The control’s ExpandOnDblClick property whether the item is expanded or collapsed when the user dbl clicks an item. By default, the ExpandOnDblClick is True, so you need to set the ExpandOnDblClick property on False, and to use a handler like follows: Private Sub Grid1_DblClick(Shift As Integer, X As Single, Y As Single) With Grid1 Dim c As Long, h As HITEM, hit as Long h = .ItemFromPoint(X / Screen.TwipsPerPixelX, Y / Screen.TwipsPerPixelY, c, hit) If Not (h = 0) Then With .Items Debug.Print .