I noticed I have two versions of wxPython installed on my linux system. I found a way to choose which version you want to import
#!/usr/bin/env python
import wxversion
wxversion.select('2.6')
I noticed I have two versions of wxPython installed on my linux system. I found a way to choose which version you want to import
#!/usr/bin/env python
import wxversion
wxversion.select('2.6')
Nice code, I will have to remember that!
For more info about different Python versions see :
http://wiki.wxpython.org/index.cgi/MultiVersionInstalls
Regards ,
Peter
since I started this thread, I am going to to jump topics a little. I tried to run the code from this thread
http://www.daniweb.com/techtalkforums/thread34020.html
When I run it on windows, it works fine. When I run it on linux, using wxPython-2.6 it does not run correctly. It shows the sliders , but the two coloered boxes on the left are missing. Any idea why this is happening?
Does it use SetBackgroundColour()? This may work on Windows only, I know some widgets like the wxMenuItem do have that caveat. Not quite sure about labels like wxStaticText.
Should that be the case, then you have to go to rectangles, brush colors or floodfills.
yup it does, that may be the reason. Thanks :-)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.