<?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/"
		>
<channel>
	<title>Comments on: &#8216;Windows XP Or Lower&#8217; Message Box Fallback for TaskDialog in Windows API Code Pack</title>
	<atom:link href="http://goneale.com/2009/09/22/windows-xp-or-lower-message-box-fallback-for-taskdialog-in-windows-api-code-pack/feed/" rel="self" type="application/rss+xml" />
	<link>http://goneale.com/2009/09/22/windows-xp-or-lower-message-box-fallback-for-taskdialog-in-windows-api-code-pack/</link>
	<description>Graham O&#039;Neale – Deep In .NET Development: ASP.NET, MVC, jQuery, WPF, WCF, Silverlight</description>
	<lastBuildDate>Wed, 28 Sep 2011 23:00:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Graham O'Neale</title>
		<link>http://goneale.com/2009/09/22/windows-xp-or-lower-message-box-fallback-for-taskdialog-in-windows-api-code-pack/comment-page-1/#comment-3748</link>
		<dc:creator>Graham O'Neale</dc:creator>
		<pubDate>Sat, 07 Nov 2009 00:21:09 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.com/?p=909#comment-3748</guid>
		<description>Hmm, well I did mean &lt;code&gt;System.Windows.Forms.IWin32Window&lt;/code&gt; as I was targetting Win Forms.  But if &lt;code&gt;Interop.IWin32Window&lt;/code&gt; works for WPF go ahead. :)</description>
		<content:encoded><![CDATA[<p>Hmm, well I did mean <code>System.Windows.Forms.IWin32Window</code> as I was targetting Win Forms.  But if <code>Interop.IWin32Window</code> works for WPF go ahead. <img src='http://goneale.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://goneale.com/2009/09/22/windows-xp-or-lower-message-box-fallback-for-taskdialog-in-windows-api-code-pack/comment-page-1/#comment-3730</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 06 Nov 2009 13:55:45 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.com/?p=909#comment-3730</guid>
		<description>Do you mean for the IWin32Window to be a &#039;System.Windows.Interop.IWin32Window&#039; or a &#039;System.Windows.Forms.IWin32Window&#039;?  Because the standard MessageBox methods require the second, yet my WPF app&#039;s window is the first.

(fyi, I&#039;m running on XP)</description>
		<content:encoded><![CDATA[<p>Do you mean for the IWin32Window to be a &#8216;System.Windows.Interop.IWin32Window&#8217; or a &#8216;System.Windows.Forms.IWin32Window&#8217;?  Because the standard MessageBox methods require the second, yet my WPF app&#8217;s window is the first.</p>
<p>(fyi, I&#8217;m running on XP)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham O'Neale</title>
		<link>http://goneale.com/2009/09/22/windows-xp-or-lower-message-box-fallback-for-taskdialog-in-windows-api-code-pack/comment-page-1/#comment-2934</link>
		<dc:creator>Graham O'Neale</dc:creator>
		<pubDate>Sat, 03 Oct 2009 06:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.com/?p=909#comment-2934</guid>
		<description>Thanks, that&#039;s a good way of doing it.  That will teach me for assuming my code works instead of thoroughly testing it :)

I have updated the sample with a slight streamline on your concept!</description>
		<content:encoded><![CDATA[<p>Thanks, that&#8217;s a good way of doing it.  That will teach me for assuming my code works instead of thoroughly testing it <img src='http://goneale.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have updated the sample with a slight streamline on your concept!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duncan Cooper</title>
		<link>http://goneale.com/2009/09/22/windows-xp-or-lower-message-box-fallback-for-taskdialog-in-windows-api-code-pack/comment-page-1/#comment-2780</link>
		<dc:creator>Duncan Cooper</dc:creator>
		<pubDate>Fri, 25 Sep 2009 15:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://goneale.com/?p=909#comment-2780</guid>
		<description>Nice, this can come in handy  :mrgreen: 

Small bug though; This syntax will always return false:
if(buttons == TaskDialogStandardButtons.Yes &amp;&amp; buttons == TaskDialogStandardButtons.No)
perhaps replace it with something like this
if (((buttons &amp; TaskDialogStandardButtons.Yes) == TaskDialogStandardButtons.Yes) &amp;&amp; ((buttons &amp; TaskDialogStandardButtons.No) == TaskDialogStandardButtons.No))</description>
		<content:encoded><![CDATA[<p>Nice, this can come in handy  <img src='http://goneale.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' />  </p>
<p>Small bug though; This syntax will always return false:<br />
if(buttons == TaskDialogStandardButtons.Yes &amp;&amp; buttons == TaskDialogStandardButtons.No)<br />
perhaps replace it with something like this<br />
if (((buttons &amp; TaskDialogStandardButtons.Yes) == TaskDialogStandardButtons.Yes) &amp;&amp; ((buttons &amp; TaskDialogStandardButtons.No) == TaskDialogStandardButtons.No))</p>
]]></content:encoded>
	</item>
</channel>
</rss>

