[EMAIL PROTECTED] wrote:
> I am running through the wxPython guide and docs and extrapolating
> enough to get confused.
There is mailing list for wxPython users -
[EMAIL PROTECTED] It is pretty active and its
members, including Robin Dunn the main wxPython developer, are always
very helpful.
If
And why donĀ“t you use Pythoncard, it takes the headache out of messing
with wxPyhthon
--
http://mail.python.org/mailman/listinfo/python-list
John Ladasky wrote:
>
> [EMAIL PROTECTED] wrote:
>> I am also a newbie and learning like you are. I was wondering if do you
>> know any wxPython forum just for GUIs ?
>> Good luck with your project and hope that some guru helps us out.
>
> If you are reading this via Usenet, you can subscribe to
[EMAIL PROTECTED] wrote:
> I am also a newbie and learning like you are. I was wondering if do you
> know any wxPython forum just for GUIs ?
> Good luck with your project and hope that some guru helps us out.
If you are reading this via Usenet, you can subscribe to the newsgroup
comp.soft-sys.wxw
Oh, by the way... in your frame's constructor (the Frame1.__init__),
you'll have to make "parent" a member variable of the class so that
OnCloseMe has access to it.
I.e., in the __init__ add
self.FrameParent = parent
Then in OnCloseMe do:
self.FrameParent.Close()
--
http://mail.python.org/mailm
Instead of self.Close(), try parent.Close()
The self.Close() is closing self, which is a panel. The panel's parent
is the frame. This will let you keep the button on the frame, which
eliminates the spacing problem.
I'm not gonna test it, cuz the darn lines wrap and make it difficult to
copy you
I am also a newbie and learning like you are. I was wondering if do you
know any wxPython forum just for GUIs ?
Good luck with your project and hope that some guru helps us out.
--
http://mail.python.org/mailman/listinfo/python-list
I am running through the wxPython guide and docs and extrapolating
enough to get confused.
BAsed on the tute in the getting started wiki I created a panel that
has most of the elements I want; some check boxes and a couple of
buttons. The button I have is a simple thing that is supposed to just