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
Post a Comment