<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Creating a GUI in Python using Tkinter - Part 2</title>
	<atom:link href="http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/</link>
	<description>one man's journey into python...</description>
	<pubDate>Sun, 06 Jul 2008 23:50:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>By: Alan</title>
		<link>http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/#comment-3750</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Fri, 27 Oct 2006 15:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=16#comment-3750</guid>
		<description>&lt;strong&gt;Emmett&lt;/strong&gt;

Better a lean peace than a fat victory...</description>
		<content:encoded><![CDATA[<p><strong>Emmett</strong></p>
<p>Better a lean peace than a fat victory&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selsine</title>
		<link>http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/#comment-2915</link>
		<dc:creator>selsine</dc:creator>
		<pubDate>Fri, 29 Sep 2006 01:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=16#comment-2915</guid>
		<description>Hi bookymonster,

Thanks for the information I was trying to figure out (after looking at the code) why it would be different in the two locations, since I generally paste my code into the post directly from my editor. 

Then after attempting to fix I remembered!  It's a strange wordpress bug that doesn't like the  in the events and things that they are actually HTML tags!  For whatever reason the lower case and the spaces seem to help.

Thanks for reminding me about this, I'll have to come up with some sort of a solution.</description>
		<content:encoded><![CDATA[<p>Hi bookymonster,</p>
<p>Thanks for the information I was trying to figure out (after looking at the code) why it would be different in the two locations, since I generally paste my code into the post directly from my editor. </p>
<p>Then after attempting to fix I remembered!  It&#8217;s a strange wordpress bug that doesn&#8217;t like the  in the events and things that they are actually HTML tags!  For whatever reason the lower case and the spaces seem to help.</p>
<p>Thanks for reminding me about this, I&#8217;ll have to come up with some sort of a solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bookymonster</title>
		<link>http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/#comment-2815</link>
		<dc:creator>bookymonster</dc:creator>
		<pubDate>Tue, 26 Sep 2006 15:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=16#comment-2815</guid>
		<description>Hey, nice tutorial. Gave me a quick intro into tkinter, which was what I was looking for.

I think I have found a couple of errors in the code you have posted on this page. It differs from your txt version in a few places, which results in it not running(on my version of python anyway).

On line 57, and 113-115, there seems to be errors with the capilisation and spacing of the event strings. They are fine in the txt file though.

I also had a problem with the hand cursor, it seems I needed to change it to 'hand2' in order for it to work.</description>
		<content:encoded><![CDATA[<p>Hey, nice tutorial. Gave me a quick intro into tkinter, which was what I was looking for.</p>
<p>I think I have found a couple of errors in the code you have posted on this page. It differs from your txt version in a few places, which results in it not running(on my version of python anyway).</p>
<p>On line 57, and 113-115, there seems to be errors with the capilisation and spacing of the event strings. They are fine in the txt file though.</p>
<p>I also had a problem with the hand cursor, it seems I needed to change it to &#8216;hand2&#8242; in order for it to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: selsine</title>
		<link>http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/#comment-2460</link>
		<dc:creator>selsine</dc:creator>
		<pubDate>Tue, 19 Sep 2006 13:20:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=16#comment-2460</guid>
		<description>Hi Mario,

The weight property is defined as follows by the pythonware site:
&lt;blockquote&gt;A relative weight used to distribute additional space between columns (rows). A column with the weight 2 will grow twice as fast as a column with weight 1. The default is 0, which means that the column will not grow at all.&lt;/blockquote&gt;

If you comment out all of the InitResizing() function you should see that while the entire application still resizes, the items in the grid retain their original size.

Whereas with it uncommented the Site ListBox and the Text widget will resize when you size the application.

I hope this helps!  If you have anymore questions let me know.</description>
		<content:encoded><![CDATA[<p>Hi Mario,</p>
<p>The weight property is defined as follows by the pythonware site:</p>
<blockquote><p>A relative weight used to distribute additional space between columns (rows). A column with the weight 2 will grow twice as fast as a column with weight 1. The default is 0, which means that the column will not grow at all.</p></blockquote>
<p>If you comment out all of the InitResizing() function you should see that while the entire application still resizes, the items in the grid retain their original size.</p>
<p>Whereas with it uncommented the Site ListBox and the Text widget will resize when you size the application.</p>
<p>I hope this helps!  If you have anymore questions let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mario</title>
		<link>http://www.learningpython.com/2006/02/19/creating-a-gui-in-python-using-tkinter-part-2/#comment-2348</link>
		<dc:creator>mario</dc:creator>
		<pubDate>Sun, 17 Sep 2006 06:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.learningpython.com/?p=16#comment-2348</guid>
		<description>Hi,

Thanks for the good tutorial. Exactly what I was looking for.
The only thing I cn't figure out is the reason for the resizing function.
Commented it out to see the the difference, but ca't see any different behaviour.

Regards,
Mario</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for the good tutorial. Exactly what I was looking for.<br />
The only thing I cn&#8217;t figure out is the reason for the resizing function.<br />
Commented it out to see the the difference, but ca&#8217;t see any different behaviour.</p>
<p>Regards,<br />
Mario</p>
]]></content:encoded>
	</item>
</channel>
</rss>
