<?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 Jon Kågström</title>
	<atom:link href="http://www.jonkagstrom.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.jonkagstrom.com</link>
	<description>"Jonline"</description>
	<lastBuildDate>Wed, 14 Jul 2010 08:43:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Quick toggle between .h and .cpp files by Roger Wilco</title>
		<link>http://www.jonkagstrom.com/?p=4&#038;cpage=1#comment-2281</link>
		<dc:creator>Roger Wilco</dc:creator>
		<pubDate>Wed, 14 Jul 2010 08:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=4#comment-2281</guid>
		<description>To avoid problems with pathnames containing spaces just put the filename in quotation  marks:

   DTE.ExecuteCommand(&quot;File.OpenFile&quot;, Chr(34) &amp; fileFullName &amp; Chr(34))

To check if the file exists use:

   If (System.IO.File.Exists(fileFullName)) Then
      ...
   End If</description>
		<content:encoded><![CDATA[<p>To avoid problems with pathnames containing spaces just put the filename in quotation  marks:</p>
<p>   DTE.ExecuteCommand(&#8220;File.OpenFile&#8221;, Chr(34) &amp; fileFullName &amp; Chr(34))</p>
<p>To check if the file exists use:</p>
<p>   If (System.IO.File.Exists(fileFullName)) Then<br />
      &#8230;<br />
   End If</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Operation Kitchen Storm &#8211; Day 1 by Jon</title>
		<link>http://www.jonkagstrom.com/?p=29&#038;cpage=1#comment-1313</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sun, 16 Aug 2009 14:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=29#comment-1313</guid>
		<description>Kameran är på vift, bilderna kommer om någon dag.</description>
		<content:encoded><![CDATA[<p>Kameran är på vift, bilderna kommer om någon dag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Operation Kitchen Storm &#8211; Day 1 by PM</title>
		<link>http://www.jonkagstrom.com/?p=29&#038;cpage=1#comment-1312</link>
		<dc:creator>PM</dc:creator>
		<pubDate>Sun, 16 Aug 2009 14:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=29#comment-1312</guid>
		<description>Var är bilderna????
..........på färdigt kök</description>
		<content:encoded><![CDATA[<p>Var är bilderna????<br />
&#8230;&#8230;&#8230;.på färdigt kök</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Operation Kitchen Storm – Dr. Put´s Input by Jon</title>
		<link>http://www.jonkagstrom.com/?p=51&#038;cpage=1#comment-1299</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Thu, 13 Aug 2009 21:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=51#comment-1299</guid>
		<description>Thank you! We have not been very writey lately since we are so tired of all the working. But rest assured that the water is now running and could easily fill a glass of water. You are welcome to pop by at any time.</description>
		<content:encoded><![CDATA[<p>Thank you! We have not been very writey lately since we are so tired of all the working. But rest assured that the water is now running and could easily fill a glass of water. You are welcome to pop by at any time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Operation Kitchen Storm – Dr. Put´s Input by Olle Dole Doff</title>
		<link>http://www.jonkagstrom.com/?p=51&#038;cpage=1#comment-1285</link>
		<dc:creator>Olle Dole Doff</dc:creator>
		<pubDate>Tue, 11 Aug 2009 20:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=51#comment-1285</guid>
		<description>Nice working dudes!
Haha, Gustav Wasa is to blame I see!
Looking forward to have a glass of water in your new kitchen one day.</description>
		<content:encoded><![CDATA[<p>Nice working dudes!<br />
Haha, Gustav Wasa is to blame I see!<br />
Looking forward to have a glass of water in your new kitchen one day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick toggle between .h and .cpp files by amnon</title>
		<link>http://www.jonkagstrom.com/?p=4&#038;cpage=1#comment-1225</link>
		<dc:creator>amnon</dc:creator>
		<pubDate>Thu, 23 Jul 2009 13:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=4#comment-1225</guid>
		<description>Thanks a lot :-)

Noticed there were some problems with pathnames that contained spaces in them (on VS2008). Solved it by converting the path to short name as follows:

Public Module ToggleCPPH
    Sub Toggle()

        Dim fileName As String = DTE.ActiveDocument.Name
        Dim oFSO As Object
        oFSO = CreateObject(&quot;Scripting.FileSystemObject&quot;)

        If (fileName.EndsWith(&quot;.cpp&quot;)) Then

            fileName = fileName.Remove(fileName.IndexOf(&quot;.&quot;)) + &quot;.h&quot;

        Else

            fileName = fileName.Remove(fileName.IndexOf(&quot;.&quot;)) + &quot;.cpp&quot;

        End If

        Dim shortPath As String
        Dim strPath As String

        strPath = DTE.ActiveDocument.Path + fileName
        shortPath = oFSO.GetFile(strPath).ShortPath
        DTE.ExecuteCommand(&quot;File.OpenFile&quot;, shortPath)

    End Sub

End Module</description>
		<content:encoded><![CDATA[<p>Thanks a lot <img src='http://www.jonkagstrom.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Noticed there were some problems with pathnames that contained spaces in them (on VS2008). Solved it by converting the path to short name as follows:</p>
<p>Public Module ToggleCPPH<br />
    Sub Toggle()</p>
<p>        Dim fileName As String = DTE.ActiveDocument.Name<br />
        Dim oFSO As Object<br />
        oFSO = CreateObject(&#8220;Scripting.FileSystemObject&#8221;)</p>
<p>        If (fileName.EndsWith(&#8220;.cpp&#8221;)) Then</p>
<p>            fileName = fileName.Remove(fileName.IndexOf(&#8220;.&#8221;)) + &#8220;.h&#8221;</p>
<p>        Else</p>
<p>            fileName = fileName.Remove(fileName.IndexOf(&#8220;.&#8221;)) + &#8220;.cpp&#8221;</p>
<p>        End If</p>
<p>        Dim shortPath As String<br />
        Dim strPath As String</p>
<p>        strPath = DTE.ActiveDocument.Path + fileName<br />
        shortPath = oFSO.GetFile(strPath).ShortPath<br />
        DTE.ExecuteCommand(&#8220;File.OpenFile&#8221;, shortPath)</p>
<p>    End Sub</p>
<p>End Module</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Floating point precision and the sum of logs by Jon</title>
		<link>http://www.jonkagstrom.com/?p=11&#038;cpage=1#comment-723</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Mon, 26 Jan 2009 14:00:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=11#comment-723</guid>
		<description>Thanks Ted!</description>
		<content:encoded><![CDATA[<p>Thanks Ted!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Floating point precision and the sum of logs by Ted Snide</title>
		<link>http://www.jonkagstrom.com/?p=11&#038;cpage=1#comment-722</link>
		<dc:creator>Ted Snide</dc:creator>
		<pubDate>Mon, 26 Jan 2009 13:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=11#comment-722</guid>
		<description>Thanks for the good explaination, sum of logs is a really neat trick! Keep it up!</description>
		<content:encoded><![CDATA[<p>Thanks for the good explaination, sum of logs is a really neat trick! Keep it up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on uclassify.com by Mackan</title>
		<link>http://www.jonkagstrom.com/?p=24&#038;cpage=1#comment-670</link>
		<dc:creator>Mackan</dc:creator>
		<pubDate>Sun, 04 Jan 2009 09:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.jonkagstrom.com/?p=24#comment-670</guid>
		<description>Riktigt häftigt. Hoppas det går bra!</description>
		<content:encoded><![CDATA[<p>Riktigt häftigt. Hoppas det går bra!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About / CV by Carnets de recherche &#187; Blog Archive &#187; Gender Analyzer - pour en avoir le coeur net.</title>
		<link>http://www.jonkagstrom.com/?page_id=2&#038;cpage=1#comment-570</link>
		<dc:creator>Carnets de recherche &#187; Blog Archive &#187; Gender Analyzer - pour en avoir le coeur net.</dc:creator>
		<pubDate>Tue, 18 Nov 2008 16:48:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-570</guid>
		<description>[...] - Who is Writing that Blog?. Courriel envoyé hier, réponse reçue hier en soirée. C&#8217;est Jon Kågström, le fondateur de uClassify.com, qui a répondu à mon courriel, précisant que le site Gender [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; Who is Writing that Blog?. Courriel envoyé hier, réponse reçue hier en soirée. C&#8217;est Jon Kågström, le fondateur de uClassify.com, qui a répondu à mon courriel, précisant que le site Gender [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
