
<?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 Johan de Koning</title>
	<atom:link href="http://www.johandekoning.nl/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.johandekoning.nl</link>
	<description>www.johandekoning.nl</description>
	<lastBuildDate>Tue, 17 Jan 2012 22:41:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Getting things done and Outlook &#8211; Keep original message attached to task or appointment by Joost</title>
		<link>http://www.johandekoning.nl/index.php/2011/07/24/getting-things-done-copy-email-to-tasklist-or-agenda-with-outlook/comment-page-1/#comment-27426</link>
		<dc:creator>Joost</dc:creator>
		<pubDate>Tue, 17 Jan 2012 22:41:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=633#comment-27426</guid>
		<description>Johan, werkt prima zoals ik het had aangegeven. 
Ik zie nog 2 dingen die ik graag anders zou willen zien:

1. Het ingevoegde mailitem staat onder de platte tekst. Bij een lange mail moet je dan helemaal naar onderen scrollen om de oorspronkelijk mail te openen. Ik zou liever het ingevoegde mailitem gelijk bovenaan willen hebben en daaronder de platte tekst.

2. Bij de platte tekst wordt een link helemaal met de kode HYPERLINK ... getoond. Dat staat heel onrustig.

In mijn oorspronkelijke mail heb ik staan: (en dat zou ik dan ook willen zien)
http://www.outlook-tips.net/code-samples/save-and-delete-attachments/ 
http://www.vbaexpress.com/kb/getarticle.php?kb_id=981 

en dit wordt weergegeven als:
HYPERLINK &quot;https://www.upcmail.net/do/redirect?url=http%253A%252F%252Fwww.outlook-tips.net%252Fcode-samples%252Fsave-and-delete-attachments%252F&amp;hmac=ffb7168c23dd04f655fd034f9dc21c9e&quot; \nhttp://www.outlook-tips.net/code-samples/save-and-delete-attachments/ 
HYPERLINK &quot;https://www.upcmail.net/do/redirect?url=http%253A%252F%252Fwww.vbaexpress.com%252Fkb%252Fgetarticle.php%253Fkb_id%253D981&amp;hmac=19c7c0602b8f633cdf599985ddbe8819&quot; \nhttp://www.vbaexpress.com/kb/getarticle.php?kb_id=981 

