This question is locked. New answers and comments are not allowed.
                        
                        The example posted here
http://www.telerik.com/community/forums/winforms/ui-controls/drop-and-drag-between-two-listbox.aspx
only allows single listboxitem moves. If I set the mousedown event to be
    
The listbox does not select the proper values.
Is there a way you can drag multiple values?
Thanks
-Matt
                                http://www.telerik.com/community/forums/winforms/ui-controls/drop-and-drag-between-two-listbox.aspx
only allows single listboxitem moves. If I set the mousedown event to be
| Private Sub lstMembers_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles lstMembers.MouseDown | 
| Dim lstBox As RadListBox = sender | 
| lstBox.DoDragDrop(lstBox.SelectedItems, DragDropEffects.Move) | 
| End Sub | 
The listbox does not select the proper values.
Is there a way you can drag multiple values?
Thanks
-Matt

