Sorting a ListView alphabetically in vb 6

1

I have two lists A and B, the list A data is exported from the DB, these already have ordered alphabetically to the list. From this list I add data in the other list (list B), the data that is inserted in list B, are sorted according to the insertion order.

I would like to know how to sort a ListView alphabetically.

    
asked by anonymous 22.05.2014 / 13:31

1 answer

3

Seven of this when constructing ListView :

minhaListView.Sorting = SortOrder.Ascending
    
22.05.2014 / 16:52