Re: Forcing the position of scroll bars on a wxTextCtrl

2005-11-02 Thread Clans Of Intrigue
Thanks, that did the trick perfectly :) also got rid of the self._log member so the class is now just: class LogControl: """ Simple helper to redirect stdout to a panel in the GUI """ def __init__( self, textCtrl ): self._ctrl = textCtrl self.write( "Application Started...

Forcing the position of scroll bars on a wxTextCtrl

2005-11-02 Thread Clans Of Intrigue
Hello, this is my first post here so apologies if it's in the wrong place, inappropriate or embarrassingly stupid - please let me know :) My problem seems quite simple - I've redirected stdout to a wxTextCtrl, so that any trace messages appear in a log window at the bottom of my app. The problem