Re: [python-win32] createtoolbar

2008-02-28 Thread Mike Driscoll
Hi, > > Message: 1 > Date: Thu, 28 Feb 2008 14:34:12 +0530 > From: kNish <[EMAIL PROTECTED]> > Subject: [python-win32] createtoolbar > To: python-win32@python.org > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="iso-885

Re: [python-win32] createtoolbar

2008-02-28 Thread Ludovic Reenaers
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 kNish a écrit : > Hi, > > #!/usr/bin/python > > # panels.py > > import wx > > > class Panels(wx.Frame): >def __init__(self, parent, id, title): >wx.Frame.__init__(self, parent, id, title) > >hbox = wx.BoxSizer(wx.HORIZ

[python-win32] createtoolbar

2008-02-28 Thread kNish
Hi, #!/usr/bin/python # panels.py import wx class Panels(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__init__(self, parent, id, title) hbox = wx.BoxSizer(wx.HORIZONTAL) splitter = wx.SplitterWindow(self, -1) vbox1 = wx.BoxSizer(wx.VERTICA