<?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 Ramblings of a Programmer</title>
	<atom:link href="http://kwsanders.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kwsanders.com</link>
	<description>My blog about all things family, photography, geocaching, and programming.</description>
	<lastBuildDate>Fri, 22 Jan 2010 05:40:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Our 17 month old by Barb</title>
		<link>http://kwsanders.com/2009/12/20/our-17-month-old/comment-page-1/#comment-9634</link>
		<dc:creator>Barb</dc:creator>
		<pubDate>Fri, 22 Jan 2010 05:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://kwsanders.com/?p=238#comment-9634</guid>
		<description>I love that picture of him! He is so precious. You have to bring him to the house more often.</description>
		<content:encoded><![CDATA[<p>I love that picture of him! He is so precious. You have to bring him to the house more often.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Standing Alone by Barb</title>
		<link>http://kwsanders.com/2009/03/31/standing-alone/comment-page-1/#comment-7993</link>
		<dc:creator>Barb</dc:creator>
		<pubDate>Fri, 03 Jul 2009 04:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://kwsanders.com/2009/03/31/standing-alone/#comment-7993</guid>
		<description>Time for an updated picture - of him taking a step!</description>
		<content:encoded><![CDATA[<p>Time for an updated picture &#8211; of him taking a step!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Standing Alone by Barb</title>
		<link>http://kwsanders.com/2009/03/31/standing-alone/comment-page-1/#comment-7887</link>
		<dc:creator>Barb</dc:creator>
		<pubDate>Wed, 06 May 2009 17:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://kwsanders.com/2009/03/31/standing-alone/#comment-7887</guid>
		<description>He is so cute!! We had a good time yesterday. He took full nap on me. I was very wrinkled!!</description>
		<content:encoded><![CDATA[<p>He is so cute!! We had a good time yesterday. He took full nap on me. I was very wrinkled!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImageDescriptor problem on JFace actions? by Jeremy</title>
		<link>http://kwsanders.com/2005/03/19/imagedescriptor-problem-on-jface-actions/comment-page-1/#comment-987</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Wed, 19 Mar 2008 13:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://site101.website4now.com/ksanders/www/?p=20#comment-987</guid>
		<description>Your problem with the button could potentially be related to when you are creating your ExitAction...  Obviously I don&#039;t have the whole picture but I&#039;ll vernture a guess anyways.  In JFace the Image Descriptor requires the Display to be around.  So if you for example called the new ExitAction from the constructor of a JFace Application Window.  You would have the Display linked up properly.  Because that is when the Shell is created and attached to the Display.

Try moving the code to the configureShell method of the ApplicationWindow.  Here you will have the display / shell wired up correctly and it will be just before the shell is attached to the  window which is where you want to be.  I&#039;ve tested on my end and it works for me if I put it into that function.</description>
		<content:encoded><![CDATA[<p>Your problem with the button could potentially be related to when you are creating your ExitAction&#8230;  Obviously I don&#8217;t have the whole picture but I&#8217;ll vernture a guess anyways.  In JFace the Image Descriptor requires the Display to be around.  So if you for example called the new ExitAction from the constructor of a JFace Application Window.  You would have the Display linked up properly.  Because that is when the Shell is created and attached to the Display.</p>
<p>Try moving the code to the configureShell method of the ApplicationWindow.  Here you will have the display / shell wired up correctly and it will be just before the shell is attached to the  window which is where you want to be.  I&#8217;ve tested on my end and it works for me if I put it into that function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Baby News by Barb</title>
		<link>http://kwsanders.com/2008/03/06/baby-news/comment-page-1/#comment-841</link>
		<dc:creator>Barb</dc:creator>
		<pubDate>Mon, 10 Mar 2008 18:51:28 +0000</pubDate>
		<guid isPermaLink="false">http://kwsanders.com/2008/03/06/baby-news/#comment-841</guid>
		<description>Don&#039;t worry about having to give little brother protection. He&#039;s not going to be in school with him.  But the thought is funny!</description>
		<content:encoded><![CDATA[<p>Don&#8217;t worry about having to give little brother protection. He&#8217;s not going to be in school with him.  But the thought is funny!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on DataTable.ImportRow method confusion &#8211; DUH! by Andy</title>
		<link>http://kwsanders.com/2004/11/20/datatableimportrow-method-confusion-duh/comment-page-1/#comment-462</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Thu, 21 Feb 2008 13:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://site101.website4now.com/ksanders/www/?p=8#comment-462</guid>
		<description>Yes I had the same issue and used the Clone method to resolve it.

I used a datatable.select to populate a datarow array from datatable A then wanted to populate datatable B with the array.

I had to do :
dtA = dtB.Clone

before I could then do :
drArray = dtB.Select(blah)
For Each dr As DataRow In drArray
	dtA.ImportRow(dr)
Next</description>
		<content:encoded><![CDATA[<p>Yes I had the same issue and used the Clone method to resolve it.</p>
<p>I used a datatable.select to populate a datarow array from datatable A then wanted to populate datatable B with the array.</p>
<p>I had to do :<br />
dtA = dtB.Clone</p>
<p>before I could then do :<br />
drArray = dtB.Select(blah)<br />
For Each dr As DataRow In drArray<br />
	dtA.ImportRow(dr)<br />
Next</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse Milestone Build 3.1M6 released; SWT problem? by dsp</title>
		<link>http://kwsanders.com/2005/04/04/eclipse-milestone-build-31m6-released-swt-problem/comment-page-1/#comment-2</link>
		<dc:creator>dsp</dc:creator>
		<pubDate>Sat, 21 Jul 2007 04:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://site101.website4now.com/ksanders/www/?p=23#comment-2</guid>
		<description>Here is what worked for me:&lt;br/&gt;&lt;br/&gt;Grab one of the five swt-win32-3128.dll in one of the subdiretories of ...eclipse/configuration. Place a copy of this file in newly created directory ...\eclipse\plugins\org.eclipse.swt.win32_3.1.0\os\win32\x86 (or in e.g. in ...\eclipse\plugins\).&lt;br/&gt;&lt;br/&gt;Add to a Java or SWT Run configuration on the arguments page in the VM arguments box the following line:&lt;br/&gt;-Djava.library.path=${system:ECLIPSE_HOME}/plugins/org.eclipse.swt.${system:WS}_3.1.0/os/${system:OS}/${system:ARCH}&lt;br/&gt;(or -Djava.library.path=${system:ECLIPSE_HOME}/plugins/ if you have chosen to place the file directly in the plugin directory).&lt;br/&gt;&lt;br/&gt;Comments: Why do they have to distrubte five copies of the same file? The SWT Run configuration should provide the information I manually added! I created the deep directory structure because it made me feel so much in harmony with the naming conventions.</description>
		<content:encoded><![CDATA[<p>Here is what worked for me:</p>
<p>Grab one of the five swt-win32-3128.dll in one of the subdiretories of &#8230;eclipse/configuration. Place a copy of this file in newly created directory &#8230;\eclipse\plugins\org.eclipse.swt.win32_3.1.0\os\win32\x86 (or in e.g. in &#8230;\eclipse\plugins\).</p>
<p>Add to a Java or SWT Run configuration on the arguments page in the VM arguments box the following line:<br />-Djava.library.path=${system:ECLIPSE_HOME}/plugins/org.eclipse.swt.${system:WS}_3.1.0/os/${system:OS}/${system:ARCH}<br />(or -Djava.library.path=${system:ECLIPSE_HOME}/plugins/ if you have chosen to place the file directly in the plugin directory).</p>
<p>Comments: Why do they have to distrubte five copies of the same file? The SWT Run configuration should provide the information I manually added! I created the deep directory structure because it made me feel so much in harmony with the naming conventions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Borland BDS 2005 Problem by Sebastian Burg</title>
		<link>http://kwsanders.com/2006/12/14/borland-bds-2005-problem/comment-page-1/#comment-9</link>
		<dc:creator>Sebastian Burg</dc:creator>
		<pubDate>Sun, 03 Jun 2007 01:31:00 +0000</pubDate>
		<guid isPermaLink="false">http://site101.website4now.com/ksanders/www/?p=59#comment-9</guid>
		<description>worked fine with me, thanks for the idea.</description>
		<content:encoded><![CDATA[<p>worked fine with me, thanks for the idea.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nerd Factor by Barbara</title>
		<link>http://kwsanders.com/2006/08/19/nerd-factor/comment-page-1/#comment-8</link>
		<dc:creator>Barbara</dc:creator>
		<pubDate>Fri, 08 Sep 2006 02:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://site101.website4now.com/ksanders/www/?p=55#comment-8</guid>
		<description>I got a low 46%. :)</description>
		<content:encoded><![CDATA[<p>I got a low 46%. <img src='http://kwsanders.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Printer issues after Tiger update by Anonymous</title>
		<link>http://kwsanders.com/2005/05/19/printer-issues-after-tiger-update/comment-page-1/#comment-17</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 25 Feb 2006 01:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://site101.website4now.com/ksanders/www/?p=112#comment-17</guid>
		<description>I actually am no longer using the HP 5L.  I never could get it to work continuously.  I ended up getting a Brother HL-2070N and hooked it directly to my network router via ethernet.
I&#039;m sorry that I am unable to help you with this.  I believe the HP5L and the Mac are just not meant to be.  :(</description>
		<content:encoded><![CDATA[<p>I actually am no longer using the HP 5L.  I never could get it to work continuously.  I ended up getting a Brother HL-2070N and hooked it directly to my network router via ethernet.<br />
I&#39;m sorry that I am unable to help you with this.  I believe the HP5L and the Mac are just not meant to be.  <img src='http://kwsanders.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
