wxPython problem: Can't assign size of plot.PlotCanvas

2010-04-28 Thread Kaipo ch...@taiwan
I wrought something like client = plot.PlotCanvas(childFrame2, 2,pos=(300,400),size=(100,200), name=text1) But the plotcanvas kept filling all the childFrame. Is there a way to Really adjust the size of ploscanvas? Thanks in advance for your help. The problematic code is below: class

Re: wxPython problem: Can't assign size of plot.PlotCanvas

2010-04-28 Thread CM
On Apr 28, 9:13 am, Kaipo ch...@taiwan decomposer17...@gmail.com wrote: I wrought something like client = plot.PlotCanvas(childFrame2, 2,pos=(300,400),size=(100,200), name=text1) But the plotcanvas kept filling all the childFrame. Is there a way to Really adjust the size of ploscanvas?

Re: wxPython problem: Can't assign size of plot.PlotCanvas

2010-04-28 Thread Kaipo ch...@taiwan
Thanks a lot. I'll check the wx list. CM 提到: On Apr 28, 9:13 am, Kaipo ch...@taiwan decomposer17...@gmail.com wrote: I wrought something like client = plot.PlotCanvas(childFrame2, 2,pos=(300,400),size=(100,200), name=text1) But the plotcanvas kept filling all the childFrame. Is there a way to

Re: wxPython problem

2008-09-08 Thread Paul Probert
Peter Anderson wrote: Stef Mientki said: In PyScripter, you should run wxPython in the plain remote machine (not the wxPython remote),and you should set reset before run flag or reset the remote machine each time yourself. Stef, Thanks for the help! It has taken several hours to find and

wxPython problem

2008-09-06 Thread Peter Anderson
I am trying to teach myself how to program in Python and use wxPython for GUIs. I am using PyScripter, IDLE and EditPlus as my IDEs. I have experienced an odd problem where I run a script once and it runs fine. Run it again and I get an error and the script fails. If the script is run

Re: wxPython problem

2008-09-06 Thread Stef Mientki
Peter Anderson wrote: I am trying to teach myself how to program in Python and use wxPython for GUIs. I am using PyScripter, IDLE and EditPlus as my IDEs. I have experienced an odd problem where I run a script once and it runs fine. Run it again and I get an error and the script fails. If

Re: wxPython problem

2008-09-06 Thread Peter Anderson
Stef Mientki said: In PyScripter, you should run wxPython in the plain remote machine (not the wxPython remote),and you should set reset before run flag or reset the remote machine each time yourself. Stef, Thanks for the help! It has taken several hours to find and install the correct

Re: wxPython problem

2007-11-28 Thread SMALLp
[EMAIL PROTECTED] wrote: On Nov 28, 1:06 pm, SMALLp [EMAIL PROTECTED] wrote: Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed IDLE, and i installed package python-wxgtkX. I start IDLE and when i want co compile my aplication all windows close. Also when i vrite smoethin

wxPython problem

2007-11-28 Thread SMALLp
Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed IDLE, and i installed package python-wxgtkX. I start IDLE and when i want co compile my aplication all windows close. Also when i vrite smoethin lik thile in IDLE: import wx app = wx.App() wx.Frmae(none, -1) same thing,

Re: wxPython problem

2007-11-28 Thread kyosohma
On Nov 28, 1:06 pm, SMALLp [EMAIL PROTECTED] wrote: Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed IDLE, and i installed package python-wxgtkX. I start IDLE and when i want co compile my aplication all windows close. Also when i vrite smoethin lik thile in IDLE: import

Re: wxPython problem

2007-11-28 Thread SMALLp
SMALLp wrote: [EMAIL PROTECTED] wrote: On Nov 28, 1:06 pm, SMALLp [EMAIL PROTECTED] wrote: Hy. I'm new in linux (Ubuntu 7.10) as well as in python. I installed IDLE, and i installed package python-wxgtkX. I start IDLE and when i want co compile my aplication all windows close. Also when i

Newbie - Boa Constructor, wxPython problem running Boa

2007-04-05 Thread Anbeyon
Hi all I am a Newbie to the world of Python, wxPython and Boa. Please forgive me if there is a really obvious answer to this one. I am trying to get Python, wxPython and Boa all to install on my Windows XP machine. I have both Python and wxPython running. However, when I launch Boa I get an

Re: Newbie - Boa Constructor, wxPython problem running Boa

2007-04-05 Thread kyosohma
On Apr 5, 8:32 am, Anbeyon [EMAIL PROTECTED] wrote: Hi all I am a Newbie to the world of Python, wxPython and Boa. Please forgive me if there is a really obvious answer to this one. I am trying to get Python, wxPython and Boa all to install on my Windows XP machine. I have both Python

Re: wxPython problem

2006-05-06 Thread Bill Maxwell
On 28 Apr 2006 10:16:57 -0700, [EMAIL PROTECTED] wrote: What I'm wondering is, perhaps it has something to do with the wx.pth file? I can't seem to find anything in the documentation about what the path should be, which file it should be pointing to. Mine has this in it:

wxPython problem

2006-04-28 Thread scottholdensmith
I'm a little confused. I installed wxPython on my Thinkpad T23, on which I'm running Fedora Core 5. I did it using Yum and Yumex, and everything installed fine. In fact, I now have PyShell and PyCrust in my applications. Within those two apps I can use wx as a module. But from the bash shell, when

Re: wxPython problem

2006-04-28 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: I'm a little confused. I installed wxPython on my Thinkpad T23, on which I'm running Fedora Core 5. I did it using Yum and Yumex, and everything installed fine. In fact, I now have PyShell and PyCrust in my applications. Within those two apps I can use wx as a module.

Re: wxPython problem

2006-04-28 Thread scottholdensmith
No, it's python2.4. It says there's no module wx...hmm. -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython problem

2006-04-28 Thread scottholdensmith
What I'm wondering is, perhaps it has something to do with the wx.pth file? I can't seem to find anything in the documentation about what the path should be, which file it should be pointing to. Scott -- http://mail.python.org/mailman/listinfo/python-list

Twisted/wxPython Problem...

2006-04-24 Thread PeterG
Hi, I am relatively new to Python, and am learning it as part of a university module... Im currently undertaking a project to create an IM server and IM gui client. I have a very basic server, and a basic gui client. I can get my client to connect to my server, but cant get it to disconnect or

Re: Twisted/wxPython Problem...

2006-04-24 Thread Diez B. Roggisch
PeterG wrote: Hi, I am relatively new to Python, and am learning it as part of a university module... Im currently undertaking a project to create an IM server and IM gui client. I have a very basic server, and a basic gui client. I can get my client to connect to my server, but

wxPython problem

2006-04-10 Thread Hubert Pitura
Hello, I've installed openSUSE 10 64bit, Python 2.4.3 (from sources) and wxPython 2.6 (from Red Hat's rpms). When I' trying to import wx the error comes up: import wx Traceback (most recent call last): File stdin, line 1, in ? File

Re: wxPython problem

2006-04-10 Thread sillyemperor
Hubert Pitura wrote: Hello, I've installed openSUSE 10 64bit, Python 2.4.3 (from sources) and wxPython 2.6 (from Red Hat's rpms). When I' trying to import wx the error comes up: import wx Traceback (most recent call last): File stdin, line 1, in ? File

wxPython problem with freeze.py

2006-04-05 Thread ianaré
I have a wxPython application that i can run no problem from source, now i want to freeze it for distribution. I tried the freeze.py script and got the following output: snip freezing Frame1 ... freezing UserDict ... freezing __main__ ... freezing codecs ... freezing copy ... freezing copy_reg