listview item update
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, Does anyone out there know how to update the text value of a subitem of a listview and refresh the list to show the changes? the code I have is:
Me.listview.SelectedItems(0).SubItems.Item(1).Text = "Something" Me.listview.Invalidate() Me.listview.Refresh() Me.listview.Update()
The setting of the text works, but the invalidate, refresh and update don't seem to update the text displayed to the user. THank youeatwork