
I Dont get the Listview drag and drop model
Hello:
I have a a multicolumnar list view in detail view and I want to drag the
value of a PARTICULAR cell to something like Microsoft Word. The value
dragged will always be a string
When I implement
Private Sub listViewSearchResults_ItemDrag(ByVal sender As Object, ByVal e
As System.Windows.Forms.ItemDragEventArgs) Handles
listViewSearchResults.ItemDrag
listViewSearchResults.DoDragDrop(e.Item, DragDropEffects.Copy)
End Sub
All I get is a symbol like a O with a line through it (obviously failing)
Where can I find some code examples on how to get this to work ?
Thanks
Terry