Kun je dat ook nog oplossen?</description>
		<content:encoded><![CDATA[<p>Johan, werkt prima zoals ik het had aangegeven.<br />
Ik zie nog 2 dingen die ik graag anders zou willen zien:</p>
<p>1. Het ingevoegde mailitem staat onder de platte tekst. Bij een lange mail moet je dan helemaal naar onderen scrollen om de oorspronkelijk mail te openen. Ik zou liever het ingevoegde mailitem gelijk bovenaan willen hebben en daaronder de platte tekst.</p>
<p>2. Bij de platte tekst wordt een link helemaal met de kode HYPERLINK ... getoond. Dat staat heel onrustig.</p>
<p>In mijn oorspronkelijke mail heb ik staan: (en dat zou ik dan ook willen zien)<br />
http://www.outlook-tips.net/code-samples/save-and-delete-attachments/<br />
http://www.vbaexpress.com/kb/getarticle.php?kb_id=981 </p>
<p>en dit wordt weergegeven als:<br />
HYPERLINK "https://www.upcmail.net/do/redirect?url=http%253A%252F%252Fwww.outlook-tips.net%252Fcode-samples%252Fsave-and-delete-attachments%252F&amp;hmac=ffb7168c23dd04f655fd034f9dc21c9e" \nhttp://www.outlook-tips.net/code-samples/save-and-delete-attachments/<br />
HYPERLINK "https://www.upcmail.net/do/redirect?url=http%253A%252F%252Fwww.vbaexpress.com%252Fkb%252Fgetarticle.php%253Fkb_id%253D981&amp;hmac=19c7c0602b8f633cdf599985ddbe8819" \nhttp://www.vbaexpress.com/kb/getarticle.php?kb_id=981 </p>
<p>Kun je dat ook nog oplossen?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting things done and Outlook &#8211; Keep original message attached to task or appointment by Johan de Koning</title>
		<link>http://www.johandekoning.nl/index.php/2011/07/24/getting-things-done-copy-email-to-tasklist-or-agenda-with-outlook/comment-page-1/#comment-27248</link>
		<dc:creator>Johan de Koning</dc:creator>
		<pubDate>Sun, 15 Jan 2012 15:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=633#comment-27248</guid>
		<description>Joost,

Om een email direct naar een vooraf ingestelde locatie te kopieren heb ik de bestaande code iets aangepast. 

[vb]
Sub CopyEmailToNewItemAtPredefinedLocation(pathToLocation As String)
  
    Dim objMailItem As Outlook.MailItem
  
    If (ActiveExplorer.Selection.Count = 1) And (ActiveExplorer.Selection.Item(1).Class = olMail) Then
        Set objMailItem = ActiveExplorer.Selection.Item(1)
    End If

    Dim selectedFolder As folder
    Set selectedFolder = GetFolderByPath(pathToLocation)
  
    Const attPath As String = &quot;C:\temp\&quot;
  
    Set objNewItem = selectedFolder.Items.Add(selectedFolder.DefaultItemType)
    With objNewItem
        .Subject = objMailItem.Subject
        .Body = objMailItem.Body
  
        objMailItem.SaveAs attPath &amp; objMailItem.EntryID
  
        .Attachments.Add attPath &amp; objMailItem.EntryID, olEmbeddeditem, , &quot;Orginal message&quot;
  
        Kill (attPath &amp; objMailItem.EntryID)
  
        .Display
    End With
End Sub

Function GetFolderByPath(pathName As String) As folder
    Dim nameSpace As Outlook.nameSpace
    Dim pathNameParts() As String
    Dim foundFolder As folder
    
    pathNameParts = Split(pathName, &quot;\&quot;)
    Set nameSpace = Outlook.GetNamespace(&quot;MAPI&quot;)
    Set folderCollection = nameSpace.folders
    
    For Each pathNamePart In pathNameParts
        Set foundFolder = folderCollection(pathNamePart)
        Set folderCollection = foundFolder.folders
    Next pathNamePart
    
    Set GetFolderByPath = foundFolder
End Function
[/vb]

De GetFolderByPath functie zoekt aan de hand van een path de juiste folder (locatie) op. Om bijvoorbeeld direct naar de Agenda te kopieren is het path in mijn situatie mijnemailadres@domainnaam.nl\Calendar. De path naam hangt een beetje af van hoe je mailbox binnen Outlook heet. Bij mij is dat mijn emailadres maar je kan het ook MailBox Werk hebben genoemd. Dit moet je dus even uitzoeken. Deze GetFolderByPath functie wordt gebruikt door aangepaste CopyEmailToNewItemAtPredefinedLocation methode. 

Om vervolgens knoppen (met eventuele sneltoetsen) te koppelen aan deze functionaliteit heb ik twee extra methodes gemaakt welke het path doorgeven aan de CopyEmailToNewItemAtPredefinedLocation. 

[vb]
Sub CopyEmailToCalendar()
    CopyEmailToNewItemAtPredefinedLocation (&quot;mijnemailadres@domainnaam.nl\Calendar&quot;)
End Sub

Sub CopyEmailToTasks()
    CopyEmailToNewItemAtPredefinedLocation (&quot;mijnemailadres@domainnaam.nl\Tasks&quot;)
End Sub
[/vb]

Op je tweede vraag of in plaats van &quot;Original Message&quot; de oorspronkelijke titel van de email getoond kan worden als attachment naam, moet de volgende regel

[vb]
.Attachments.Add attPath &amp; objMailItem.EntryID, olEmbeddeditem, , &quot;Orginal message&quot;
[/vb]

aangepast worden naar

[vb]
.Attachments.Add attPath &amp; objMailItem.EntryID, olEmbeddeditem, , objMailItem.Subject
[/vb]

Wellicht kun je met deze informatie weer vooruit. Succes</description>
		<content:encoded><![CDATA[<p>Joost,</p>
<p>Om een email direct naar een vooraf ingestelde locatie te kopieren heb ik de bestaande code iets aangepast. </p>
<pre class="brush: vb; title: ; notranslate">
Sub CopyEmailToNewItemAtPredefinedLocation(pathToLocation As String)

    Dim objMailItem As Outlook.MailItem

    If (ActiveExplorer.Selection.Count = 1) And (ActiveExplorer.Selection.Item(1).Class = olMail) Then
        Set objMailItem = ActiveExplorer.Selection.Item(1)
    End If

    Dim selectedFolder As folder
    Set selectedFolder = GetFolderByPath(pathToLocation)

    Const attPath As String = &quot;C:\temp\&quot;

    Set objNewItem = selectedFolder.Items.Add(selectedFolder.DefaultItemType)
    With objNewItem
        .Subject = objMailItem.Subject
        .Body = objMailItem.Body

        objMailItem.SaveAs attPath &amp; objMailItem.EntryID

        .Attachments.Add attPath &amp; objMailItem.EntryID, olEmbeddeditem, , &quot;Orginal message&quot;

        Kill (attPath &amp; objMailItem.EntryID)

        .Display
    End With
End Sub

Function GetFolderByPath(pathName As String) As folder
    Dim nameSpace As Outlook.nameSpace
    Dim pathNameParts() As String
    Dim foundFolder As folder

    pathNameParts = Split(pathName, &quot;\&quot;)
    Set nameSpace = Outlook.GetNamespace(&quot;MAPI&quot;)
    Set folderCollection = nameSpace.folders

    For Each pathNamePart In pathNameParts
        Set foundFolder = folderCollection(pathNamePart)
        Set folderCollection = foundFolder.folders
    Next pathNamePart

    Set GetFolderByPath = foundFolder
End Function
</pre>
<p>De GetFolderByPath functie zoekt aan de hand van een path de juiste folder (locatie) op. Om bijvoorbeeld direct naar de Agenda te kopieren is het path in mijn situatie mijnemailadres@domainnaam.nl\Calendar. De path naam hangt een beetje af van hoe je mailbox binnen Outlook heet. Bij mij is dat mijn emailadres maar je kan het ook MailBox Werk hebben genoemd. Dit moet je dus even uitzoeken. Deze GetFolderByPath functie wordt gebruikt door aangepaste CopyEmailToNewItemAtPredefinedLocation methode. </p>
<p>Om vervolgens knoppen (met eventuele sneltoetsen) te koppelen aan deze functionaliteit heb ik twee extra methodes gemaakt welke het path doorgeven aan de CopyEmailToNewItemAtPredefinedLocation. </p>
<pre class="brush: vb; title: ; notranslate">
Sub CopyEmailToCalendar()
    CopyEmailToNewItemAtPredefinedLocation (&quot;mijnemailadres@domainnaam.nl\Calendar&quot;)
End Sub

Sub CopyEmailToTasks()
    CopyEmailToNewItemAtPredefinedLocation (&quot;mijnemailadres@domainnaam.nl\Tasks&quot;)
End Sub
</pre>
<p>Op je tweede vraag of in plaats van "Original Message" de oorspronkelijke titel van de email getoond kan worden als attachment naam, moet de volgende regel</p>
<pre class="brush: vb; title: ; notranslate">
.Attachments.Add attPath &amp; objMailItem.EntryID, olEmbeddeditem, , &quot;Orginal message&quot;
</pre>
<p>aangepast worden naar</p>
<pre class="brush: vb; title: ; notranslate">
.Attachments.Add attPath &amp; objMailItem.EntryID, olEmbeddeditem, , objMailItem.Subject
</pre>
<p>Wellicht kun je met deze informatie weer vooruit. Succes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting things done and Outlook &#8211; Keep original message attached to task or appointment by Joost</title>
		<link>http://www.johandekoning.nl/index.php/2011/07/24/getting-things-done-copy-email-to-tasklist-or-agenda-with-outlook/comment-page-1/#comment-26998</link>
		<dc:creator>Joost</dc:creator>
		<pubDate>Tue, 10 Jan 2012 19:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=633#comment-26998</guid>
		<description>Johan, ik ben halverwege hetzelfde boek dat jij ook hebt gelezen (Elke dag je hoofd en inbox leeg). Ik ben inderdaad tegen hetzelfde probleem als jij aangelopen. Ik heb je code even uitgeprobeerd en dit is inderdaad wel een oplossing. Ik heb nog wel een paar wensen, maar bezit te weinig kennis van VBA om het zelf aan te passen, maar wellicht zou jij er nog eens naar kunnen kijken. Ik wil eigen 3 knoppen en daarmee wil ik het volgende doen:
- verplaats item naar de map &#039;Kort Archief&#039;. Code hiervoor heb ik inmiddels gevonden, dat lukt dus wel.
- kopieer item (met evt bijlagen) naar een afspraak
- kopieer item (met evt bijlagen) naar een afspraak

In jouw code komt de lijst waaruit een map/taak/agenda gekozen kan worden. Ik wil eigenlijk dmv sneltoetsen (gekoppeld aan een knop) direct een item overzetten naar een mailbox (Kort Archief), afspraak of taak.

Dat is de eerste wens. De tweede is de omschrijving van het nieuwgemaakte item wat je de standaardnaam &quot;Orginal message&quot; meegeeft. Ik zou dat eigenlijk automatisch het onderwerp van het bericht als naam willen geven.

Zie je kans om de 2 wensen om te zetten in de benodigde code?</description>
		<content:encoded><![CDATA[<p>Johan, ik ben halverwege hetzelfde boek dat jij ook hebt gelezen (Elke dag je hoofd en inbox leeg). Ik ben inderdaad tegen hetzelfde probleem als jij aangelopen. Ik heb je code even uitgeprobeerd en dit is inderdaad wel een oplossing. Ik heb nog wel een paar wensen, maar bezit te weinig kennis van VBA om het zelf aan te passen, maar wellicht zou jij er nog eens naar kunnen kijken. Ik wil eigen 3 knoppen en daarmee wil ik het volgende doen:<br />
- verplaats item naar de map 'Kort Archief'. Code hiervoor heb ik inmiddels gevonden, dat lukt dus wel.<br />
- kopieer item (met evt bijlagen) naar een afspraak<br />
- kopieer item (met evt bijlagen) naar een afspraak</p>
<p>In jouw code komt de lijst waaruit een map/taak/agenda gekozen kan worden. Ik wil eigenlijk dmv sneltoetsen (gekoppeld aan een knop) direct een item overzetten naar een mailbox (Kort Archief), afspraak of taak.</p>
<p>Dat is de eerste wens. De tweede is de omschrijving van het nieuwgemaakte item wat je de standaardnaam "Orginal message" meegeeft. Ik zou dat eigenlijk automatisch het onderwerp van het bericht als naam willen geven.</p>
<p>Zie je kans om de 2 wensen om te zetten in de benodigde code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMPP and WCF .Net &#8211; Installation of OpenFire by Sandeep Sachan</title>
		<link>http://www.johandekoning.nl/index.php/2009/11/30/xmpp-and-wcf-net-installation-of-openfire/comment-page-1/#comment-24164</link>
		<dc:creator>Sandeep Sachan</dc:creator>
		<pubDate>Mon, 28 Nov 2011 12:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=436#comment-24164</guid>
		<description>Basically I have to use xmpp api into windows phone 7+ version. In nutshell I am looking for xmpp wcf wrapper so that it will help me to communicate with my Silverlight app.

Could you suggest something with respect to xmpp and windows phone 7 opensource.</description>
		<content:encoded><![CDATA[<p>Basically I have to use xmpp api into windows phone 7+ version. In nutshell I am looking for xmpp wcf wrapper so that it will help me to communicate with my Silverlight app.</p>
<p>Could you suggest something with respect to xmpp and windows phone 7 opensource.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Chromium OS by Francesco</title>
		<link>http://www.johandekoning.nl/index.php/2009/11/23/building-chromium-os/comment-page-1/#comment-21226</link>
		<dc:creator>Francesco</dc:creator>
		<pubDate>Tue, 23 Aug 2011 12:49:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=389#comment-21226</guid>
		<description>Hello everybody, 
I&#039;m getting the following error while gclient is trying to create build files with
gclient runhooks --force command:
Updating projects from gyp files...
Traceback (most recent call last):
  File &quot;src/build/gyp_chromium&quot;, line 171, in 
    sys.exit(gyp.main(args))
  File &quot;/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/__init__.py&quot;, line 463, in main
    options.circular_check)
  File &quot;/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/__init__.py&quot;, line 101, in Load
    depth, generator_input_info, check, circular_check)
  File &quot;/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/input.py&quot;, line 2289, in Load
    [dependency_nodes, flat_list] = BuildDependencyList(targets)
  File &quot;/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/input.py&quot;, line 1410, in BuildDependencyList
    dependency_node = dependency_nodes[dependency]
KeyError: &#039;src/third_party/libvpx/libvpx.gyp:libvpx#target while trying to load target src/remoting/remoting.gyp:remoting_base#target&#039;
Error: /usr/bin/python src/build/gyp_chromium in /home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium returned 1

could you please help me to get rid of it?
I want to build Chromium browser only.</description>
		<content:encoded><![CDATA[<p>Hello everybody,<br />
I'm getting the following error while gclient is trying to create build files with<br />
gclient runhooks --force command:<br />
Updating projects from gyp files...<br />
Traceback (most recent call last):<br />
  File "src/build/gyp_chromium", line 171, in<br />
    sys.exit(gyp.main(args))<br />
  File "/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/__init__.py", line 463, in main<br />
    options.circular_check)<br />
  File "/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/__init__.py", line 101, in Load<br />
    depth, generator_input_info, check, circular_check)<br />
  File "/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/input.py", line 2289, in Load<br />
    [dependency_nodes, flat_list] = BuildDependencyList(targets)<br />
  File "/home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium/src/tools/gyp/pylib/gyp/input.py", line 1410, in BuildDependencyList<br />
    dependency_node = dependency_nodes[dependency]<br />
KeyError: 'src/third_party/libvpx/libvpx.gyp:libvpx#target while trying to load target src/remoting/remoting.gyp:remoting_base#target'<br />
Error: /usr/bin/python src/build/gyp_chromium in /home/concept/francesco/work/chromium/home/chrome-svn/tarball/chromium returned 1</p>
<p>could you please help me to get rid of it?<br />
I want to build Chromium browser only.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Chromium OS &#8211; update by matt</title>
		<link>http://www.johandekoning.nl/index.php/2009/11/25/building-chromium-os-update/comment-page-1/#comment-19931</link>
		<dc:creator>matt</dc:creator>
		<pubDate>Tue, 19 Jul 2011 06:14:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=415#comment-19931</guid>
		<description>i&#039;m not a computer expert in any sense, but trying to install a version of chromium OS on an old desktop that isnt able to reinstall windows. I cant get past the blue screen after the login screen. any ideas/help?</description>
		<content:encoded><![CDATA[<p>i'm not a computer expert in any sense, but trying to install a version of chromium OS on an old desktop that isnt able to reinstall windows. I cant get past the blue screen after the login screen. any ideas/help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LINQ to XSD versus XSD.exe (part 1) by John</title>
		<link>http://www.johandekoning.nl/index.php/2008/07/19/linq-to-xsd-versus-xsdexe/comment-page-1/#comment-18716</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 28 Jun 2011 08:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=37#comment-18716</guid>
		<description>Hi 

Have you run the tests and got the results of the comparison?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>Have you run the tests and got the results of the comparison?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Building Android 1.5 &#8211; Getting the source by Johan de Koning</title>
		<link>http://www.johandekoning.nl/index.php/2009/06/07/building-android-15-getting-the-source/comment-page-1/#comment-18115</link>
		<dc:creator>Johan de Koning</dc:creator>
		<pubDate>Thu, 02 Jun 2011 14:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=210#comment-18115</guid>
		<description>Looks that the branch for the HTC Dream is obsolete and not working anymore.</description>
		<content:encoded><![CDATA[<p>Looks that the branch for the HTC Dream is obsolete and not working anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Android on other hardware by Bilgisayarınızda Android deneyin &#124; Blog Wolkanca</title>
		<link>http://www.johandekoning.nl/index.php/2009/08/16/running-android-on-other-hardware/comment-page-1/#comment-17361</link>
		<dc:creator>Bilgisayarınızda Android deneyin &#124; Blog Wolkanca</dc:creator>
		<pubDate>Mon, 25 Apr 2011 08:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=366#comment-17361</guid>
		<description>[...] Running Android on other hardware : Johan de Koning [...]</description>
		<content:encoded><![CDATA[<p>[...] Running Android on other hardware : Johan de Koning [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HttpWebRequest on Compact Framework: The operation has timed-out by Barry</title>
		<link>http://www.johandekoning.nl/index.php/2008/08/14/httpwebrequest-on-compact-framework-the-operation-has-timed-out/comment-page-1/#comment-16886</link>
		<dc:creator>Barry</dc:creator>
		<pubDate>Tue, 12 Apr 2011 13:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.johandekoning.nl/?p=72#comment-16886</guid>
		<description>A solution to our problem! Thanks Johan :-)</description>
		<content:encoded><![CDATA[<p>A solution to our problem! Thanks Johan <img src='http://www.johandekoning.nl/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

