m.prosperi at libero.it:
>
> I've added:
>
> self.Bind(wx.EVT_SIZE, self.OnSize)
>
> def OnSize(self,evt):
> evt.Skip()
>
> but haven't got the result
Robin said the handler should do nothing, but calling evt.Skip() gives
other event handlers a shot at that same event. Did you try:
def OnSize(self, event):
pass
Cheers, Frank