views:

31

answers:

1
+1  A: 

I usually do something like this when I need to update a ListCtrl:

self.list_ctrl.InsertStringItem(index, data) self.list_ctrl.SetStringItem(index, 1, moreData)

Lately, I've been using ObjectListView instead of the ListCtrl because I think it's just easier to use and more flexible too: http://objectlistview.sourceforge.net/python/

Mike Driscoll