Quote Originally Posted by Krool View Post
Delete respects now the ClipMode (= ExcludeHidden)
Doesn't work for me.

Code:
Private Sub Command1_Click()
   With VBFlexGrid1
      .ClipPasteMode = FlexClipPasteModeNormal
      .Col = 1:    .Row = 1
      .ColSel = 3: .RowSel = 2
      .ColHidden(2) = True
      .Delete                  ' The hidden col(2) was cleaned too
'      .Clear FlexClearClip, FlexClearText
      .ColHidden(2) = False
      .SetFocus
   End With
End Sub