<?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 for Kristof&#039;s blog</title>
	<atom:link href="http://kristofmattei.be/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kristofmattei.be</link>
	<description>A blog on my experiences in programming, work, and life!</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:31:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Team Foundation 2010: Associate work item with changeset AFTER check in. by Olivier Vaillancourt</title>
		<link>http://kristofmattei.be/2012/01/09/team-foundation-2010-associate-work-item-with-changeset-after-check-in/comment-page-1/#comment-17900</link>
		<dc:creator>Olivier Vaillancourt</dc:creator>
		<pubDate>Wed, 08 Feb 2012 23:31:45 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=1123#comment-17900</guid>
		<description>Worked like a charm.  Thanks.

One question though.  I ran into this situation in the first place &#039;cause during check-in I try to associate my changeset to a User Story that was currently edited by someone else.  As I understand it, VS wasn&#039;t able to modify the User Story since someone was making changes to it.

Do you know how to prevent that?  

Thanks</description>
		<content:encoded><![CDATA[<p>Worked like a charm.  Thanks.</p>
<p>One question though.  I ran into this situation in the first place &#8217;cause during check-in I try to associate my changeset to a User Story that was currently edited by someone else.  As I understand it, VS wasn&#8217;t able to modify the User Story since someone was making changes to it.</p>
<p>Do you know how to prevent that?  </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LINQ 2 SQL and WCF, the definitive guide by Stefano</title>
		<link>http://kristofmattei.be/2010/08/22/linq-2-sql-and-wcf-the-definitive-guide/comment-page-1/#comment-16554</link>
		<dc:creator>Stefano</dc:creator>
		<pubDate>Fri, 20 Jan 2012 17:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2010/08/22/linq-2-sql-and-wcf-the-definitive-guide/#comment-16554</guid>
		<description>Hi,

your post is very interesting and helped me a lot about the &quot;child property&quot; issue. My project now works, but I was wondering how to solve the database update problem. If I update some tables and regenerate the model, all my child property settings would be lost and I would have to set them again.
Is there some workaround to avoid this problem? Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>your post is very interesting and helped me a lot about the &#8220;child property&#8221; issue. My project now works, but I was wondering how to solve the database update problem. If I update some tables and regenerate the model, all my child property settings would be lost and I would have to set them again.<br />
Is there some workaround to avoid this problem? Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multi-Column ListView by Entire</title>
		<link>http://kristofmattei.be/2010/03/16/multi-column-listview/comment-page-1/#comment-15180</link>
		<dc:creator>Entire</dc:creator>
		<pubDate>Thu, 05 Jan 2012 19:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=899#comment-15180</guid>
		<description>Thank you so much! I have been looking for similar stuff for hours and it&#039;s that simple ... :)</description>
		<content:encoded><![CDATA[<p>Thank you so much! I have been looking for similar stuff for hours and it&#8217;s that simple &#8230; <img src='http://kristofmattei.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on .NET natural sort, a possible solution. by Steve</title>
		<link>http://kristofmattei.be/2011/03/19/net-natural-sort-a-possible-solution/comment-page-1/#comment-15133</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 05 Jan 2012 12:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2011/03/19/net-natural-sort-a-possible-solution/#comment-15133</guid>
		<description>Can I just say, that after hours of searching for what I thought would have been so obvious that it&#039;d have been implemented directly into the framework - THANK YOU.

I really have no idea why &quot;natural sort&quot; just isn&#039;t a part of all languages.</description>
		<content:encoded><![CDATA[<p>Can I just say, that after hours of searching for what I thought would have been so obvious that it&#8217;d have been implemented directly into the framework &#8211; THANK YOU.</p>
<p>I really have no idea why &#8220;natural sort&#8221; just isn&#8217;t a part of all languages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows Phone 7 TextBox, binding and ApplicationButton by Sam Naseri</title>
		<link>http://kristofmattei.be/2010/08/28/windows-phone-7-textbox-binding-and-applicationbutton/comment-page-1/#comment-13419</link>
		<dc:creator>Sam Naseri</dc:creator>
		<pubDate>Wed, 14 Dec 2011 22:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2010/08/28/windows-phone-7-textbox-binding-and-applicationbutton/#comment-13419</guid>
		<description>I just found this code in msdn help and I used it and it worked fine for me, as this is a general solution I suggest to use it instead of your solution, also it does not force you to name all your controls.

object focusObj = FocusManager.GetFocusedElement();
if (focusObj != null &amp;&amp; focusObj is TextBox)
{
  var binding = (focusObj as TextBox).GetBindingExpression(TextBox.TextProperty);
  binding.UpdateSource();
}

and here is the link which I copied the above code from:
http://social.msdn.microsoft.com/Forums/en/windowsphone7series/thread/c0ce4e48-6d5c-42d7-bc14-f412f1e0762c</description>
		<content:encoded><![CDATA[<p>I just found this code in msdn help and I used it and it worked fine for me, as this is a general solution I suggest to use it instead of your solution, also it does not force you to name all your controls.</p>
<p>object focusObj = FocusManager.GetFocusedElement();<br />
if (focusObj != null &amp;&amp; focusObj is TextBox)<br />
{<br />
  var binding = (focusObj as TextBox).GetBindingExpression(TextBox.TextProperty);<br />
  binding.UpdateSource();<br />
}</p>
<p>and here is the link which I copied the above code from:<br />
<a href="http://social.msdn.microsoft.com/Forums/en/windowsphone7series/thread/c0ce4e48-6d5c-42d7-bc14-f412f1e0762c" rel="nofollow">http://social.msdn.microsoft.com/Forums/en/windowsphone7series/thread/c0ce4e48-6d5c-42d7-bc14-f412f1e0762c</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Silverlight 4 debugging and Firefox 3.6.4+ by Devssolution</title>
		<link>http://kristofmattei.be/2010/07/05/silverlight-4-debugging-and-firefox-3-6-4/comment-page-1/#comment-12954</link>
		<dc:creator>Devssolution</dc:creator>
		<pubDate>Fri, 09 Dec 2011 06:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2010/07/05/silverlight-4-debugging-and-firefox-3-6-4/#comment-12954</guid>
		<description>thank&#039;s buddy.</description>
		<content:encoded><![CDATA[<p>thank&#8217;s buddy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling SQL Server 2008 (R2) access over Network by Usman Khalid</title>
		<link>http://kristofmattei.be/2010/06/21/enabling-sql-server-2008-r2-access-over-network/comment-page-1/#comment-11874</link>
		<dc:creator>Usman Khalid</dc:creator>
		<pubDate>Thu, 17 Nov 2011 17:38:26 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/2010/06/21/enabling-sql-server-2008-r2-access-over-network/#comment-11874</guid>
		<description>Thank you very much sir. Very informative and very easy to follow for even beginners like me.
Thanks</description>
		<content:encoded><![CDATA[<p>Thank you very much sir. Very informative and very easy to follow for even beginners like me.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging applications in virtual machines with VMware Workstation 7 and Visual Studio 2008 SP1 by sxwd</title>
		<link>http://kristofmattei.be/2010/01/20/debugging-applications-in-virtual-machines-with-vmware-workstation-7-and-visual-studio-2008-sp1-2/comment-page-1/#comment-11471</link>
		<dc:creator>sxwd</dc:creator>
		<pubDate>Sat, 12 Nov 2011 16:16:24 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=863#comment-11471</guid>
		<description>Thank you very much. It helps me a lot</description>
		<content:encoded><![CDATA[<p>Thank you very much. It helps me a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQL Server Management Studio Express 2005 Security Error (29506) by gaurav singh</title>
		<link>http://kristofmattei.be/2008/10/14/sql-server-management-studio-express-2005-security-error-29506/comment-page-1/#comment-7704</link>
		<dc:creator>gaurav singh</dc:creator>
		<pubDate>Tue, 11 Oct 2011 06:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=221#comment-7704</guid>
		<description>and please can you tell me how to run the insaller as administrator from cmd???????</description>
		<content:encoded><![CDATA[<p>and please can you tell me how to run the insaller as administrator from cmd???????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enum dependency property caveat by Sebastien Nadeau</title>
		<link>http://kristofmattei.be/2011/01/30/enum-dependency-property-caveat/comment-page-1/#comment-7139</link>
		<dc:creator>Sebastien Nadeau</dc:creator>
		<pubDate>Thu, 06 Oct 2011 19:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://kristofmattei.be/?p=1042#comment-7139</guid>
		<description>Good job love this post!

I was wondering if you added a third component to your enum and wanted to make a combination of two or more component how would you set that in your xaml? 

I am currently designing a context menu and want to add dynamic content in this menu, the content is taken from an enum. And the problem I get is that I am unable to get the combination from my xaml to my dependency property somehow the e.NewValue is not taking my XAML correctly if I try 2 or more component enum in it (using coma to separate my component) .

Can you shed some light to my problem?

Regards</description>
		<content:encoded><![CDATA[<p>Good job love this post!</p>
<p>I was wondering if you added a third component to your enum and wanted to make a combination of two or more component how would you set that in your xaml? </p>
<p>I am currently designing a context menu and want to add dynamic content in this menu, the content is taken from an enum. And the problem I get is that I am unable to get the combination from my xaml to my dependency property somehow the e.NewValue is not taking my XAML correctly if I try 2 or more component enum in it (using coma to separate my component) .</p>
<p>Can you shed some light to my problem?</p>
<p>Regards</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.792 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-09 01:20:40 -->
<!-- Compression = gzip -->
