I got a wxPython combobox who contains a list of sections of my .ini file. I add new section during my program is running. And I want to see also the NEW entries in my combobox.
How can I refresh it?
My code :
self.cbxCfgProfiles = wx.ComboBox(self, pos=(170, 120), size=(440, -1),
choices=getCfgProfileList(), style=wx.CB_DROPDOWN)
When I restart my program I see the new entries.
I try already self.cbxCfgProfiles.Refresh() in my method. It does not work. :(
wx.ComboBox.Clear()andwx.ComboBox.AppendItemsfunctions? – Manny D Jul 12 '11 at 15:25