Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #72.8K
Ranked #4K
~66.2K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for vegaseat

[QUOTE=scru;864990]Here's an example of a basic window frame in pyQT. You can get pyQT from here: [url]http://www.riverbankcomputing.co.uk/software/pyqt/download[/url] [code=python] # Code Example: Display a window in PyQt4 # Python 2.6 with PyQt 4 import sys from PyQt4 import QtGui class MainFrame(QtGui.QMainWindow): def __init__(self): QtGui.QMainWindow.__init__(self) self.setWindowTitle("Window title") # title self.resize(1024, 768) # …

Member Avatar for vegaseat
9
45K
Member Avatar for vegaseat

Thanks for this post--i suspect it will be way popular. Neither the wxPython book (Robin Dunn's "wxPython in Action", Manning publ.) nor the demo code in the wx distro bother with the lower-level mechanics of getting data into the PyGridTableBase instance, which is too bad because a fair amount of …

Member Avatar for HiHe
2
21K