<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.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 Ramblings of a Programmer</title>
	<link>http://kwsanders.com</link>
	<description>My blog about all things family, photography, geocaching, and programming.</description>
	<pubDate>Sun, 12 Oct 2008 15:26:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>

	<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-987</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Wed, 19 Mar 2008 13:43:54 +0000</pubDate>
		<guid>http://kwsanders.com/2005/03/19/imagedescriptor-problem-on-jface-actions/#comment-987</guid>
		<description>Your problem with the button could potentially be related to when you are creating your ExitAction...  Obviously I don't have the whole picture but I'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'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-841</link>
		<dc:creator>Barb</dc:creator>
		<pubDate>Mon, 10 Mar 2008 18:51:28 +0000</pubDate>
		<guid>http://kwsanders.com/2008/03/06/baby-news/#comment-841</guid>
		<description>Don't worry about having to give little brother protection. He'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 - DUH! by Andy</title>
		<link>http://kwsanders.com/2004/11/20/datatableimportrow-method-confusion-duh/#comment-462</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Thu, 21 Feb 2008 13:24:54 +0000</pubDate>
		<guid>http://kwsanders.com/2004/11/20/datatableimportrow-method-confusion-duh/#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-2</link>
		<dc:creator>dsp</dc:creator>
		<pubDate>Sat, 21 Jul 2007 04:50:00 +0000</pubDate>
		<guid>http://kwsanders.com/2005/04/04/eclipse-milestone-build-31m6-released-swt-problem/#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-9</link>
		<dc:creator>Sebastian Burg</dc:creator>
		<pubDate>Sun, 03 Jun 2007 01:31:00 +0000</pubDate>
		<guid>http://kwsanders.com/2006/12/14/borland-bds-2005-problem/#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-8</link>
		<dc:creator>Barbara</dc:creator>
		<pubDate>Fri, 08 Sep 2006 02:53:00 +0000</pubDate>
		<guid>http://kwsanders.com/2006/08/19/nerd-factor/#comment-8</guid>
		<description>I got a low 46%. :)</description>
		<content:encoded><![CDATA[<p>I got a low 46%. <img src='http://kwsanders.com/wordpress/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-17</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 25 Feb 2006 01:16:17 +0000</pubDate>
		<guid>http://kwsanders.com/2005/05/19/printer-issues-after-tiger-update/#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&#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.  :(</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/wordpress/wp-includes/images/smilies/icon_sad.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-16</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 24 Feb 2006 13:27:24 +0000</pubDate>
		<guid>http://kwsanders.com/2005/05/19/printer-issues-after-tiger-update/#comment-16</guid>
		<description>Hello, I just upgraded to Tiger and I found your article.  I am having the same problem of trying to setup my printer to the HP Laserjet 5L.  I tried following your suggestion with no luck.  I set up an IP printer with the IP address of my SMC router with HP5L as the queue name...but nothing prints.  However, when I look at the setup, it has the queue name as "_192_168_2_1"  So it changed it or something...do you have any other suggestions?  Thanks...jahsboy</description>
		<content:encoded><![CDATA[<p>Hello, I just upgraded to Tiger and I found your article.  I am having the same problem of trying to setup my printer to the HP Laserjet 5L.  I tried following your suggestion with no luck.  I set up an IP printer with the IP address of my SMC router with HP5L as the queue name&#8230;but nothing prints.  However, when I look at the setup, it has the queue name as &#8220;_192_168_2_1&#8243;  So it changed it or something&#8230;do you have any other suggestions?  Thanks&#8230;jahsboy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tiger, Bluetooth, and Razr V3 by Anonymous</title>
		<link>http://kwsanders.com/2005/07/13/tiger-bluetooth-and-razr-v3/#comment-31</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 12 Dec 2005 15:54:50 +0000</pubDate>
		<guid>http://kwsanders.com/2005/07/13/tiger-bluetooth-and-razr-v3/#comment-31</guid>
		<description>I had a similar prob. itunes and quicktime pro cannot export the older mp3 format needed for the razor. I had to use logic pro to create a true mp3 file and then it worked perfectly. good luck finding an app to make an old skool mp3 if you don&#39;t own logic. audacity is cool but requires a separate shareware export feature that I havn&#39;t tried.</description>
		<content:encoded><![CDATA[<p>I had a similar prob. itunes and quicktime pro cannot export the older mp3 format needed for the razor. I had to use logic pro to create a true mp3 file and then it worked perfectly. good luck finding an app to make an old skool mp3 if you don&#39;t own logic. audacity is cool but requires a separate shareware export feature that I havn&#39;t tried.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tiger, Bluetooth, and Razr V3 by Anonymous</title>
		<link>http://kwsanders.com/2005/07/13/tiger-bluetooth-and-razr-v3/#comment-36</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 30 Nov 2005 23:47:13 +0000</pubDate>
		<guid>http://kwsanders.com/2005/07/13/tiger-bluetooth-and-razr-v3/#comment-36</guid>
		<description>I had similar problems.  Removing and re-adding the V3 solved the problem.  Thanks!</description>
		<content:encoded><![CDATA[<p>I had similar problems.  Removing and re-adding the V3 solved the problem.  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
