Is this possible ?

My understanding of event.Skip() is that it will cause processing of the
event by additional event handlers after the current event handler has
completed. The placement of the call to Skip() in the event handler does
not affect the timing of the processing by the other event handlers. I
don't believe that the other event handlers are actually called directly
during the processing of the Skip() call.

Or am I missing something?

Mark

···

On Fri, 2007-12-21 at 15:12 -0800, Christopher Barker wrote:

But, as for your code:

> def OnPaint(self, event):
> event.Skip()

I think you wan to put the Skip() at the end of the method,

Mark Erbaugh wrote:

···

On Fri, 2007-12-21 at 15:12 -0800, Christopher Barker wrote:

But, as for your code:

def OnPaint(self, event):
   event.Skip()

I think you wan to put the Skip() at the end of the method,

My understanding of event.Skip() is that it will cause processing of the
event by additional event handlers after the current event handler has
completed. The placement of the call to Skip() in the event handler does
not affect the timing of the processing by the other event handlers. I
don't believe that the other event handlers are actually called directly
during the processing of the Skip() call.

Or am I missing something?

You are correct.

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