"Stephen Thorne" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> On Thu, 24 Mar 2005 06:21:36 GMT, Alex VanderWoude <[EMAIL PROTECTED]>
wrote:
> > I am attempting to save my window's size and position when it closes.
So I
> > figured I'd put some code in the __del__() method:
> >
> >
On Thu, 24 Mar 2005 06:21:36 GMT, Alex VanderWoude <[EMAIL PROTECTED]> wrote:
> I am attempting to save my window's size and position when it closes. So I
> figured I'd put some code in the __del__() method:
>
> from wxPython import *
> class MyWindow(wxFrame):
> def __init__(self, parent, id
I am attempting to save my window's size and position when it closes. So I
figured I'd put some code in the __del__() method:
from wxPython import *
class MyWindow(wxFrame):
def __init__(self, parent, id=wxID_ANY, title=None, style=None):
# Some stuff here.
def __del__(self):