"py" <[EMAIL PROTECTED]> wrote:
>
>I have the following code:
>...
>there are two problems.
>1) i want the sizer (that is returned from buildTopPanel()) to fill the
>screen wide/tall. now the text control in it is very small in the
>upper-left corner.
>
>2) the scroll bars and borders on the t
I have the following code:
[code]
class MainFrame(wx.Frame):
def __init__(self, parent, id, title):
wx.Frame.__init__(self, parent, wx.ID_ANY, title,
style=wx.DEFAULT_FRAME_STYLE |wx.NO_FULL_REPAINT_ON_RESIZE)
# build top area
topSizer = self.buildTopPanel()
# bu