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
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
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
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