Re: wx: PyNoAppError

2006-05-31 Thread SuperHik
Scott David Daniels wrote: > SuperHik wrote: > > (1) A wxPython question. Better to ask on the wxPython newsgroup > (listed as comp.python.wxpython on gmane). I'm aware it's a wxPython question but I wasn't aware of the group you mentioned. Thank you! > >> Using XP SP2, PythonWin 2.4.3, any

Re: wx: PyNoAppError

2006-05-31 Thread Scott David Daniels
SuperHik wrote: (1) A wxPython question. Better to ask on the wxPython newsgroup (listed as comp.python.wxpython on gmane). > Using XP SP2, PythonWin 2.4.3, any trying to use wx 2.6.3.2 > When using wx, the first time I run a script it runs fine. > Second time, it rasises an error: Up

wx: PyNoAppError

2006-05-31 Thread SuperHik
Hi! Using XP SP2, PythonWin 2.4.3, any trying to use wx 2.6.3.2 When using wx, the first time I run a script it runs fine. Second time, it rasises an error: [Script]** import wx app = wx.App() win = wx.Frame(None, title="Simple Editor") win.Show() app.MainLoop() [