hi all.
My project is frame has button. When you click on it appear an child frame.
If the child frame is closed also the frame parent is closed. I wish
that this does not happen.
I wish that the frame parent remains open.
For test you run frame.py and click on button.
hi all.
My project is frame has button. When you click on it appear an child frame.
If the child frame is closed also the frame parent is closed. I wish
that this does not happen.
I wish that the frame parent remains open.
For test you run frame.py and click on button.
Your missing some files so it wont run but there are some obvious problems.
Namely in frame.py you are trying to create more than one App object.
You only need to create one, creating more than one is an error. So
change your onCreateFrame method
On Wed, Sep 2, 2009 at 7:43 AM, Fabio Spadaro<fabiolinospad@gmail.com> wrote:
hi all.
My project is frame has button. When you click on it appear an child frame.
If the child frame is closed also the frame parent is closed. I wish
that this does not happen.
I wish that the frame parent remains open.
For test you run frame.py and click on button.
Your missing some files so it wont run but there are some obvious problems.
Namely in frame.py you are trying to create more than one App object.
You only need to create one, creating more than one is an error. So
change your onCreateFrame method
In formcreatetable.py you are adding the same item to a sizer Twice,
this causes a double delete to happen when the window the sizer is
managing is deleted (when you close it). So this causes an exception
that is making your app crash.