Hi guys.
When I add new values to a listview using :
Set lstView = ListView(0).ListItems.Add(, , txtName)
lstView.ListSubItems.Add , , txtValue
lstView.Refresh
The only problem is that this only displays a blank new line in the listview, any idea how to update it correctly?
Normally I am using a recordset so simply clear then repopulate the data but I need the user to be able to add entries to the listview. I will then cycle through the listview adding the values tot he DB only once the user has finished amending the listview.
Thanks in advance for any help.