Re: deselect an iterm in ListBox wxPython

2007-08-11 Thread kyosohma
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

deselect an iterm in ListBox wxPython

2007-08-11 Thread Bailu
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