Thx a lot!
You really helped me out!
But just now occured some strange thing...
When I check files one after another everything is ok... but as soon as I check a whole folder and want to deselect some of the files in this folder, the folder's checkbox disappears! (not like checkboxes were set =false, but leaving space between tree and folder name)
I believe the problem lies in the semiselect feature.
I'm using the ExTvw_ItemStateIconChanged sub from your TechDemo example:
Code: Select all
Private Sub ExTreeView_ItemStateIconChanged(ByVal hItem As Long, ByVal OldStateIcon As Long, ByVal NewStateIcon As Long)
Const Deselected = 1
Const Selected = 2
Const SemiSelected = 3
Dim foundDeselected As Boolean
Dim foundSelected As Boolean
Dim foundSemiSelected As Boolean
Dim allSelected As Boolean
Dim hParent As Long
setStateIcons hItem, NewStateIcon
' Parent-Items updaten
With ExTreeView
hParent = .ItemGetParentItem(hItem)
While (hParent <> -1) And (hParent <> 0)
foundDeselected = (.ItemGetFirstSubItem(hParent, Deselected) <> -1)
foundSelected = (.ItemGetFirstSubItem(hParent, Selected) <> -1)
foundSemiSelected = (.ItemGetFirstSubItem(hParent, SemiSelected) <> -1)
If foundSemiSelected Then
.ItemStateIconIndex(hParent) = SemiSelected
Else
If foundSelected And foundDeselected Then
.ItemStateIconIndex(hParent) = SemiSelected
ElseIf foundSelected And Not foundDeselected Then
.ItemStateIconIndex(hParent) = Selected
ElseIf foundDeselected And Not foundSelected Then
.ItemStateIconIndex(hParent) = Deselected
End If
End If
hParent = .ItemGetParentItem(hParent)
Wend
End With
End Sub
As soon as my debugger runs through this code:
Code: Select all
If foundSelected And foundDeselected Then
.ItemStateIconIndex(hParent) = SemiSelected
the folder's checkbox disappears.
SemiSelected is 3. When I use 0, 1 or 2 as value, the checkbox does what it schould do.
In TechDemo my debugger never runs through these lines, so the folder checkbox is checked when I directly check it and unchecked when I just check some files in the folder, but never semiselected.
I wonder what's wrong...?
Glueckskeks
