One day at work last month, I was told that we had a feature request for one of my programs. They wanted a "dark mode" for when they used my application at night as the normal colors were kind of glaring. My program is used in laptops in police cars, so I could understand their […]
One of the new agw widgets to be included in wxPython is one called the UltimateListCtrl. It's a pure Python widget that can have pretty much any other widget stuck into any of the cells, which makes it really flexible. It also allows the skilled programmer the ability to add custom renderers to make the […]
PyCon USA is looking for people to come and give talks, tutorials and poster sessions. So whether you are one of those people who just loves to talk or you're more of a visual person, there's a place for you. For the talkers, and I mean serious talkers, I would recommend the tutorial or regular […]
We had our October Pyowa meeting last night (10/07/2011) at the IMT Group building in West Des Moines, IA. One of their programmers gave a talk on the python open document (pod) library that is included with the Appy framework. The gist of the talk was that you could create template files in LibreOffice or […]
September 20, 2011 by
Mike If you've been in the wxPython community for more than a couple months, you will probably recognize the following question: "How do I bind multiple buttons to the same event handler and make them do different things?" Well, this article will show you how to do exactly that.
Recently, Andrea Gavana, developer of the agw library in the wxPython code base, released his newest widget: XLSGrid. It's purpose is to faithfully reproduce the appearance of a Microsoft Excel spreadsheet (one worksheet per every instance of XLSGrid). This widget is based on wx.grid.PyGridTableBase and wx.grid.PyGridCellRenderer and requires xlrd. Andrea also recommends using Mark Hammond's […]