
What's next? I've found some small things that will improve performance and code quality. These changes will be the last ones before starting to implement OLE Drag'n'Drop.
Code: Select all
Private Sub ExTVwU_OLEDragDrop(ByVal data As ExTVwLibUCtl.IOLEDataObject, effect As ExTVwLibUCtl.OLEDropEffectConstants, ByVal dropTarget As ExTVwLibUCtl.ITreeViewItem, ByVal button As Integer, ByVal shift As Integer, ByVal x As Single, ByVal y As Single, ByVal yToItemTop As Long, ByVal hitTestDetails As ExTVwLibUCtl.HitTestConstants)
Dim files() As String
Dim str As String
On Error Resume Next
files = data.GetData(vbCFFiles)
If Err Then
str = "No files dropped."
Else
str = "Dropped " & (UBound(files) - LBound(files) + 1) & " files:" & vbNewLine & Join(files, vbNewLine)
End If
MsgBox str
End Sub