Avoid falling into this odd habit though:
Code:
Private Sub Command2_Click()
List1.RemoveItem (List1.ListIndex)
End Sub
Those parentheses are incorrect, and can have nasty unexpected side effects if you don't understand what your use of them is asking the compiler to do. They are not innocuous, though you might get away with it 80% of the time.
This is a sort of "creeping crud" that happens when people use The Great Pretender (VB.Net) for a while, where Anders and Friends decided to warp decades-old Microsoft Basic syntax.
What you want here is:
Code:
Private Sub Command2_Click()
List1.RemoveItem List1.ListIndex
End Sub