Just a point. You may want to check that there is something in the ListBox first:
VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Command1_Click()
  4.  
  5.     If List1.ListIndex > -1 Then List1.ListIndex = 0
  6.  
  7. End Sub