Re: Newbie wxPython questions.

2006-04-12 Thread dfh
[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

Re: Newbie wxPython questions.

2006-04-12 Thread bieliza
And why donĀ“t you use Pythoncard, it takes the headache out of messing with wxPyhthon -- http://mail.python.org/mailman/listinfo/python-list

Re: Newbie wxPython questions.

2006-04-11 Thread Butternut squash
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

Re: Newbie wxPython questions.

2006-04-07 Thread John Ladasky
[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

Re: Newbie wxPython questions.

2006-04-07 Thread chris
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

Re: Newbie wxPython questions.

2006-04-07 Thread callmebill
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

Re: Newbie wxPython questions.

2006-04-07 Thread diffuser78
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

Newbie wxPython questions.

2006-04-07 Thread nuffnough
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