Re: Invoke a method to a specific thread

2005-08-04 Thread Varghjärta
On 25/07/05, Diez B.Roggisch <[EMAIL PROTECTED]> wrote: > Varghjärta gmail.com> writes: > > > If I have "GUIClass":... > > And start another thread and from that thread I want to call the > > method "PaintSomething()" in "GUIClass" _in_ the same thread that > > "GUIClass" lives in. > > There is

Re: Invoke a method to a specific thread

2005-07-25 Thread Diez B.Roggisch
Varghjärta gmail.com> writes: > If I have "GUIClass":... > And start another thread and from that thread I want to call the > method "PaintSomething()" in "GUIClass" _in_ the same thread that > "GUIClass" lives in. There is no such thing in python, or any programming language for that matter. I

Re: Invoke a method to a specific thread

2005-07-24 Thread en.karpachov
Mon, Jul 25, 2005 at 01:20:39PM +0800, Varghj?rta пишет: > When doing GUI apps in C# I often have to call a method that will > modify the GUI somehow from a different thread then the GUI is on (to > allow for GUI responsiveness). I simply call Invoke() or BeginInvoke > which resides in another thre

Invoke a method to a specific thread

2005-07-24 Thread Varghjärta
Taking the opportunity to ask yet another python question as a newbie to this list, that's been bugging a wee but that I've managed to put off. When doing GUI apps in C# I often have to call a method that will modify the GUI somehow from a different thread then the GUI is on (to allow for GUI resp