resizing custom wxBitmapButtons

This is unrelated to your question, but related to a recent question
posted on this list: when you destroy and re-create your buttons, do you
re-bind the new events? If so, all the old event bindings stick around.
This might get to be an issue after a lot of resizing. Perhaps you could
change the properties of the buttons, rather than destroying them and
re-creating them?

wx.BitmapButton.SetBitmapLabel()
wx.BitmapButton.SetClientSize()
wx.BitmapButton.Move()

Thanks, I've solved it. It was not this, just a bad judgement I made...

Regards,

Cristina.