Button to Maximize of The Window

Hello to all.
I am beginner in the language wxPython and I need to know how to disable the button
restore/maximize of a window of the type wxmdiparentframe.
Thank you,
Fernando.

···

_________________________________________________________________
MSN Messenger: converse com os seus amigos online. http://messenger.msn.com.br

Hello to all.
I am beginner in the language wxPython and I need to know how to disable
the
button
restore/maximize of a window of the type wxmdiparentframe.
Thank you,
Fernando.

Put the wxMDIParentFrame style like this:
if you use:
  1) from wxPython.wx import *
  ....
  style=wxSYSTEM_MENU | wxCAPTION | wxMINIMIZE_BOX | wxVSCROLL | wxHSCROLL
  ...

  2) import wx
  ...
  style=wx.SYSTEM_MENU | wx.CAPTION | wx.MINIMIZE_BOX | wx.VSCROLL |
wx.HSCROLL
  ...

(Portuguese)--------------------------------------
  No parametro style do wxMDIParentFrame coloca,
  se utilizares:
  1) from wxPython.wx import *
  ....
  style=wxSYSTEM_MENU | wxCAPTION | wxMINIMIZE_BOX | wxVSCROLL | wxHSCROLL
  ...

  2) import wx
  ...
  style=wx.SYSTEM_MENU | wx.CAPTION | wx.MINIMIZE_BOX | wx.VSCROLL |
wx.HSCROLL
  ...

Ricardo