"ata.jaf" writes:
> import wx
>
> class MainWindow(wx.Frame) :
> def __init__(self, parent, title) :
>wx.Frame.__init__(self, parent, title=title, size=(200, 100))
>self.control = wx.TextCtrl(self, style=wx.TE_MULTILINE)
>self.CreateStatusBar()
>
>filemenu = wx.Menu()
>
>file
On Thu, Jul 15, 2010 at 3:04 PM, ata.jaf wrote:
> Hi,
> I'm newbie to wxPython and need it to develop my little app.
> But from start I have problems with tutorials. Because all of them are
> compatible with Windows but not so much with Mac.
> For example in this code:
>
>
> import wx
>
> class M