> can someone tell me how can I drag items from one listbox to another?
> thanks in advance..
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!
Try this:
In the MouseDown handler of ListView1, do ListView1.Drag vbBeginDrag. Set
ListView1.DragIcon to whatever icon you want.
In the DragDrop handler of ListView2, just add all the selected items in
ListView1 to ListView2.
You need to work on it a bit, but that should get you started.
Dave