redraw

Could you provide an example on how to to refresh this one text box on resize please?

Thanks
Ryan

Ryan Scott wrote:

Could you provide an example on how to to refresh this one text box on resize please?

    EVT_SIZE(self, self.OnSize)
    ...

  def OnSize(self, evt):
    self.theTextCtrl.Refresh()
    evt.Skip()

ยทยทยท

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