= Code Starting Points = All code has to begin somewhere, but it can be something of a drag pulling out the old notes and starting up. Also, I've noticed that there are different ways to start a wxPython program, some very interesting and original. Fill this in as you like; I'm working with XRC right now, so I've written XrcStartingPoints. -- LionKimbro <> == Single Frame, Sizer == {{{ #!python import wx FRAME_TITLE = "Demo" FRAME_SIZE = (300,200) class AppFrame(wx.Frame): def __init__(self): wxFrame.__init__( self, None, -1, FRAME_TITLE, size=FRAME_SIZE, style=wx.DEFAULT_FRAME_STYLE ) self.sizer = wxBoxSizer( wx.VERTICAL ) # put stuff into sizer # apply sizer self.SetSizer(self.sizer) self.SetAutoLayout(1) self.Show(1) app = wx.PySimpleApp() frame = AppFrame() app.MainLoop() }}}