Quote Originally Posted by Hack
Off the top of my head, I would use .Selected. Something like
VB Code:
  1. Dim MyItem As ListItem
  2. Set MyItem = ListView1.ListItems.Add(, , "This is my line of text")
  3. MyItem.Selected = True
  4. MyItem.EnsureVisible
  5. Set MyItem = Nothing
Yes!