<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for Run.To.The.Hills</title>
	<link>http://rob.runtothehills.org</link>
	<description>Talk is cheap. Show me the code.</description>
	<pubDate>Tue, 09 Mar 2010 21:31:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>Comment on WPF DataBinding and DBNulls by Rob</title>
		<link>http://rob.runtothehills.org/archives/160#comment-1528</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 25 Jan 2010 19:55:39 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/160#comment-1528</guid>
		<description>Hi Matt.
I'ts been almost 2 years since I wrote this post,(I dont know why the comments show Oct2009!) and i've been on an ASP.Net contract for over 12 months so haven't paid much attention to the problem I first encountered. I would imagine in the newest versions of WPF/ADO there would be an infinitely more elegant way of handling this! Sorry I cant be much help at the moment!
Rob</description>
		<content:encoded><![CDATA[<p>Hi Matt.<br />
I&#8217;ts been almost 2 years since I wrote this post,(I dont know why the comments show Oct2009!) and i&#8217;ve been on an ASP.Net contract for over 12 months so haven&#8217;t paid much attention to the problem I first encountered. I would imagine in the newest versions of WPF/ADO there would be an infinitely more elegant way of handling this! Sorry I cant be much help at the moment!<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF DataBinding and DBNulls by mattreek</title>
		<link>http://rob.runtothehills.org/archives/160#comment-1527</link>
		<dc:creator>mattreek</dc:creator>
		<pubDate>Mon, 25 Jan 2010 16:57:10 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/160#comment-1527</guid>
		<description>As far as I know only DataRowView implements INotifyPropertyChanged.

In this case: How could you implement INotifyPropertyChanged to ensure the Binding also gets notified when properties of the wrapped dataRow are changed? Is this possible with this approach?

thanks
matt</description>
		<content:encoded><![CDATA[<p>As far as I know only DataRowView implements INotifyPropertyChanged.</p>
<p>In this case: How could you implement INotifyPropertyChanged to ensure the Binding also gets notified when properties of the wrapped dataRow are changed? Is this possible with this approach?</p>
<p>thanks<br />
matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic parameters in XPath WPF bindings. by Clint</title>
		<link>http://rob.runtothehills.org/archives/355#comment-1526</link>
		<dc:creator>Clint</dc:creator>
		<pubDate>Sat, 05 Dec 2009 11:03:00 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/355#comment-1526</guid>
		<description>Hi Rob,

Any chance of the link to the source for this?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi Rob,</p>
<p>Any chance of the link to the source for this?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing Images in posts RSS feed by Martin</title>
		<link>http://rob.runtothehills.org/archives/356#comment-1525</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 04 Dec 2009 14:19:24 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/356#comment-1525</guid>
		<description>Hi Rob, 

What are you up to these days?

Martin</description>
		<content:encoded><![CDATA[<p>Hi Rob, </p>
<p>What are you up to these days?</p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF DataBinding and DBNulls by rob</title>
		<link>http://rob.runtothehills.org/archives/160#comment-1516</link>
		<dc:creator>rob</dc:creator>
		<pubDate>Tue, 06 Oct 2009 10:14:37 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/160#comment-1516</guid>
		<description>Hi,
That wasn't the issue - if you read the post I'd written a value converter, but if you bind directly to a value type ADO will throw an exception when it *reads* the value for the value converter. the VC comes in too late. You have to avoid the exception before that happens, and you can only change the way ADO.net handles DBNULLs when you're dealing with a ref type.
so you're back to wrapping the offending type column with a custom business object to check for dbnulls.
thanks
Rob</description>
		<content:encoded><![CDATA[<p>Hi,<br />
That wasn&#8217;t the issue - if you read the post I&#8217;d written a value converter, but if you bind directly to a value type ADO will throw an exception when it *reads* the value for the value converter. the VC comes in too late. You have to avoid the exception before that happens, and you can only change the way ADO.net handles DBNULLs when you&#8217;re dealing with a ref type.<br />
so you&#8217;re back to wrapping the offending type column with a custom business object to check for dbnulls.<br />
thanks<br />
Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WPF DataBinding and DBNulls by littlesteps</title>
		<link>http://rob.runtothehills.org/archives/160#comment-1515</link>
		<dc:creator>littlesteps</dc:creator>
		<pubDate>Tue, 06 Oct 2009 10:02:44 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/160#comment-1515</guid>
		<description>Hello,

A better way is to use a ValueConverter. 
Its aim is to convert data correctly to data binding without any wrapper. Typically, you can have a ValueConverter upon your DataRow class to convert your null value to an "Empty" string, or you can decide to return an icon (ImageSource) corresponding to a DBNull, etc.

The philosophy of WPF and data binding invites the developer to have loosely coupled GUI.

Let's have a look to Bea Stollnitz's blog (aka Bea Costa): http://bea.stollnitz.com
She has a wonderful blog on databinding!

Regards,

LittleSteps</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>A better way is to use a ValueConverter.<br />
Its aim is to convert data correctly to data binding without any wrapper. Typically, you can have a ValueConverter upon your DataRow class to convert your null value to an &#8220;Empty&#8221; string, or you can decide to return an icon (ImageSource) corresponding to a DBNull, etc.</p>
<p>The philosophy of WPF and data binding invites the developer to have loosely coupled GUI.</p>
<p>Let&#8217;s have a look to Bea Stollnitz&#8217;s blog (aka Bea Costa): <a href="http://bea.stollnitz.com" rel="nofollow">http://bea.stollnitz.com</a><br />
She has a wonderful blog on databinding!</p>
<p>Regards,</p>
<p>LittleSteps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Synology Subversion server by Sverimuls</title>
		<link>http://rob.runtothehills.org/archives/25#comment-1509</link>
		<dc:creator>Sverimuls</dc:creator>
		<pubDate>Fri, 25 Sep 2009 20:25:49 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/25#comment-1509</guid>
		<description>??????, ????????? ? ???? ??????? ????????????, ????? ?????????? ???? ? ???????????. ?????? ??????? ??????????? ? ????????  &lt;a href="http://rem-stroika.ru" rel="nofollow"&gt;??????&lt;/a&gt;
?????? ???????, ????????? ????????????? ?????, ????? ???????????? ???????????, ???????. ????, ? ????? ??????, ????? ???????? ? ? ???? ???????? ????? ???????? ???? ?????? ? ??????. ?????? ????????, ???????, ??? ??? ??? ????, ??? ? ??????? ??????? ? ?? ?????????? ???? ?????? ?? ????? ? ????. ? ???? ?????? ?? ?????, ? ?????? ?????? ??????????? ??????. ??? ? ???? ??????? ??????, ??????????.</description>
		<content:encoded><![CDATA[<p>??????, ????????? ? ???? ??????? ????????????, ????? ?????????? ???? ? ???????????. ?????? ??????? ??????????? ? ????????  <a href="http://rem-stroika.ru" rel="nofollow">??????</a><br />
?????? ???????, ????????? ????????????? ?????, ????? ???????????? ???????????, ???????. ????, ? ????? ??????, ????? ???????? ? ? ???? ???????? ????? ???????? ???? ?????? ? ??????. ?????? ????????, ???????, ??? ??? ??? ????, ??? ? ??????? ??????? ? ?? ?????????? ???? ?????? ?? ????? ? ????. ? ???? ?????? ?? ?????, ? ?????? ?????? ??????????? ??????. ??? ? ???? ??????? ??????, ??????????.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greyscale Bitmap Effect for WPF by Maxxi</title>
		<link>http://rob.runtothehills.org/archives/101#comment-1508</link>
		<dc:creator>Maxxi</dc:creator>
		<pubDate>Tue, 22 Sep 2009 07:44:52 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/101#comment-1508</guid>
		<description>The link is down, can you please fix it?</description>
		<content:encoded><![CDATA[<p>The link is down, can you please fix it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Greyscale Bitmap Effect for WPF by Tracy</title>
		<link>http://rob.runtothehills.org/archives/101#comment-1507</link>
		<dc:creator>Tracy</dc:creator>
		<pubDate>Mon, 21 Sep 2009 11:28:21 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/101#comment-1507</guid>
		<description>I'd like to try this out... I see the download link is not valid.  Could you let me know the correct location for the source/assemblies?

Regards,
Tracy</description>
		<content:encoded><![CDATA[<p>I&#8217;d like to try this out&#8230; I see the download link is not valid.  Could you let me know the correct location for the source/assemblies?</p>
<p>Regards,<br />
Tracy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pixel Shader Effects in WPF using .Net3.5sp1 Beta by SeveQ</title>
		<link>http://rob.runtothehills.org/archives/180#comment-1506</link>
		<dc:creator>SeveQ</dc:creator>
		<pubDate>Thu, 30 Jul 2009 21:44:15 +0000</pubDate>
		<guid>http://rob.runtothehills.org/archives/180#comment-1506</guid>
		<description>Okay, I have found the problem... code was incomplete.</description>
		<content:encoded><![CDATA[<p>Okay, I have found the problem&#8230; code was incomplete.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
