Just use looping.
If you already manage to move single item, then use looping to move all items.
Jx_Man
Nearly a Senior Poster
3,329 posts since Nov 2007
Reputation Points: 1,372
Solved Threads: 444
Hi,
Try with this,
Private Sub Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button.Click
Dim i, j As Integer
i = ListBox1.Items.Count()
For j = 0 To i - 1
ListBox2.Items.Add(ListBox1.Items(j))
Next j
ListBox1.Items.Clear()
End Sub
kothaisaravan
Junior Poster in Training
51 posts since Oct 2011
Reputation Points: 10
Solved Threads: 2