I have a ListView in my project which populates with with all zip files in a selected directory. The user can change the order (ascending/descending) on either column.
Q1...I wish to always have the first file in the list (when reordered) selected. I've tried:
lstMyListView.ListItems(0).Selected = True
but that doesn't work.
Q2...Even the item selected isn't always highlighted, why?