Thank you.
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, 24 Jan 2007 13:35:51 -0800, citronelu wrote:
> Hi,
>
> I'm new to wxpython, and the following code is my first serious
> attempt:
>
>
> #~ start code
> import wx
>
> class MyPanel(wx.Panel):
> def __init__(self, parent, id):
> wx.Panel.__init__(self, parent, id)
> s
On 24 Jan 2007 13:35:51 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm new to wxpython, and the following code is my first serious
> attempt:
>
>
> #~ start code
> import wx
>
> class MyPanel(wx.Panel):
> def __init__(self, parent, id):
> wx.Panel.__init__(self, paren
Hi,
I'm new to wxpython, and the following code is my first serious
attempt:
#~ start code
import wx
class MyPanel(wx.Panel):
def __init__(self, parent, id):
wx.Panel.__init__(self, parent, id)
self.parent = parent
button = wx.Button(self, -1, "Refresh")
butt