DragDrop je málo, třeba ještě použít DragEnter Aniž bych se zabýval výběrem položky, použiji první (jde o princip):
Private Sub ListBox1_MouseDown(ByVal sender As Object, ByVal e As _
System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseDown
ListBox1.DoDragDrop(ListBox1.SelectedItem, DragDropEffects.Copy)
End Sub
Private Sub ListBox2_DragEnter(ByVal sender As Object, ByVal e As _
System.Windows.Forms.DragEventArgs) Handles ListBox2.DragEnter
e.Effect = DragDropEffects.Copy
End Sub
Private Sub ListBox2_DragDrop(ByVal sender As Object, ByVal e As _
System.Windows.Forms.DragEventArgs) Handles ListBox2.DragDrop
ListBox2.Items(0) = e.Data.GetData(DataFormats.Text, True)
End Sub
|