fafalone.... um... that may work... but I don't think that is what's needed...

pinguinito -- you need to set the selected item to the new item, then make the ITEM ensurevisible....
against my better judgement.... like this:

Code:
Set objItem = LV_Cliente.ListItems.Add(, , rs(0))
objItem.SubItems(1) = rs!name
objItem.SubItems(2) = rs!age
objItem.SubItems(3) = rs!address
objItem.EnsureVisible
objItem.Selected = True
-tg