Re: wxPython code giving strange errors.

2008-07-18 Thread David C. Ullrich
In article <[EMAIL PROTECTED]>, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Jul 13, 10:18 am, teh_sAbEr <[EMAIL PROTECTED]> wrote: > > I'm busy trying to learn wxPython, and i'm trying to run the following > > piece of code (its from the wxPyWiki tutorial): > > > > import wx > > [...] > > > >

Re: wxPython code giving strange errors.

2008-07-13 Thread Mike Driscoll
On Jul 13, 10:18 am, teh_sAbEr <[EMAIL PROTECTED]> wrote: > I'm busy trying to learn wxPython, and i'm trying to run the following > piece of code (its from the wxPyWiki tutorial): > > import wx > > ID_ABOUT = 101 > ID_EXIT = 110 > > class MainWindow(wx.Frame): >     def __init__(self,parent,id,tit

Re: wxPython code giving strange errors.

2008-07-13 Thread Thin Myrna
teh_sAbEr wrote: > I'm busy trying to learn wxPython, and i'm trying to run the following > piece of code (its from the wxPyWiki tutorial): > > import wx > > ID_ABOUT = 101 > ID_EXIT = 110 > > class MainWindow(wx.Frame): > def __init__(self,parent,id,title): > wx.Frame.__init__(self

wxPython code giving strange errors.

2008-07-13 Thread teh_sAbEr
I'm busy trying to learn wxPython, and i'm trying to run the following piece of code (its from the wxPyWiki tutorial): import wx ID_ABOUT = 101 ID_EXIT = 110 class MainWindow(wx.Frame): def __init__(self,parent,id,title): wx.Frame.__init__(self,parent,wx.ID_ANY,title,size=(200,100))