That makes sense. I am a newbie to python programming. What really confuses me is that there are so many gui programming options for python (i.e. pywin32, wxPython, etc). Is this means that all of these available gui options be able to integrate with threading? Thanks.
<br><br><div><span class="gmail_quote">On 3/20/07, <b class="gmail_sendername">Kent Johnson</b> &lt;<a href="mailto:kent37@tds.net">kent37@tds.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Ben wrote:<br>&gt; Hi all,<br>&gt;<br>&gt; I am curious about one thing. I have been doing research on gui<br>&gt; programming. One thing that I don&#39;t understand is why there are some<br>&gt; examples uses threading in the gui examples. Is there any benefits or
<br>&gt; advantages for using the threading in the gui programming? Thanks.<br><br>This is commonly done when a user action starts some kind of processing<br>that will take some time. In order for the GUI to remain responsive, the
<br>long process must be in a different thread. In general, the GUI will not<br>respond to new input until the event handler for the user action returns.<br><br>Kent<br></blockquote></div><br>