The ListView_ItemMakeVisible() function makes the specified item in a list view field visible. If necessary, the contents of the list view field will be scrolled to make the specified item visible.
ListView_ItemMakeVisible(list_view_field, item_index)
• list_view_field – The list view field containing the specified item.
• item_index – A long integer specifying the list view item to make visible.
A boolean indicating whether the item was made visible. True indicates the item was made visible, while false indicates it was not.
Making an item visible does not select the item. To select the item, use ListView_SelectionSet().