I have to support drag & drop from other applications to ExGrid-control, but don know what to do. Can you point me on the right direction?
Change the OleDropMode property to exOleDropManual and handle the OLEDragDrop event. For instance, the following sample displays the files that user drags to the control. Private Sub Grid1_OLEDragDrop(ByVal Data As EXGRIDLibCtl.IExDataObject, Effect As Long, ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single) If (Data.GetFormat(exCFFiles)) Then With Data For Each f In .Files Debug.Print f Next End With End If End Sub In case the user drags anything else than files, you have to use the GetFormat and GetData properties.