Why does EVT_CHOICE not fire for one widget but does for another in the same frame.

Timothy Grant wrote:

I'm not sure what I'm doing wrong here or why the RaceChoice widget's EVT_CHOICE does not seem to be firing. I have two other Choice widgets in the frame bound to another method and both of those work exactly as expected.

Let me have a small as possible runnable sample and I'll take a look.

···

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

I found it. As usual, it was me doing something wrong. I had an event handler that did NOT have event.Skip() in it and the event was not getting propagated where it was supposed to get.

Thank you for your willingness to help out, much appreciated.

···

On Thu, Jun 26, 2008 at 10:47 PM, Robin Dunn robin@alldunn.com wrote:

Timothy Grant wrote:

I’m not sure what I’m doing wrong here or why the RaceChoice widget’s EVT_CHOICE does not seem to be firing. I have two other Choice widgets in the frame bound to another method and both of those work exactly as expected.

Let me have a small as possible runnable sample and I’ll take a look.

Robin Dunn

Software Craftsman

http://wxPython.org Java give you jitters? Relax with wxPython!


Stand Fast,
tjg.

Timothy Grant wrote:

I found it. As usual, it was me doing something wrong. I had an event handler that did NOT have event.Skip() in it and the event was not getting propagated where it was supposed to get.

Thank you for your willingness to help out, much appreciated.

That's why I always ask people to produce a sample. Most of the time you figure out the problem for yourself in the process of doing it.

···

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