As I can’t get working drag & drop from Outlook I have now a workaround with VB6.
The VB6 program waits for the drop down and then executes my Fivewin program with Shell (App.Path + "\testole.exe " & s).
This is the whole sourcecode of the program:
Private Sub Form_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)
If Data.GetFormat(vbCFText) = True Then
Dim s As String
Shell (App.Path + "\testole.exe " & s)
End
End If
End SubBut to have VB6 installed only for this little task is not so nice.
Does someone have a FWH solution?
Thanks in advance
Otto
