On Aug 11, 2:53 am, Bailu <[EMAIL PROTECTED]> wrote:
> Hi,
>
>I am a newbie in wxPython and doing a program with ListBox,
> I want to select and deselect items in this box,
> I have use
>
> self.devlist = wx.ListBox(self, style=wx.LB_MULTIPLE)
> self.Bind(wx.EVT_LISTBOX, self.select_dev, self.d
Hi,
I am a newbie in wxPython and doing a program with ListBox,
I want to select and deselect items in this box,
I have use
self.devlist = wx.ListBox(self, style=wx.LB_MULTIPLE)
self.Bind(wx.EVT_LISTBOX, self.select_dev, self.devlist)
to create this box, but don't know how to implement self.s