Reloading Listview in vb6

I am working on Vb6. And I have a Listview that displays data from a table, but when I update the database values, I want to reload the data in a listview. it restarts, but the previous data is also present with the new one. Pls help.

+4
source share
1 answer

Call

YourListView.ListItems.Clear 

before you (re) upload any data to your list.

+2
source

All Articles