I would like to stop the wxtreecontrol from being active will processes
are occurring because of a selection changing or changed event so that
they may finish before the next event is fired.
Any help would be greatly appreciated.
Kevin Walden
I would like to stop the wxtreecontrol from being active will processes
are occurring because of a selection changing or changed event so that
they may finish before the next event is fired.
Any help would be greatly appreciated.
Kevin Walden
Kevin Walden wrote:
I would like to stop the wxtreecontrol from being active will processes
are occurring because of a selection changing or changed event so that
they may finish before the next event is fired.
You could set a busy flag and then either skip or postone your event handlers if the flag is set. You could also try calling tree.Enable(False) but that will also change the visual appearance and may not be what you want.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!