Hi, Leandro!
Category headers - not blocked for input. After entering text and pressing Enter, an error occurs. See screenshot.
Attachment 186261
Printable View
Hi, Leandro!
Category headers - not blocked for input. After entering text and pressing Enter, an error occurs. See screenshot.
Attachment 186261
I add screenshot
ok, it is only a problem of the example, not of the grid itself, it is solved by checking if the row is a group, do not edit the cell.
vb6 Code:
Private Sub GridProperties_DblClick() If Combo1.Visible Then If Combo1.ListIndex = Combo1.ListCount - 1 Then Combo1.ListIndex = 0 Else Combo1.ListIndex = Combo1.ListIndex + 1 End If ElseIf Command1.Visible Then Command1_Click Else If Not GridProperties.RowIsGroup(GridProperties.CurRow) Then '<------- here GridProperties.CellStartEdit GridProperties.CurRow, 5 End If End If End Sub