<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Mr. .NET</title>
	<atom:link href="http://mrdotnet.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mrdotnet.wordpress.com</link>
	<description>Thoughts from a Product Manager...Geek...Gamer</description>
	<lastBuildDate>Tue, 24 Nov 2009 00:42:17 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Foiled! by Luc</title>
		<link>http://mrdotnet.wordpress.com/2009/11/16/foiled/#comment-5963</link>
		<dc:creator>Luc</dc:creator>
		<pubDate>Tue, 24 Nov 2009 00:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/?p=753#comment-5963</guid>
		<description>Ouch, that sucks dude. I&#039;m just catching up on my blog roll and read this. I totally thought you were there. :( Make Pilgrim give you that multi-touch laptop!!</description>
		<content:encoded><![CDATA[<p>Ouch, that sucks dude. I&#8217;m just catching up on my blog roll and read this. I totally thought you were there. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Make Pilgrim give you that multi-touch laptop!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foiled! by James</title>
		<link>http://mrdotnet.wordpress.com/2009/11/16/foiled/#comment-5961</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 23 Nov 2009 17:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/?p=753#comment-5961</guid>
		<description>lol, I didn&#039;t think of that....that would have been good too! :D</description>
		<content:encoded><![CDATA[<p>lol, I didn&#8217;t think of that&#8230;.that would have been good too! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foiled! by Nish</title>
		<link>http://mrdotnet.wordpress.com/2009/11/16/foiled/#comment-5960</link>
		<dc:creator>Nish</dc:creator>
		<pubDate>Mon, 23 Nov 2009 15:30:06 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/?p=753#comment-5960</guid>
		<description>Yeah, you should have called back at 7 AM - when the hangover would have been at its peak :-)</description>
		<content:encoded><![CDATA[<p>Yeah, you should have called back at 7 AM &#8211; when the hangover would have been at its peak <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foiled! by James</title>
		<link>http://mrdotnet.wordpress.com/2009/11/16/foiled/#comment-5959</link>
		<dc:creator>James</dc:creator>
		<pubDate>Thu, 19 Nov 2009 22:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/?p=753#comment-5959</guid>
		<description>I heard about that!  I also got a call from my co-workers at 3am letting me know that I was missing out on the fun they were having.

I&#039;m betting they didn&#039;t wake up as refreshed as I felt this morning though :p</description>
		<content:encoded><![CDATA[<p>I heard about that!  I also got a call from my co-workers at 3am letting me know that I was missing out on the fun they were having.</p>
<p>I&#8217;m betting they didn&#8217;t wake up as refreshed as I felt this morning though :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Foiled! by Nish</title>
		<link>http://mrdotnet.wordpress.com/2009/11/16/foiled/#comment-5958</link>
		<dc:creator>Nish</dc:creator>
		<pubDate>Thu, 19 Nov 2009 22:06:36 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/?p=753#comment-5958</guid>
		<description>Too bad, James. Apparently all the attendants got a free multi-touch laptop with Windows 7 pre-installed!</description>
		<content:encoded><![CDATA[<p>Too bad, James. Apparently all the attendants got a free multi-touch laptop with Windows 7 pre-installed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ContextMenuStrip redux by dwarfsoft</title>
		<link>http://mrdotnet.wordpress.com/2004/09/23/contextmenustrip-redux/#comment-5957</link>
		<dc:creator>dwarfsoft</dc:creator>
		<pubDate>Tue, 17 Nov 2009 05:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/2004/09/23/contextmenustrip-redux/#comment-5957</guid>
		<description>Thanks for the info, found it to be great.

Had one note to make that would have given Colin the ability to achieve what he wanted using less code.

You Said &quot;Unfortunately this means you need to either have one ContextMenuStrip per control or figure out a way to determine which control was clicked and I don’t see a real obvious way of doing that.&quot;

This is incorrect. Assuming the controls are similar you can do something similar to this in the toolStripMenuItem1_click handler:

private void toolStripMenuItem1_click(object sender, EventArgs e)
{
&#160;CheckedListBox clb = &#160;contextMenuStrip1.SourceControl as &#160;CheckListBox; // you can even do this to a few different types and see which works, as your code does
&#160;Point p = clb.PointToClient(new &#160;Point(contextMenuStrip1.Left, contextMenuStrip1.Top));
}
So now point p gives you the coordinates in the actual Control that was clicked on. Which is where your code left us.

Not sure if this is an addition since VS2008 but I can&#039;t be bothered finding a project in VS2005 to test it against.

Cheers, Chris.</description>
		<content:encoded><![CDATA[<p>Thanks for the info, found it to be great.</p>
<p>Had one note to make that would have given Colin the ability to achieve what he wanted using less code.</p>
<p>You Said &#8220;Unfortunately this means you need to either have one ContextMenuStrip per control or figure out a way to determine which control was clicked and I don’t see a real obvious way of doing that.&#8221;</p>
<p>This is incorrect. Assuming the controls are similar you can do something similar to this in the toolStripMenuItem1_click handler:</p>
<p>private void toolStripMenuItem1_click(object sender, EventArgs e)<br />
{<br />
&nbsp;CheckedListBox clb = &nbsp;contextMenuStrip1.SourceControl as &nbsp;CheckListBox; // you can even do this to a few different types and see which works, as your code does<br />
&nbsp;Point p = clb.PointToClient(new &nbsp;Point(contextMenuStrip1.Left, contextMenuStrip1.Top));<br />
}<br />
So now point p gives you the coordinates in the actual Control that was clicked on. Which is where your code left us.</p>
<p>Not sure if this is an addition since VS2008 but I can&#8217;t be bothered finding a project in VS2005 to test it against.</p>
<p>Cheers, Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Welcome FarPoint! by Luc</title>
		<link>http://mrdotnet.wordpress.com/2009/09/17/welcome-farpoint/#comment-5932</link>
		<dc:creator>Luc</dc:creator>
		<pubDate>Tue, 06 Oct 2009 19:00:25 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/?p=744#comment-5932</guid>
		<description>This is very cool! Also a bit ironic how DD &amp; FP have been so close over the years too...</description>
		<content:encoded><![CDATA[<p>This is very cool! Also a bit ironic how DD &amp; FP have been so close over the years too&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Yet another Syntax Highlighter Update by sravan953</title>
		<link>http://mrdotnet.wordpress.com/2004/04/29/yet-another-syntax-highlighter-update/#comment-5919</link>
		<dc:creator>sravan953</dc:creator>
		<pubDate>Sun, 16 Aug 2009 15:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/2004/04/29/yet-another-syntax-highlighter-update/#comment-5919</guid>
		<description>I want to start a Python-related blog.
How can I add a widget or something like that to highlight code from the client&#039;s side?

Regards,
Sravan</description>
		<content:encoded><![CDATA[<p>I want to start a Python-related blog.<br />
How can I add a widget or something like that to highlight code from the client&#8217;s side?</p>
<p>Regards,<br />
Sravan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Goodbye old themes, hello new themes by Blog Skins</title>
		<link>http://mrdotnet.wordpress.com/2005/06/07/goodbye-old-themes-hello-new-themes/#comment-5902</link>
		<dc:creator>Blog Skins</dc:creator>
		<pubDate>Tue, 09 Jun 2009 13:18:45 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/2005/06/07/goodbye-old-themes-hello-new-themes/#comment-5902</guid>
		<description>Just started this up within the last 2 weeks
for users to register and post there

Wordpress / Joomla / Drupal / Blogger / HTML

web designs / themes / templates

right now its free to register
and you may only post free themes / templtes
or you can pay a 1 time fee to be able to post
themes your selling...

please read the posting rules at..

/adding-a-theme/    page</description>
		<content:encoded><![CDATA[<p>Just started this up within the last 2 weeks<br />
for users to register and post there</p>
<p>WordPress / Joomla / Drupal / Blogger / HTML</p>
<p>web designs / themes / templates</p>
<p>right now its free to register<br />
and you may only post free themes / templtes<br />
or you can pay a 1 time fee to be able to post<br />
themes your selling&#8230;</p>
<p>please read the posting rules at..</p>
<p>/adding-a-theme/    page</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oblivion loading slowly? by rich</title>
		<link>http://mrdotnet.wordpress.com/2006/03/22/oblivion-loading-slowly/#comment-5894</link>
		<dc:creator>rich</dc:creator>
		<pubDate>Fri, 29 May 2009 01:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://mrdotnet.wordpress.com/2006/03/22/oblivion-loading-slowly/#comment-5894</guid>
		<description>I did use a couple of pc console cheats (so shoot me) for gold and hammers, and may have confused some S/W sequence somewhere.</description>
		<content:encoded><![CDATA[<p>I did use a couple of pc console cheats (so shoot me) for gold and hammers, and may have confused some S/W sequence somewhere.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
