Could you provide an example on how to to refresh this one text box on resize please?
Thanks
Ryan
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!