something like:
VB Code:
  1. For ctr = 0 To List1.ListCount
  2.       MsgBox List1.List(ctr)
  3.       If Left(List1.List(ctr),1) = "A" then
  4.               MsgBox ctr
  5.       End if
  6. Next