Trouble with CheckListCtrl

Patrick Guido Arminio wrote:

I've create a simple gui that uses the widget CheckListCtrl (I found the base code here: http://zetcode.com/wxpython/advanced/), but I've a problem: I don't know how to call a function when an item is checked, can you help me?

Override OnCheckItem in the derived class.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

How to do this?

Thanks :slight_smile:

···

On Sun, Apr 6, 2008 at 7:49 AM, Robin Dunn robin@alldunn.com wrote:

Patrick Guido Arminio wrote:

I’ve create a simple gui that uses the widget CheckListCtrl (I found the base code here: http://zetcode.com/wxpython/advanced/), but I’ve a problem: I don’t know how to call a function when an item is checked, can you help me?

Override OnCheckItem in the derived class.


Patrick Arminio