Im sure some1 already asked for that but i can't find any thread talking about that, could some1 explain it or send me the url where i could get any help?? btw i want the user to be able to drag and drop a URL form IE to my program (in a list box)
Printable View
Im sure some1 already asked for that but i can't find any thread talking about that, could some1 explain it or send me the url where i could get any help?? btw i want the user to be able to drag and drop a URL form IE to my program (in a list box)
Paste this on a form, and run. Drag a url on it and look what happens ;)
Code: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) Then
List1.Additem Data.GetData(vbCFText)
End If
End Sub