Re: ABC for Github-programs and Python Programming Software Development by Reverend Jim I have developed a number of GUI applications in python. I found that the wxpython package was far better than tkinter. wxpython is based on wxwidgets which is essentially windows controls. Because wxwidgets are compiled for each major system, controls rendered by wxpython look like the native controls for whatever system is hosting. Re: Installing programs from Github Programming Software Development by Reverend Jim … strongly recommend that you look into wxpython as a much better alternative to tkinter. Wxpython is a wrapper for wxwidgets which is… matter what platform you are running on, controls rendered in wxpython/wxwidgets will always render as native controls for the platform… Re: A module that comes with Python, doesn´t register? Programming Web Development by Reverend Jim … a while before packages are upgraded to be compatible (usually wxpython). I was able to install the individual packages under python… wxPython.org Down Programming Software Development by asrekdal wxPython.org seems to be unreachable! Anyone else having this problem? thanks - andrew Re: wxPython in Vista Programming Software Development by scru wxPython is bloated, disorganized. There's a lot of …or dated. The only reason I would consider using wxPython is if I want to do a cross platform …I mean no offense to the wxPython devs; they seem like nice enough people. wxPython gets a lot of its … correct and pyQT does release an LGPL version, then wxPython may slowly fade away. And I won't be … Re: wxPython in Vista Programming Software Development by vegaseat … with Python25 on my Vista machine. To me wxPython fits the bill, it's easy to install, it's … QT/pyQT, even though some Linux friends tell me that wxPython programs work well. Re: wxPython help Programming Software Development by Ene Uran …them, so you understand self and __init__() better. Simple wxPython programs can be written without using class. Here is …A relatively good tutorial is from: [url]http://wiki.wxpython.org/index.cgi/AnotherTutorial[/url] If you haven't done… so, take a look at DaniWeb's wxPython thread at: [url]http://www.daniweb.com/forums/thread128350… Re: wxpython help Programming Software Development by shadwickman … it populates the list with the results, find your wxpython package that you installed and remove it and any dependencies… Synaptic GUI again and search 'wx'. Then find the wxpython package that fits your version of Python (if you're…list the version number in the first line). Check the wxpython package and if it asks about other dependencies, allow … Re: wxPython Programming Software Development by ZZucker Tutorials for the wxPython GUI toolkit: not bad ... [url]http://wiki.wxpython.org/AnotherTutorial[/url] this is one I like ... [url]http://zetcode.com/wxpython/[/url] Re: wxpython Programming Software Development by bumsfeld … you have? Did you install proper version of wxPython? I have Windows XP and my wx package…wx\__init__.py Here is a simple sample of wxPython code: [code]import wx class MyFrame(wx.Frame… to wxID_ANY wx.Frame.__init__(self, None, wx.ID_ANY, 'wxPython', pos=(300, 150), size=(300, 350)) self.SetBackgroundColour('green… wxPython Programming Software Development by Stefano Mtangoo Hello guys, I'm new to python I want to use wxPython for Gui programming The main problem to me is how to start wxpython have good looking but then no documentation regards steve Re: wxPython Programming Software Development by davidjhay I bought wxPython in action book, which really helped me. ISBN 1-932394-62-1. I have developed two applications that use wxPython. Both are stable and the users like the interface. Hope that helps. David Re: wxPython help Programming Software Development by lllllIllIlllI … for all of your displaying text needs. [url]http://www.wxpython.org/docs/api/wx.StaticText-class.html[/url] This you… user input you can use wx.Button [url]http://www.wxpython.org/docs/api/wx.Button-class.html[/url] Or a… its data by using the GetValue() function [url]http://www.wxpython.org/docs/api/wx.TextCtrl-class.html[/url] Hope that… wxpython help Programming Software Development by rustysynate I tried the first post on wxpython by fuse. The code is as follows # import wx # # always … you'll use # """The start of our wxPython GUI tutorial""" # # app = wx.App(redirect=False… Re: wxpython help Programming Software Development by shadwickman …'s list of trusted keys in order to get the wxpython packages. To do this, first install [i]curl[/i] by… [icode]sudo apt-get update[/icode]. 4. Get and install wxpython and its dependencies with [icode]sudo apt-get install python… Re: wxPython Programming Software Development by Stefano Mtangoo I have found good IDE though I haven't tested.wxDev-C++ , for use with Dev-C++. Is there anybody who knows how to configure it to work with wxPython? I saw them saying it is capable of exporting xml files,Is that helpful. with thanks steve Re: wxPython Programming Software Development by sneekula A program called Boa Constructor is wxDev-CPP's couterpart for Python programming. It uses wxPython and has a drag and drop frame builder. See the post at: [url]http://www.daniweb.com/forums/post400296-107.html[/url] Re: wxPython help Programming Software Development by Ene Uran It directs wxPython where to show errors/consoleIO. This will go to the … is the default app = wx.App() When I develop a wxPython program with an IDE editor that has its own output… Re: wxPython help Programming Software Development by jlm699 I suggest downloading the 'Docs and Demos' along with your wxPython install, as it gives you a great launch pad to start writing your own GUIs by giving you sample code of almost every single type of wx object. It's ridiculously helpful when starting wxPython. Re: wxPython help Programming Software Development by lllllIllIlllI …]I suggest downloading the 'Docs and Demos' along with your wxPython install, as it gives you a great launch pad to… type of wx object. It's ridiculously helpful when starting wxPython.[/QUOTE] That is in fact a great idea, that and… Re: wxPython help Programming Software Development by Ene Uran … for some widgets you are interested in: [code=python]# a wxPython example for label widgets (wx.StaticText) # and an entry or…(wx.Frame): def __init__(self, parent, mytitle): # -1 = wx.ID_ANY (wxPython will pick a unique id value) wx.Frame.__init__(self… Re: wxPython help Programming Software Development by Stefano Mtangoo This tutorial helped me alot to start wxPython [url]http://zetcode.com/wxpython[/url] Re: wxpython help Programming Software Development by vegaseat Let's hope your code does not look like the one you showed. Try to run just this ... [code=python]import wx [/code]If a similar error message comes up, then there is something wrong with your wxPython installation. Re: wxpython help Programming Software Development by rustysynate Yes i am getting the same error. Any suggestion to remove and reinstall the wxpython. I installed in the ubuntu 8.04. Re: wxpython help Programming Software Development by vegaseat … new post and title it "How to uninstall/reinstall wxPython on Linux?". My initial guess would be to use… wxpython Programming Software Development by skanker I want to use wxpython, but when I installed it python didn't recognise the module. I've looked everywhere for help but gotten nowhere so could someone help me out? Re: wxpython Programming Software Development by vegaseat The proper installation sequence is this way: 1) install the Python version for your operating system 2) install wxPython for your version of Python and OS wxPython Programming Software Development by GRaymer Just wondering if anyone has experience with wxPython. I've been looking for info about the spinButton I want to increment it at 5's or 10's just wondering if anyone has some quit hints or info. Thanks wxPython help please? Programming Software Development by dreambreeze I'm relatively new to programming in wxPython and I have been trying to put a BoxSizer within … wxPython help Programming Software Development by revenge2 Having trouble understanding using wxPython....:?: [CODE=Python] import wx class MainFrame(wx.Frame): def __init__(…