The loop way:

VB Code:
  1. For i = 0 To List1.ListCount - 1
  2.     If List1.List(i) = "Apple" Then
  3.         MsgBox "Apple already entered"
  4.     End If
  5. Next i

You can also use SendMessage, though I forget the actual message (somebody'll most likely post it).