VB Code:
  1. Dim i As Integer
  2. Dim x As Integer
  3. i = List0.ListCount
  4. x = 0
  5. Do While Not x = i
  6. List1.AddItem List0.ItemData(x)
  7. x = x + 1
  8. Loop

I got it too! Haha just saw your reply moinkhan.
Your's definitely shorter. Any pros/cons besides length of code?
Comments appreciated =P

Astro