Re: wxpython application ( problem ? )

2008-01-02 Thread kyosohma
On Jan 2, 5:24 am, [EMAIL PROTECTED] wrote: > Hello, > > Here is sample of my simple script with wxpython and modules: > subprocess,threading, directpython... > > Code sample: > > import wx > import wx.aui > app=wx.App() > frame=wx.Frame(None,title="New project") > > #There is also part with wx

Re: wxpython application ( problem ? )

2008-01-02 Thread Bjoern Schliessmann
[EMAIL PROTECTED] wrote: > yes, so what's the problem? http://wxwidgets.org/manuals/stable/wx_wxthreadoverview.html | If you do decide to use threads in your application, it is | strongly recommended that no more than one thread calls GUI | functions. The thread sample shows that it is possible f

Re: wxpython application ( problem ? )

2008-01-02 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: > On 2 sij, 12:29, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: >> On Wed, 02 Jan 2008 03:24:56 -0800, vedrandekovic wrote: >> > Here is sample of my simple script with wxpython and modules: >> > subprocess,threading, directpython... >> >> Are you accessing the

Re: wxpython application ( problem ? )

2008-01-02 Thread vedrandekovic
On 2 sij, 12:29, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote: > On Wed, 02 Jan 2008 03:24:56 -0800, vedrandekovic wrote: > > Here is sample of my simple script with wxpython and modules: > > subprocess,threading, directpython... > > Are you accessing the GUI from threads? > > Ciao, >

Re: wxpython application ( problem ? )

2008-01-02 Thread Marc 'BlackJack' Rintsch
On Wed, 02 Jan 2008 03:24:56 -0800, vedrandekovic wrote: > Here is sample of my simple script with wxpython and modules: > subprocess,threading, directpython... Are you accessing the GUI from threads? Ciao, Marc 'BlackJack' Rintsch -- http://mail.python.org/mailman/listinfo/python-l

wxpython application ( problem ? )

2008-01-02 Thread vedrandekovic
Hello, Here is sample of my simple script with wxpython and modules: subprocess,threading, directpython... Code sample: import wx import wx.aui app=wx.App() frame=wx.Frame(None,title="New project") #There is also part with wx.aui frame.Show() app.MainLoop() After a few minutes wx applica