<?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 David Soussan</title>
	<atom:link href="http://davidsoussan.co.uk/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://davidsoussan.co.uk</link>
	<description>My New Domain</description>
	<lastBuildDate>Sun, 20 Jun 2010 13:46:21 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Capitalise all Words in VBA by david</title>
		<link>http://davidsoussan.co.uk/2010/03/16/capitalise-all-words-in-vba/comment-page-1/#comment-1273</link>
		<dc:creator>david</dc:creator>
		<pubDate>Sun, 20 Jun 2010 13:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=91#comment-1273</guid>
		<description>Well now, Bill, if I&#039;d known about that Excel function then I would have used it. So thanks for the info.

In Access VBA the equivalent using vbProperCase does not handle apostophies and hyphenated names. It was because I could not find anything like your solution out there that I came up with my own &#039;unnecessary&#039; method.</description>
		<content:encoded><![CDATA[<p>Well now, Bill, if I&#8217;d known about that Excel function then I would have used it. So thanks for the info.</p>
<p>In Access VBA the equivalent using vbProperCase does not handle apostophies and hyphenated names. It was because I could not find anything like your solution out there that I came up with my own &#8216;unnecessary&#8217; method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Capitalise all Words in VBA by Bill</title>
		<link>http://davidsoussan.co.uk/2010/03/16/capitalise-all-words-in-vba/comment-page-1/#comment-1230</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Sat, 15 May 2010 19:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=91#comment-1230</guid>
		<description>That is crazy unnecessary,  dude, try this:

Public Function Capitalize(ByVal strToCapitalize As String) As String

&#039;&#039; add a reference to excel, if you are not in excel (since you don&#039;t mind adding references)

Capitalize = Excel.WorksheetFunction.Proper(strToCapitalize)
Capitalize = Replace(Capitalize, &quot; And &quot;, &quot; and &quot;, 1, , vbTextCompare)
Capitalize = Replace(Capitalize, &quot; Or &quot;, &quot; or &quot;, 1, , vbTextCompare)

End Function

Bill</description>
		<content:encoded><![CDATA[<p>That is crazy unnecessary,  dude, try this:</p>
<p>Public Function Capitalize(ByVal strToCapitalize As String) As String</p>
<p>&#8221; add a reference to excel, if you are not in excel (since you don&#8217;t mind adding references)</p>
<p>Capitalize = Excel.WorksheetFunction.Proper(strToCapitalize)<br />
Capitalize = Replace(Capitalize, &#8221; And &#8220;, &#8221; and &#8220;, 1, , vbTextCompare)<br />
Capitalize = Replace(Capitalize, &#8221; Or &#8220;, &#8221; or &#8220;, 1, , vbTextCompare)</p>
<p>End Function</p>
<p>Bill</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Sequence each Sub-set of Records by Calculate the Running Balance &#124; David Soussan</title>
		<link>http://davidsoussan.co.uk/2009/10/10/how-to-sequence-entries-in-each-sub-set/comment-page-1/#comment-304</link>
		<dc:creator>Calculate the Running Balance &#124; David Soussan</dc:creator>
		<pubDate>Tue, 16 Mar 2010 22:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=10#comment-304</guid>
		<description>[...] fine use of my sequencing method is to calculate the running balance on a ledger:  SELECT t1.CompanyID, t1.CompanyName, [...]</description>
		<content:encoded><![CDATA[<p>[...] fine use of my sequencing method is to calculate the running balance on a ledger:  SELECT t1.CompanyID, t1.CompanyName, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Most Truth That I Know by david</title>
		<link>http://davidsoussan.co.uk/2010/02/09/the-most-truth-that-i-know/comment-page-1/#comment-72</link>
		<dc:creator>david</dc:creator>
		<pubDate>Sun, 14 Feb 2010 20:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=78#comment-72</guid>
		<description>OK, trying it out as a Haiku

The most truth I know
Conquer greed to conquer need
Wish it could be so</description>
		<content:encoded><![CDATA[<p>OK, trying it out as a Haiku</p>
<p>The most truth I know<br />
Conquer greed to conquer need<br />
Wish it could be so</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Most Truth That I Know by david</title>
		<link>http://davidsoussan.co.uk/2010/02/09/the-most-truth-that-i-know/comment-page-1/#comment-71</link>
		<dc:creator>david</dc:creator>
		<pubDate>Sun, 14 Feb 2010 17:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=78#comment-71</guid>
		<description>Looks like I&#039;m starting a poetry corner here so all contributions welcome: I&#039;ll let others critique them :)</description>
		<content:encoded><![CDATA[<p>Looks like I&#8217;m starting a poetry corner here so all contributions welcome: I&#8217;ll let others critique them <img src='http://davidsoussan.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Most Truth That I Know by Laura Sheman</title>
		<link>http://davidsoussan.co.uk/2010/02/09/the-most-truth-that-i-know/comment-page-1/#comment-70</link>
		<dc:creator>Laura Sheman</dc:creator>
		<pubDate>Sun, 14 Feb 2010 16:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=78#comment-70</guid>
		<description>Cool poem!  Now, try to turn it into a Haiku:

trees use what they need
never wasting elements
beauty in motion</description>
		<content:encoded><![CDATA[<p>Cool poem!  Now, try to turn it into a Haiku:</p>
<p>trees use what they need<br />
never wasting elements<br />
beauty in motion</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Most Truth That I Know by mike soussan</title>
		<link>http://davidsoussan.co.uk/2010/02/09/the-most-truth-that-i-know/comment-page-1/#comment-67</link>
		<dc:creator>mike soussan</dc:creator>
		<pubDate>Wed, 10 Feb 2010 12:28:40 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=78#comment-67</guid>
		<description>if we could conquer greed
we would conquer need
but who is going to lead
and do the first good deed
before we all, to death,  bleed</description>
		<content:encoded><![CDATA[<p>if we could conquer greed<br />
we would conquer need<br />
but who is going to lead<br />
and do the first good deed<br />
before we all, to death,  bleed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Find user&#8217;s most recent post in each thread by postid - StartTags.com</title>
		<link>http://davidsoussan.co.uk/2009/11/01/forum-threads-users-most-recent-post-in-each-thread/comment-page-1/#comment-59</link>
		<dc:creator>postid - StartTags.com</dc:creator>
		<pubDate>Thu, 28 Jan 2010 12:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=30#comment-59</guid>
		<description>[...] any post ID which means you can make one specific page look completely different than all of the ...Find user&#039;s most recent post in each thread &#124; David Soussan(SELECT t1.postid, COUNT(t1.postid) AS sequence, t1.postid for sale kits.... back for more - Hobby [...]</description>
		<content:encoded><![CDATA[<p>[...] any post ID which means you can make one specific page look completely different than all of the &#8230;Find user&#39;s most recent post in each thread | David Soussan(SELECT t1.postid, COUNT(t1.postid) AS sequence, t1.postid for sale kits&#8230;. back for more &#8211; Hobby [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Sequence each Sub-set of Records by Forum threads: user&#8217;s most recent post in each thread &#124; David Soussan</title>
		<link>http://davidsoussan.co.uk/2009/10/10/how-to-sequence-entries-in-each-sub-set/comment-page-1/#comment-4</link>
		<dc:creator>Forum threads: user&#8217;s most recent post in each thread &#124; David Soussan</dc:creator>
		<pubDate>Sun, 01 Nov 2009 17:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://davidsoussan.co.uk/?p=10#comment-4</guid>
		<description>[...] David Soussan My New Domain      &#171; How to Sequence each Sub-set of Records [...]</description>
		<content:encoded><![CDATA[<p>[...] David Soussan My New Domain      &laquo; How to Sequence each Sub-set of Records [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
