Hello
I have a ListCtrl with 3 columns & I want to add a row. The row will
have a string in the first column, an int in the 2nd & a wx.ComboBox()
in the 3rd.
My problem is I cant find an example or functions that will allow me
to add this row? Can I add these kinds of objects to a ListCtrl or
should I be using a different Control? I am aware I can use
the .InsertString() but is there any other functions that can allow me
to insert an int & a ComboBox?
This code doesn't work:
row = wx.ListItem( "Hello", 2, wx.ComboBox( self.list_ctrl, wx.ID_ANY,
choices = ('a', 'b', 'c') ) )
self.list_ctrl.InsertItem( row )