What I'd like to achieve is having values written to the 2 column listView (should be on the same row). The codes below don't work out right. Everytime something added to SubItem, the value in the first column is pushed down to the next row. Any help is greatly appreciated.
lstViewAll.ListItems.Clear
lstViewAll.ColumnHeaders.Add , , "Jur"
lstViewAll.ColumnHeaders.Add , , "Facet"
lstViewAll.Sorted = True
lstViewAll.View = lvwReport
Do Until pFFeature Is Nothing
lstViewAll.ListItems.Add , , strJur
lstViewAll.ListItems.Add.ListSubItems.Add , , pFFeature.Value(1)
Set pFFeature = pFCursor.NextFeature
Loop