vb.net - ObjectListView cell contents changing Issue -


i wanted pragmatically change content of cell. have tried this

private structure items    dim id integer    dim name string end structure  dim objitem items  private sub additem()    objitem.id = 1    objitem.name = "name"    objectlistview.addobject(objitem) end sub  private sub changeitem()    objitem.name = "myname"    objectlistview.refreshobject(objitem) end sum 

additem() method working fine. changeitem() method doesn't work. what's wrong code


Comments

Popular posts from this blog

java - How to Configure JAXRS and Spring With Annotations -

visual studio - TFS will not accept changes I've made to a Java project -

php - Create image in codeigniter on the fly -