<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>torsten's .NET blog</title>
    <link>http://www.rendelmann.info/blog/</link>
    <description>Torsten's blogging space</description>
    <image>
      <url>http://www.rendelmann.info/blog/images/feed_image.jpg</url>
      <title>torsten's .NET blog</title>
      <link>http://www.rendelmann.info/blog/</link>
    </image>
    <language>en-us</language>
    <copyright>Torsten Rendelmann</copyright>
    <lastBuildDate>Sun, 18 May 2008 11:50:20 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.1.8102.813</generator>
    <managingEditor>torsten@rendelmann.info</managingEditor>
    <webMaster>torsten@rendelmann.info</webMaster>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=356fbe68-3ed6-4781-90a4-57070a0141da</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,356fbe68-3ed6-4781-90a4-57070a0141da.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,356fbe68-3ed6-4781-90a4-57070a0141da.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=356fbe68-3ed6-4781-90a4-57070a0141da</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
You may have noticed the zoom keyboard shortcuts (CTRL+mouse wheel forward/back, CTRL+PLUS
SIGN, and CTRL+MINUS SIGN) are not enabled by default when hosting the WebBrowser
control if you have installed IE7, while it does without any problem with older
IE versions. This was now an issue for a long time in <a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;url=http%3a%2f%2fwww.rssbandit.org%2f">RSS
Bandit</a>, that we couldn't fix. Yesterday I did a research again and found this
page: <a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;url=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2faa770056(VS.85).aspx">MSDN
about IZoomEvents</a>. We already implemented the font size change using a menu (see <a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;url=http%3a%2f%2fsupport.microsoft.com%2fkb%2f304103">KB
304103</a>) but it offers not the same usability that you have with older IE x and
loose if you switch from IEx to IE7 and run <a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;url=http%3a%2f%2fwww.rssbandit.org%2f">RSS
Bandit</a>. Now it works again like a charm and for your convenience I repeat the
important part you have to apply in your own IE hosting code:
</p>
        <blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
          <p>
            <em>"To enable this behavior, call </em>
            <a id="ctl00_rs1_mainContentContainer_ctl03" onclick="javascript:Track('ctl00_rs1_mainContentContainer_ctl00|ctl00_rs1_mainContentContainer_ctl03',this);" href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;url=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2faa752117(VS.85).aspx">
              <em>IWebBrowser2::ExecWB</em>
            </a>
            <em> with
OLECMDID_OPTICAL_ZOOM, passing <code xmlns:msxsl="urn:schemas-microsoft-com:xslt"><font style="BACKGROUND-COLOR: #dddddd" color="#000066">100</font></code> in
pvaIn. Once set, the keyboard shortcuts remain available as long as the host navigates
to HTML content because the same instance of <span class="clsGlossary" onmouseover="showDef()" onmouseout="clearDef()" g_rid="term_mshtml">MSHTML</span> is
used. However, if the host navigates to Active documents, such as XML or Portable
Document Format (PDF) files, optical zoom is disabled and will need to be enabled
again."</em>
          </p>
        </blockquote>
        <p dir="ltr">
What the docs are not mention: you should call this at a time the hosted control is
visible and fully initialized, or you will get wired COM exceptions...
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da" />
      </body>
      <title>WebBrowser control hosting and build-in zoom: how to get it work again</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,356fbe68-3ed6-4781-90a4-57070a0141da.aspx</guid>
      <link>http://www.rendelmann.info/blog/2008/05/18/WebBrowser+Control+Hosting+And+Buildin+Zoom+How+To+Get+It+Work+Again.aspx</link>
      <pubDate>Sun, 18 May 2008 11:50:20 GMT</pubDate>
      <description>&lt;p&gt;
You may have noticed the zoom keyboard shortcuts (CTRL+mouse wheel forward/back, CTRL+PLUS
SIGN, and CTRL+MINUS SIGN) are not enabled by default when hosting the WebBrowser
control if you have installed IE7, while it does without any problem&amp;nbsp;with older
IE versions. This was now an issue for a long time in &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;amp;url=http%3a%2f%2fwww.rssbandit.org%2f"&gt;RSS
Bandit&lt;/a&gt;, that we couldn't fix. Yesterday I did a research again and found this
page: &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;amp;url=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2faa770056(VS.85).aspx"&gt;MSDN
about IZoomEvents&lt;/a&gt;. We already implemented the font size change using a menu (see &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;amp;url=http%3a%2f%2fsupport.microsoft.com%2fkb%2f304103"&gt;KB
304103&lt;/a&gt;) but it offers not the same usability that you have with older IE x and
loose if you switch from IEx to IE7 and run &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;amp;url=http%3a%2f%2fwww.rssbandit.org%2f"&gt;RSS
Bandit&lt;/a&gt;. Now it works again like a charm and for your convenience I repeat the
important part you have to apply in your own IE hosting code:
&lt;/p&gt;
&lt;blockquote dir=ltr style="MARGIN-RIGHT: 0px"&gt; 
&lt;p&gt;
&lt;em&gt;"To enable this behavior, call &lt;/em&gt;&lt;a id=ctl00_rs1_mainContentContainer_ctl03 onclick="javascript:Track('ctl00_rs1_mainContentContainer_ctl00|ctl00_rs1_mainContentContainer_ctl03',this);" href="http://www.rendelmann.info/blog/ct.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da&amp;amp;url=http%3a%2f%2fmsdn.microsoft.com%2fen-us%2flibrary%2faa752117(VS.85).aspx"&gt;&lt;em&gt;IWebBrowser2::ExecWB&lt;/em&gt;&lt;/a&gt;&lt;em&gt; with
OLECMDID_OPTICAL_ZOOM, passing &lt;code xmlns:msxsl="urn:schemas-microsoft-com:xslt"&gt;&lt;font style="BACKGROUND-COLOR: #dddddd" color=#000066&gt;100&lt;/font&gt;&lt;/code&gt; in
pvaIn. Once set, the keyboard shortcuts remain available as long as the host navigates
to HTML content because the same instance of &lt;span class=clsGlossary onmouseover=showDef() onmouseout=clearDef() g_rid="term_mshtml"&gt;MSHTML&lt;/span&gt; is
used. However, if the host navigates to Active documents, such as XML or Portable
Document Format (PDF) files, optical zoom is disabled and will need to be enabled
again."&lt;/em&gt;
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p dir=ltr&gt;
What the docs are not mention: you should call this at a time the hosted control is
visible and fully initialized, or you will get wired COM exceptions...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=356fbe68-3ed6-4781-90a4-57070a0141da" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,356fbe68-3ed6-4781-90a4-57070a0141da.aspx</comments>
      <category>IE Control</category>
      <category>RSS Bandit</category>
      <category>Technology/.NET</category>
      <category>Windows, etc.</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,cd8b22c1-dc73-4796-99c2-84ecd3ebb43f.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,cd8b22c1-dc73-4796-99c2-84ecd3ebb43f.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f</wfw:commentRss>
      <slash:comments>2</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
As you also can imagine by the new batch left side down this page: I'm now a WOT notary!
So what does WOT mean? Here is a short cite:
</p>
        <blockquote>
          <p>
"The <i><a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;url=http%3a%2f%2fwww.thawte.com%2f">thawte</a></i> Web
of Trust (WOT) is a Certification system that allows your identity to be validated
for use in your Personal Certificate."
</p>
        </blockquote>
        <p>
By default if you acquire a <a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;url=http%3a%2f%2fwww.thawte.com%2fsecure-email%2fpersonal-email-certificates%2findex.html">free
e-mail Certificate</a> from thawte, the Certificate is a general one: your name is
not included in the Certificate properties nor in the trust chain. By identity validation
(task of a WOT notary) you get a fully personalized Certificate including your name!
</p>
        <p>
I like to spread and support e-mail signing/encryption to fight the Spam - so I decided
to support (regional) users to get that personal free certificate to keep the e-mail
system up and running: just filter for signed mails. I use it now for some years,
believe me: if you once have the Cert., it's really easy to use. So if you ever get
a mail sent by me but not signed, just move it to your waste basket...
</p>
        <p>
So come on: sign your mails!
</p>
        <div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:768d3eeb-ea35-44e0-a22c-1203066aca98" style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; FLOAT: none; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px">Technorati
Tags: <a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;url=http%3a%2f%2ftechnorati.com%2ftags%2ffree%2520e-mail%2520certificate" rel="tag">free
e-mail certificate</a>, <a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;url=http%3a%2f%2ftechnorati.com%2ftags%2fWOT" rel="tag">WOT</a>, <a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;url=http%3a%2f%2ftechnorati.com%2ftags%2fWOT%2520notary" rel="tag">WOT
notary</a></div>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f" />
      </body>
      <title>Now I'm a WOT Notary</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,cd8b22c1-dc73-4796-99c2-84ecd3ebb43f.aspx</guid>
      <link>http://www.rendelmann.info/blog/2008/02/27/Now+Im+A+WOT+Notary.aspx</link>
      <pubDate>Wed, 27 Feb 2008 00:19:25 GMT</pubDate>
      <description>&lt;p&gt;
As you also can imagine by the new batch left side down this page: I'm now a WOT notary!
So what does WOT mean? Here is a short cite:
&lt;/p&gt;
&lt;blockquote&gt; 
&lt;p&gt;
"The &lt;i&gt;&lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;amp;url=http%3a%2f%2fwww.thawte.com%2f"&gt;thawte&lt;/a&gt;&lt;/i&gt; Web
of Trust (WOT) is a Certification system that allows your identity to be validated
for use in your Personal Certificate."
&lt;/p&gt;
&lt;/blockquote&gt; 
&lt;p&gt;
By default if you acquire a &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;amp;url=http%3a%2f%2fwww.thawte.com%2fsecure-email%2fpersonal-email-certificates%2findex.html"&gt;free
e-mail Certificate&lt;/a&gt; from thawte, the Certificate is a general one: your name is
not included in the Certificate properties nor in the trust chain. By identity validation
(task of a WOT notary) you get a fully personalized Certificate including your name!
&lt;/p&gt;
&lt;p&gt;
I like to spread and support e-mail signing/encryption to fight the Spam - so I decided
to support (regional) users to get that personal free certificate to keep the e-mail
system up and running: just filter for signed mails. I use it now for some years,
believe me: if you once have the Cert., it's really easy to use. So if you ever get
a mail sent by me but not signed, just move it to your waste basket...
&lt;/p&gt;
&lt;p&gt;
So come on: sign your mails!
&lt;/p&gt;
&lt;div class=wlWriterSmartContent id=scid:0767317B-992E-4b12-91E0-4F059A8CECA8:768d3eeb-ea35-44e0-a22c-1203066aca98 style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; FLOAT: none; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px"&gt;Technorati
Tags: &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;amp;url=http%3a%2f%2ftechnorati.com%2ftags%2ffree%2520e-mail%2520certificate" rel=tag&gt;free
e-mail certificate&lt;/a&gt;, &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;amp;url=http%3a%2f%2ftechnorati.com%2ftags%2fWOT" rel=tag&gt;WOT&lt;/a&gt;, &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f&amp;amp;url=http%3a%2f%2ftechnorati.com%2ftags%2fWOT%2520notary" rel=tag&gt;WOT
notary&lt;/a&gt;
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=cd8b22c1-dc73-4796-99c2-84ecd3ebb43f" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,cd8b22c1-dc73-4796-99c2-84ecd3ebb43f.aspx</comments>
      <category>Links</category>
      <category>Security</category>
      <category>Technology</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=34c4bb01-5f3b-4586-912a-d0bfee46cebe</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,34c4bb01-5f3b-4586-912a-d0bfee46cebe.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,34c4bb01-5f3b-4586-912a-d0bfee46cebe.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=34c4bb01-5f3b-4586-912a-d0bfee46cebe</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I wish you a merry christmas and a happy new year 2008! Thank you for your support
of the <a href="http://www.rendelmann.info/blog/ct.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe&amp;url=http%3a%2f%2fwww.rssbandit.org">Open
Source project</a>, for your pacience if we did not get a bug fixed within a day and
for the time you waiting to get your huge feedlist loaded - sorry for that <img alt=";-)" src="smilies/wink.gif" /></p>
        <p>
But as <a href="http://www.rendelmann.info/blog/ct.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe&amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2f">Dare
Obasanjo</a><a href="http://www.rendelmann.info/blog/ct.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe&amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2f2007%2f12%2f20%2fNewVersionOfRSSBanditThisWeekend.aspx">wrote</a>,
we will get a new release 1.6.x running on CLR 2.0 only out these days so there is
a good chance the annoying issues you may have considered get fixed meanwhile.
</p>
        <p>
Also a warm welcome to the new team member Oren - looks like he was just waiting
for the moment we start using the newest bits - CLR 2.0 and above - to jump into code,
thanks Oren! Think, we will have a good time next year too...
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe" />
      </body>
      <title>Merry Christmas, and thank you</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,34c4bb01-5f3b-4586-912a-d0bfee46cebe.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/12/24/Merry+Christmas+And+Thank+You.aspx</link>
      <pubDate>Mon, 24 Dec 2007 12:40:09 GMT</pubDate>
      <description>&lt;p&gt;
I wish you a merry christmas and a happy new year 2008! Thank you for your support
of the &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe&amp;amp;url=http%3a%2f%2fwww.rssbandit.org"&gt;Open
Source project&lt;/a&gt;, for your pacience if we did not get a bug fixed within a day and
for the time you waiting to get your huge feedlist loaded - sorry for that &lt;img alt=";-)" src="smilies/wink.gif"&gt;
&lt;/p&gt;
&lt;p&gt;
But as &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe&amp;amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2f"&gt;Dare
Obasanjo&lt;/a&gt; &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe&amp;amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2f2007%2f12%2f20%2fNewVersionOfRSSBanditThisWeekend.aspx"&gt;wrote&lt;/a&gt;,
we will get a new release 1.6.x running on CLR 2.0 only out these days so there is
a good chance the annoying issues you may have considered get fixed meanwhile.
&lt;/p&gt;
&lt;p&gt;
Also a warm welcome to the new team member Oren - looks like he&amp;nbsp;was just&amp;nbsp;waiting
for the moment we start using the newest bits - CLR 2.0 and above - to jump into code,
thanks Oren! Think, we will have a good time next year too...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=34c4bb01-5f3b-4586-912a-d0bfee46cebe" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,34c4bb01-5f3b-4586-912a-d0bfee46cebe.aspx</comments>
      <category>Life</category>
      <category>RSS Bandit</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=920fc079-6e9e-4cb7-9b82-86dc74b8a939</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,920fc079-6e9e-4cb7-9b82-86dc74b8a939.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,920fc079-6e9e-4cb7-9b82-86dc74b8a939.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=920fc079-6e9e-4cb7-9b82-86dc74b8a939</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I really like that animation movie:
</p>
        <p>
          <embed src="http://www.youtube.com/v/-4CV05HyAbM&amp;rel=1&amp;border=0" width="425" height="355" type="application/x-shockwave-flash" wmode="transparent">
          </embed>
        </p>
        <p>
(source: <a href="http://www.rendelmann.info/blog/ct.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939&amp;url=http%3a%2f%2finfosthetics.com%2farchives%2f2007%2f10%2finformation_revolution_michael_wesch.html">information
r/evolution movie</a> @ <a href="http://www.rendelmann.info/blog/ct.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939&amp;url=http%3a%2f%2finfosthetics.com%2f">information
aesthetics</a>)
</p>
        <div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:3eb4e2c6-2b82-4867-be72-ff52303945a8" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati
Tags: <a href="http://www.rendelmann.info/blog/ct.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939&amp;url=http%3a%2f%2ftechnorati.com%2ftags%2finformation%2520r%2fevolution" rel="tag">information
r/evolution</a></div>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939" />
      </body>
      <title>Information r/evolution...</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,920fc079-6e9e-4cb7-9b82-86dc74b8a939.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/11/10/Information+Revolution.aspx</link>
      <pubDate>Sat, 10 Nov 2007 22:55:17 GMT</pubDate>
      <description>&lt;p&gt;
I really like that animation movie:
&lt;/p&gt;
&lt;p&gt;
&lt;embed src="http://www.youtube.com/v/-4CV05HyAbM&amp;amp;rel=1&amp;amp;border=0" width="425" height="355" type="application/x-shockwave-flash" wmode="transparent"&gt;
&lt;/p&gt;
&lt;p&gt;
(source: &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939&amp;amp;url=http%3a%2f%2finfosthetics.com%2farchives%2f2007%2f10%2finformation_revolution_michael_wesch.html"&gt;information
r/evolution movie&lt;/a&gt;&amp;nbsp;@ &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939&amp;amp;url=http%3a%2f%2finfosthetics.com%2f"&gt;information
aesthetics&lt;/a&gt;)
&lt;/p&gt;
&lt;div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:3eb4e2c6-2b82-4867-be72-ff52303945a8" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;Technorati
Tags: &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939&amp;amp;url=http%3a%2f%2ftechnorati.com%2ftags%2finformation%2520r%2fevolution" rel="tag"&gt;information
r/evolution&lt;/a&gt;
&lt;/div&gt;
&gt;&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=920fc079-6e9e-4cb7-9b82-86dc74b8a939" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,920fc079-6e9e-4cb7-9b82-86dc74b8a939.aspx</comments>
      <category>Other Stuff</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=15a86959-5e9c-4032-b390-a09cc020231d</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,15a86959-5e9c-4032-b390-a09cc020231d.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,15a86959-5e9c-4032-b390-a09cc020231d.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=15a86959-5e9c-4032-b390-a09cc020231d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Today I helped a coworker to get the local mapped network drives using WMI instead
of COM Interop/native windows API. Just to keep the code as a reminder and help others
with the same problem I provide it here. 
</p>
        <p>
The result of the code below is in general the same you will get if you hit the "<font face="Courier New">net
use</font>" command at the windows command shell prompt. For further infos and reading
I suggest <a href="http://www.rendelmann.info/blog/ct.ashx?id=15a86959-5e9c-4032-b390-a09cc020231d&amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2faa394173.aspx">http://msdn2.microsoft.com/en-us/library/aa394173.aspx</a> (Win32_LogicalDisk;
MSDN WMI Reference); for immediate results of query the WMI you should use Scriptomatic
(download from <a href="http://www.rendelmann.info/blog/ct.ashx?id=15a86959-5e9c-4032-b390-a09cc020231d&amp;url=http%3a%2f%2fwww.microsoft.com%2fdownloads%2fdetails.aspx%3ffamilyid%3d09DFC342-648B-4119-B7EB-783B0F7D1178%26displaylang%3den">http://www.microsoft.com/downloads/details.aspx?familyid=09DFC342-648B-4119-B7EB-783B0F7D1178&amp;displaylang=en</a>).
</p>
        <p>
Little bit optimization is yet possible providing the drive type in the WQL as a where
clause parameter, so here it is:
</p>
        <pre>
          <span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">
            <span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">///
&lt;summary&gt;</span>
            <br />
            <span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">///
Container for Share entries</span>
            <br />
            <span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">///
&lt;/summary&gt;</span>
            <br />
            <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span>
            <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">struct</span> SharePathEntry<br />
{<br />
  <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">string</span> Name;<br />
  <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">string</span> Path;<br />
  <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span> SharePathEntry(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">string</span> n, <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">string</span> p)
{<br />
    Name <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> n;<br />
    Path <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> p;<br />
  }<br />
}<br /><br /><span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">//
for other types see: http://msdn2.microsoft.com/en-us/library/aa394173.aspx</span><br /><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">const</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">int</span> NetworkDriveType <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> 4;<br /><br /><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">public</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">static</span> List&lt;SharePathEntry&gt;
GetLocalShares()<br />
{<br />
  List&lt;SharePathEntry&gt; allLocalShares <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> List&lt;SharePathEntry&gt;(); <span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">//
a container </span><br /><br />
  WqlObjectQuery objectQuery <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> WqlObjectQuery(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"select
DriveType,DeviceID,ProviderName from Win32_LogicalDisk"</span>);<br />
  ManagementScope scope <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> ManagementScope(<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">@"\\.\root\cimv2"</span>); <span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">//
local WMI namespace</span><br />
  scope.Options.Impersonation <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> ImpersonationLevel.Impersonate; 
<br />
  scope.Options.EnablePrivileges <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">true</span>; 
<br />
  ManagementObjectSearcher searcher <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span><span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> ManagementObjectSearcher(scope,
objectQuery);<br />
  <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">foreach</span> (ManagementObject
share <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">in</span> searcher.Get())<br />
  {<br />
    <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">int</span> driveType <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> Convert.ToInt32(share[<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"DriveType"</span>]);<br />
    <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">if</span> (driveType
== NetworkDriveType) {<br />
      <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">object</span> objName <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> share[<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"DeviceID"</span>];<br />
      <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">object</span> objPath <span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> share[<span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"ProviderName"</span>];<br />
      <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">if</span> (<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">null</span> !<span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> objName
&amp;&amp; <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">null</span> !<span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">=</span> objPath)<br />
      {<br />
        allLocalShares.Add(<span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">new</span> SharePathEntry(objName.ToString(),
objPath.ToString()));<br />
      }<br />
    }<br />
  }<br />
  <span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent">return</span> allLocalShares;<br />
}<br /></span>
        </pre>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=15a86959-5e9c-4032-b390-a09cc020231d" />
      </body>
      <title>Get the local mapped network drives using WMI</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,15a86959-5e9c-4032-b390-a09cc020231d.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/10/19/Get+The+Local+Mapped+Network+Drives+Using+WMI.aspx</link>
      <pubDate>Fri, 19 Oct 2007 09:02:12 GMT</pubDate>
      <description>&lt;p&gt;
Today I helped a coworker to get the local mapped network drives using WMI instead
of COM Interop/native windows API. Just to keep the code as a reminder and help others
with the same problem I provide it here. 
&lt;/p&gt;
&lt;p&gt;
The result of the code below is in general the same you will get if you hit the "&lt;font face="Courier New"&gt;net
use&lt;/font&gt;" command at the windows command shell prompt. For further infos and reading
I suggest &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=15a86959-5e9c-4032-b390-a09cc020231d&amp;amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2faa394173.aspx"&gt;http://msdn2.microsoft.com/en-us/library/aa394173.aspx&lt;/a&gt;&amp;nbsp;(Win32_LogicalDisk;
MSDN WMI Reference); for immediate results of query the WMI you should use Scriptomatic
(download from &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=15a86959-5e9c-4032-b390-a09cc020231d&amp;amp;url=http%3a%2f%2fwww.microsoft.com%2fdownloads%2fdetails.aspx%3ffamilyid%3d09DFC342-648B-4119-B7EB-783B0F7D1178%26displaylang%3den"&gt;http://www.microsoft.com/downloads/details.aspx?familyid=09DFC342-648B-4119-B7EB-783B0F7D1178&amp;amp;displaylang=en&lt;/a&gt;).
&lt;/p&gt;
&lt;p&gt;
Little bit optimization is yet possible providing the drive type in the WQL as a where
clause parameter, so here it is:
&lt;/p&gt;
&lt;pre&gt;&lt;span style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;&lt;span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;///
&amp;lt;summary&amp;gt;&lt;/span&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;///
Container for Share entries&lt;/span&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;///
&amp;lt;/summary&amp;gt;&lt;/span&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;struct&lt;/span&gt; SharePathEntry&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;string&lt;/span&gt; Name;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;string&lt;/span&gt; Path;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; SharePathEntry(&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;string&lt;/span&gt; n, &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;string&lt;/span&gt; p)
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Name &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; n;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Path &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; p;&lt;br&gt;
&amp;nbsp;&amp;nbsp;}&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;//
for other types see: http://msdn2.microsoft.com/en-us/library/aa394173.aspx&lt;/span&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;const&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;int&lt;/span&gt; NetworkDriveType &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; 4;&lt;br&gt;
&lt;br&gt;
&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;public&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;static&lt;/span&gt; List&amp;lt;SharePathEntry&amp;gt;
GetLocalShares()&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;List&amp;lt;SharePathEntry&amp;gt; allLocalShares &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; List&amp;lt;SharePathEntry&amp;gt;(); &lt;span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;//
a container &lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;WqlObjectQuery objectQuery &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; WqlObjectQuery(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"select
DriveType,DeviceID,ProviderName from Win32_LogicalDisk"&lt;/span&gt;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;ManagementScope scope &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; ManagementScope(&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;@"\\.\root\cimv2"&lt;/span&gt;); &lt;span style="FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;//
local WMI namespace&lt;/span&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;scope.Options.Impersonation &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; ImpersonationLevel.Impersonate; 
&lt;br&gt;
&amp;nbsp;&amp;nbsp;scope.Options.EnablePrivileges &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;true&lt;/span&gt;; 
&lt;br&gt;
&amp;nbsp;&amp;nbsp;ManagementObjectSearcher searcher &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; ManagementObjectSearcher(scope,
objectQuery);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;foreach&lt;/span&gt; (ManagementObject
share &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;in&lt;/span&gt; searcher.Get())&lt;br&gt;
&amp;nbsp;&amp;nbsp;{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;int&lt;/span&gt; driveType &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; Convert.ToInt32(share[&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"DriveType"&lt;/span&gt;]);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;if&lt;/span&gt; (driveType
== NetworkDriveType) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;object&lt;/span&gt; objName &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; share[&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"DeviceID"&lt;/span&gt;];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;object&lt;/span&gt; objPath &lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; share[&lt;span style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4"&gt;"ProviderName"&lt;/span&gt;];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;if&lt;/span&gt; (&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;null&lt;/span&gt; !&lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; objName
&amp;amp;&amp;amp; &lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;null&lt;/span&gt; !&lt;span style="FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; objPath)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;allLocalShares.Add(&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; SharePathEntry(objName.ToString(),
objPath.ToString()));&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;}&lt;br&gt;
&amp;nbsp;&amp;nbsp;&lt;span style="FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;return&lt;/span&gt; allLocalShares;&lt;br&gt;
}&lt;br&gt;
&lt;/span&gt;&lt;/pre&gt;&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=15a86959-5e9c-4032-b390-a09cc020231d" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,15a86959-5e9c-4032-b390-a09cc020231d.aspx</comments>
      <category>Technology/.NET</category>
      <category>Tools</category>
      <category>Windows, etc.</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=6729049a-f11b-4e21-ad0b-0b2a2935b745</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,6729049a-f11b-4e21-ad0b-0b2a2935b745.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,6729049a-f11b-4e21-ad0b-0b2a2935b745.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=6729049a-f11b-4e21-ad0b-0b2a2935b745</wfw:commentRss>
      <slash:comments>5</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
It seems we hit the high border some days ago: the <a href="http://www.rendelmann.info/blog/ct.ashx?id=6729049a-f11b-4e21-ad0b-0b2a2935b745&amp;url=http%3a%2f%2fsourceforge.net%2fproject%2fstats%2fdetail.php%3fgroup_id%3d96589%26ugn%3drssbandit%26type%3dprdownload%26mode%3dalltime%26year%3d2007%26package_id%3d0">overall
download counter</a> at SF is above one million for the <a href="http://www.rendelmann.info/blog/ct.ashx?id=6729049a-f11b-4e21-ad0b-0b2a2935b745&amp;url=http%3a%2f%2fwww.rssbandit.org">favorite
newsreader</a>...
</p>
        <p>
Thank you all, that love the project - you are the real motivation engine!
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=6729049a-f11b-4e21-ad0b-0b2a2935b745" />
      </body>
      <title>We break the million: overall downloads</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,6729049a-f11b-4e21-ad0b-0b2a2935b745.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/09/21/We+Break+The+Million+Overall+Downloads.aspx</link>
      <pubDate>Fri, 21 Sep 2007 12:31:22 GMT</pubDate>
      <description>&lt;p&gt;
It seems we hit the high border some days ago: the &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=6729049a-f11b-4e21-ad0b-0b2a2935b745&amp;amp;url=http%3a%2f%2fsourceforge.net%2fproject%2fstats%2fdetail.php%3fgroup_id%3d96589%26ugn%3drssbandit%26type%3dprdownload%26mode%3dalltime%26year%3d2007%26package_id%3d0"&gt;overall
download counter&lt;/a&gt; at SF is above one million for the &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=6729049a-f11b-4e21-ad0b-0b2a2935b745&amp;amp;url=http%3a%2f%2fwww.rssbandit.org"&gt;favorite
newsreader&lt;/a&gt;...
&lt;/p&gt;
&lt;p&gt;
Thank you all, that love the project -&amp;nbsp;you are&amp;nbsp;the real motivation engine!
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=6729049a-f11b-4e21-ad0b-0b2a2935b745" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,6729049a-f11b-4e21-ad0b-0b2a2935b745.aspx</comments>
      <category>RSS Bandit</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=77d11165-ab34-4ae1-a6c8-426ba815f33c</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,77d11165-ab34-4ae1-a6c8-426ba815f33c.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,77d11165-ab34-4ae1-a6c8-426ba815f33c.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=77d11165-ab34-4ae1-a6c8-426ba815f33c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
You may have noticed we released <a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2fsourceforge.net%2fproject%2fshowfiles.php%3fgroup_id%3d96589">v1.5.0.17</a> of
my <a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2fwww.rssbandit.org">favorite
feed reader</a> (and <a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2f2007%2f09%2f20%2fRSSBanditV15017InstallerRefreshed.aspx">refreshed
the installer</a> meanwhile) - for the coding guys we now have even more: <a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2fwww.cenqua.com%2ffisheye"><img height="33" alt="Project Supported by FishEye" src="http://www.cenqua.com/images/fisheyed.gif" width="89" border="0" /></a></p>
        <p>
Thanks to the folks at <a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2fwww.atlassian.com%2fsoftware%2ffisheye%2fhosting.jsp">atlassian</a> we
are now have the comfortable source browsing tool running on the SF repositories
(<a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2ffisheye1.cenqua.com%2fbrowse%2f%7ebr%3dMAIN%2frssbandit%2fCurrentWork%2fSource">CVS
with the CLR 1.1</a> code and <a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;url=http%3a%2f%2ffisheye3.cenqua.com%2fbrowse%2frssbandit%2f%3f%2540hideEmptyDirectories%3dY">SVN
for CLR 2.0</a>). Most I like the diffs view and RSS link in the top right - there
the circle closes (subscribed).
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c" />
      </body>
      <title>Project source browsing with FishEye</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,77d11165-ab34-4ae1-a6c8-426ba815f33c.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/09/20/Project+Source+Browsing+With+FishEye.aspx</link>
      <pubDate>Thu, 20 Sep 2007 06:23:26 GMT</pubDate>
      <description>&lt;p&gt;
You may have noticed we released &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2fsourceforge.net%2fproject%2fshowfiles.php%3fgroup_id%3d96589"&gt;v1.5.0.17&lt;/a&gt; of
my &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2fwww.rssbandit.org"&gt;favorite
feed reader&lt;/a&gt; (and &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2f2007%2f09%2f20%2fRSSBanditV15017InstallerRefreshed.aspx"&gt;refreshed
the installer&lt;/a&gt; meanwhile) - for the coding guys we now have even more: &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2fwww.cenqua.com%2ffisheye"&gt;&lt;img height=33 alt="Project Supported by FishEye" src="http://www.cenqua.com/images/fisheyed.gif" width=89 border=0&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
Thanks to the folks at &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2fwww.atlassian.com%2fsoftware%2ffisheye%2fhosting.jsp"&gt;atlassian&lt;/a&gt; we
are now have the comfortable source browsing tool running&amp;nbsp;on the SF repositories
(&lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2ffisheye1.cenqua.com%2fbrowse%2f%7ebr%3dMAIN%2frssbandit%2fCurrentWork%2fSource"&gt;CVS
with the CLR 1.1&lt;/a&gt; code and &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c&amp;amp;url=http%3a%2f%2ffisheye3.cenqua.com%2fbrowse%2frssbandit%2f%3f%2540hideEmptyDirectories%3dY"&gt;SVN
for CLR 2.0&lt;/a&gt;). Most I like the diffs view and RSS link in the top right - there
the circle closes (subscribed).
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=77d11165-ab34-4ae1-a6c8-426ba815f33c" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,77d11165-ab34-4ae1-a6c8-426ba815f33c.aspx</comments>
      <category>RSS Bandit</category>
      <category>Technology/RSS</category>
      <category>Tools</category>
    </item>
    <item xml:lang="de">
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=637436e2-a8df-4ea7-a879-ccddd61f9989</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,637436e2-a8df-4ea7-a879-ccddd61f9989.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,637436e2-a8df-4ea7-a879-ccddd61f9989.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=637436e2-a8df-4ea7-a879-ccddd61f9989</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div>Viel früher als erwartet - Termin war eigentlich der 22./23. September - durften
wir dich bereits heute begrüßen, Felix! Konntest es wohl nicht erwarten...?
</div>
        <div style="PADDING-RIGHT: 8px; PADDING-LEFT: 0px; FLOAT: left; PADDING-BOTTOM: 8px; PADDING-TOP: 8px">
          <img title="Felix auf der Frühchenstation" height="300" alt="Geburt Felix_20070828_017_small.jpg" src="http://www.rendelmann.info/blog/content/binary/Geburt%20Felix_20070828_017_small.jpg" width="225" border="0" />
        </div>
        <div>Früh am Morgen, ca. 5:20 Uhr ging es (etwas hecktisch, aber ohne Blaulicht) mit
dem Bayrischen Roten Kreuz ins LKH Bregenz. Nach den Voruntersuchungen und einem kleinen
Frühstück (nur für den Papa) ging es dann 8:50 Uhr in den OP. 9:18 Uhr war es dann
soweit: der erste Schrei! 
</div>
        <div>Auf der Frühchen-Station konnte auch ich dich dann endlich begrüßen: 2290g schwer
(oder besser: leicht) und 46cm - der visuelle Eindruck täuscht doch etwas.
</div>
        <div style="PADDING-RIGHT: 0px; PADDING-LEFT: 8px; FLOAT: right; PADDING-BOTTOM: 8px; PADDING-TOP: 8px">
          <img title="Geschafft...!" height="300" alt="Geburt Felix_20070828_029_small.jpg" src="http://www.rendelmann.info/blog/content/binary/Geburt%20Felix_20070828_029_small.jpg" width="225" border="0" />
        </div>
        <div>Mama geht es auch gut - die OP war wohl etwas anders als damals bei Maike,
der kleineren der beiden großen Schwestern. Viel schlafen und vor allem: viel
trinken ist jetzt erstmal angesagt - daß du bald mit Mama zu uns nach Hause kannst!
Also streng dich an <img alt=";-)" src="smilies/wink.gif" /> Laura, Maike und ich
warten schon...
</div>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=637436e2-a8df-4ea7-a879-ccddd61f9989" />
      </body>
      <title>Hallo Felix</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,637436e2-a8df-4ea7-a879-ccddd61f9989.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/08/24/Hallo+Felix.aspx</link>
      <pubDate>Fri, 24 Aug 2007 20:03:01 GMT</pubDate>
      <description>&lt;div&gt;Viel früher als erwartet - Termin war eigentlich der 22./23. September - durften
wir dich bereits heute begrüßen, Felix! Konntest es wohl nicht erwarten...?
&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 8px; PADDING-LEFT: 0px; FLOAT: left; PADDING-BOTTOM: 8px; PADDING-TOP: 8px"&gt;&lt;img title="Felix auf der Frühchenstation" height=300 alt="Geburt Felix_20070828_017_small.jpg" src="http://www.rendelmann.info/blog/content/binary/Geburt%20Felix_20070828_017_small.jpg" width=225 border=0&gt;
&lt;/div&gt;
&lt;div&gt;Früh am Morgen, ca. 5:20 Uhr ging es (etwas hecktisch, aber ohne Blaulicht) mit
dem Bayrischen Roten Kreuz ins LKH Bregenz. Nach den Voruntersuchungen und einem kleinen
Frühstück (nur für den Papa) ging es dann 8:50 Uhr in den OP. 9:18 Uhr war es dann
soweit: der erste Schrei! 
&lt;/div&gt;
&lt;div&gt;Auf der Frühchen-Station konnte auch ich dich dann endlich begrüßen: 2290g schwer
(oder besser: leicht) und 46cm - der visuelle Eindruck täuscht doch etwas.
&lt;/div&gt;
&lt;div style="PADDING-RIGHT: 0px; PADDING-LEFT: 8px; FLOAT: right; PADDING-BOTTOM: 8px; PADDING-TOP: 8px"&gt;&lt;img title=Geschafft...! height=300 alt="Geburt Felix_20070828_029_small.jpg" src="http://www.rendelmann.info/blog/content/binary/Geburt%20Felix_20070828_029_small.jpg" width=225 border=0&gt;
&lt;/div&gt;
&lt;div&gt;Mama geht es auch gut - die OP war&amp;nbsp;wohl etwas anders als damals bei Maike,
der kleineren der beiden großen Schwestern.&amp;nbsp;Viel schlafen und vor allem: viel
trinken ist jetzt erstmal angesagt - daß du bald mit Mama zu uns nach Hause kannst!
Also streng dich an &lt;img alt=";-)" src="smilies/wink.gif"&gt; Laura, Maike und ich warten
schon...
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=637436e2-a8df-4ea7-a879-ccddd61f9989" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,637436e2-a8df-4ea7-a879-ccddd61f9989.aspx</comments>
      <category>Life</category>
      <category>Personal (German)</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=4b6754ac-b28a-4b09-b372-231723815f5e</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,4b6754ac-b28a-4b09-b372-231723815f5e.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,4b6754ac-b28a-4b09-b372-231723815f5e.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=4b6754ac-b28a-4b09-b372-231723815f5e</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Is I wrote <a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;url=http%3a%2f%2fwww.rendelmann.info%2fblog%2fPermaLink.aspx%3fguid%3df17e1f62-eae7-4a12-b4da-30470b507a91">recently</a>,
I worked to get <a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;url=http%3a%2f%2fwww.rssbandit.org"><a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;url=http%3a%2f%2fwww.rssbandit.org%2f">RSS
Bandit</a></a> running as a portable application. Now it is time to test it: you can
download the <strike>ShadowCat Beta 2</strike><a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;url=http%3a%2f%2fsourceforge.net%2fproject%2fshowfiles.php%3fgroup_id%3d96589%26package_id%3d103276%26release_id%3d539899">release</a> installer,
then read <a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;url=http%3a%2f%2fwww.rssbandit.org%2fdocs%2fv1.5%2fhtml%2fadvanced%2fhowto_make_rss_bandit_a_portable_application.htm">how
you get it done</a>.
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e" />
      </body>
      <title>Make use of it: the portable Bandit</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,4b6754ac-b28a-4b09-b372-231723815f5e.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/08/02/Make+Use+Of+It+The+Portable+Bandit.aspx</link>
      <pubDate>Thu, 02 Aug 2007 13:17:27 GMT</pubDate>
      <description>&lt;p&gt;
Is I wrote &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;amp;url=http%3a%2f%2fwww.rendelmann.info%2fblog%2fPermaLink.aspx%3fguid%3df17e1f62-eae7-4a12-b4da-30470b507a91"&gt;recently&lt;/a&gt;,
I worked to get &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;amp;url=http%3a%2f%2fwww.rssbandit.org"&gt;&lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;amp;url=http%3a%2f%2fwww.rssbandit.org%2f"&gt;RSS
Bandit&lt;/a&gt;&lt;/a&gt; running as a portable application. Now it is time to test it: you can
download the &lt;strike&gt;ShadowCat Beta 2&lt;/strike&gt; &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;amp;url=http%3a%2f%2fsourceforge.net%2fproject%2fshowfiles.php%3fgroup_id%3d96589%26package_id%3d103276%26release_id%3d539899"&gt;release&lt;/a&gt; installer,
then read &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e&amp;amp;url=http%3a%2f%2fwww.rssbandit.org%2fdocs%2fv1.5%2fhtml%2fadvanced%2fhowto_make_rss_bandit_a_portable_application.htm"&gt;how
you get it done&lt;/a&gt;.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=4b6754ac-b28a-4b09-b372-231723815f5e" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,4b6754ac-b28a-4b09-b372-231723815f5e.aspx</comments>
      <category>RSS Bandit</category>
      <category>Technology</category>
      <category>Technology/.NET</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=f17e1f62-eae7-4a12-b4da-30470b507a91</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,f17e1f62-eae7-4a12-b4da-30470b507a91.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,f17e1f62-eae7-4a12-b4da-30470b507a91.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=f17e1f62-eae7-4a12-b4da-30470b507a91</wfw:commentRss>
      <slash:comments>6</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I read about portable apps (applications, that are running from a stick without any
further installation) in my favourite <a href="http://www.rendelmann.info/blog/ct.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91&amp;url=http%3a%2f%2fwww.heise.de%2fct%2f07%2f14%2f084%2f">magazine</a> and
it just took a hour to set the sources to get <a href="http://www.rendelmann.info/blog/ct.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91&amp;url=http%3a%2f%2fwww.rssbandit.org%2f">RSS
Bandit</a><a href="http://www.rendelmann.info/blog/ct.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91&amp;url=http%3a%2f%2fwww.portableapps.com">running
from a stick</a>:
</p>
        <p>
          <img title="The Portable.Bandit" height="573" alt="The Portable.Bandit" src="http://www.rendelmann.info/blog/content/binary/Portable.Bandit.jpg" width="406" border="0" />
        </p>
        <p>
There is at least one issue left: the .NET framework must be installed at the machine
running the portable Bandit...
</p>
        <p>
Tomorrow I will walk to different machines to get it more tested.
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91" />
      </body>
      <title>The portable Bandit</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,f17e1f62-eae7-4a12-b4da-30470b507a91.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/07/01/The+Portable+Bandit.aspx</link>
      <pubDate>Sun, 01 Jul 2007 18:28:05 GMT</pubDate>
      <description>&lt;p&gt;
I read about portable apps (applications, that are running from a stick without any
further installation) in my favourite &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91&amp;amp;url=http%3a%2f%2fwww.heise.de%2fct%2f07%2f14%2f084%2f"&gt;magazine&lt;/a&gt; and
it just took a hour to set the sources to get &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91&amp;amp;url=http%3a%2f%2fwww.rssbandit.org%2f"&gt;RSS
Bandit&lt;/a&gt; &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91&amp;amp;url=http%3a%2f%2fwww.portableapps.com"&gt;running
from a stick&lt;/a&gt;:
&lt;/p&gt;
&lt;p&gt;
&lt;img title="The Portable.Bandit" height=573 alt="The Portable.Bandit" src="http://www.rendelmann.info/blog/content/binary/Portable.Bandit.jpg" width=406 border=0&gt;
&lt;/p&gt;
&lt;p&gt;
There is at least one issue left: the .NET framework must be installed at the machine
running the portable Bandit...
&lt;/p&gt;
&lt;p&gt;
Tomorrow I will walk to different machines to get it more tested.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=f17e1f62-eae7-4a12-b4da-30470b507a91" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,f17e1f62-eae7-4a12-b4da-30470b507a91.aspx</comments>
      <category>RSS Bandit</category>
      <category>Technology/.NET</category>
      <category>Windows, etc.</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=e83507b7-eec8-44e6-84e1-642b21663f3c</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,e83507b7-eec8-44e6-84e1-642b21663f3c.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,e83507b7-eec8-44e6-84e1-642b21663f3c.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=e83507b7-eec8-44e6-84e1-642b21663f3c</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Just because requesting the <a href="http://www.rendelmann.info/blog/ct.ashx?id=e83507b7-eec8-44e6-84e1-642b21663f3c&amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2fsystem.windows.forms.control.handle.aspx">Handle</a> (IntPtr,
see remarks section) will create the handle internally in case it is IntPtr.Zero and
may cause issues on disposing or closing! How to get around? Just use the this.<a href="http://www.rendelmann.info/blog/ct.ashx?id=e83507b7-eec8-44e6-84e1-642b21663f3c&amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2fsystem.windows.forms.control.ishandlecreated.aspx">IsHandleCreated</a> property...
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=e83507b7-eec8-44e6-84e1-642b21663f3c" />
      </body>
      <title>Avoid this.Handle != IntPtr.Zero checks!</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,e83507b7-eec8-44e6-84e1-642b21663f3c.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/06/19/Avoid+ThisHandle+IntPtrZero+Checks.aspx</link>
      <pubDate>Tue, 19 Jun 2007 17:30:12 GMT</pubDate>
      <description>&lt;p&gt;
Just because requesting the &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=e83507b7-eec8-44e6-84e1-642b21663f3c&amp;amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2fsystem.windows.forms.control.handle.aspx"&gt;Handle&lt;/a&gt; (IntPtr,
see remarks section) will create the handle internally in case it is IntPtr.Zero and
may cause issues on disposing or&amp;nbsp;closing! How to get around? Just use the&amp;nbsp;this.&lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=e83507b7-eec8-44e6-84e1-642b21663f3c&amp;amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2fsystem.windows.forms.control.ishandlecreated.aspx"&gt;IsHandleCreated&lt;/a&gt; property...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=e83507b7-eec8-44e6-84e1-642b21663f3c" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,e83507b7-eec8-44e6-84e1-642b21663f3c.aspx</comments>
      <category>Technology/.NET</category>
      <category>Windows, etc.</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I really like the two Sudoku games (one easy, one heavy) ever saturday in
our <a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;url=http%3a%2f%2fwww.szon.de%2f">local
newspaper</a> -  there are yet only three heavy games I could not solved over
the last months and it is really fun. So maybe they are not really "heavy" - who knows.
</p>
        <p>
But now I read <a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;url=http%3a%2f%2fdnovatchev.spaces.live.com%2fBlog%2fcns!44B0A32C2CCF7488!363.entry">this
post</a> about how to solve every Sudoku using <a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;url=http%3a%2f%2fajwelch.blogspot.com%2f2006%2f03%2fdimitres-tuned-sudoku-solution.html">XSLT</a> (another <a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;url=http%3a%2f%2fajwelch.blogspot.com%2f2006%2f05%2fsudoku-solver-complete-and-shes-fast_02.html">variant</a>),
using <a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;url=http%3a%2f%2ftechnology.amis.nl%2fblog%2f%3fp%3d2066">SQL</a> and <a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;url=http%3a%2f%2fn01senet.blogspot.com%2f2007%2f05%2fsudoku-by-regex.html">regular
expression</a>. Ouch - where is the fun? If you know the algorithm to solve one, it
can be expressed by every language poeple like to program. I would more like the algorithm
to generate new Sudoku games...
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c" />
      </body>
      <title>Sudoku for geeks</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/06/18/Sudoku+For+Geeks.aspx</link>
      <pubDate>Mon, 18 Jun 2007 07:04:48 GMT</pubDate>
      <description>&lt;p&gt;
I really like the&amp;nbsp;two&amp;nbsp;Sudoku games (one easy, one heavy) ever saturday in
our &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;amp;url=http%3a%2f%2fwww.szon.de%2f"&gt;local
newspaper&lt;/a&gt; - &amp;nbsp;there are yet only three heavy games I could not solved over
the last months and it is really fun. So maybe they are not really "heavy" - who knows.
&lt;/p&gt;
&lt;p&gt;
But now I read &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;amp;url=http%3a%2f%2fdnovatchev.spaces.live.com%2fBlog%2fcns!44B0A32C2CCF7488!363.entry"&gt;this
post&lt;/a&gt; about how to solve every Sudoku using &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;amp;url=http%3a%2f%2fajwelch.blogspot.com%2f2006%2f03%2fdimitres-tuned-sudoku-solution.html"&gt;XSLT&lt;/a&gt; (another &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;amp;url=http%3a%2f%2fajwelch.blogspot.com%2f2006%2f05%2fsudoku-solver-complete-and-shes-fast_02.html"&gt;variant&lt;/a&gt;),
using &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;amp;url=http%3a%2f%2ftechnology.amis.nl%2fblog%2f%3fp%3d2066"&gt;SQL&lt;/a&gt; and &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c&amp;amp;url=http%3a%2f%2fn01senet.blogspot.com%2f2007%2f05%2fsudoku-by-regex.html"&gt;regular
expression&lt;/a&gt;. Ouch - where is the fun? If you know the algorithm to solve one, it
can be expressed by every language poeple like to program. I would more like the algorithm
to generate new Sudoku games...
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,3f2f4357-b76d-4cf2-b04e-433a6f5c5c5c.aspx</comments>
      <category>Life</category>
      <category>Links</category>
      <category>Other Stuff</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=87c2ab4e-b22c-4215-bc00-d6a2566d46e9</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,87c2ab4e-b22c-4215-bc00-d6a2566d46e9.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,87c2ab4e-b22c-4215-bc00-d6a2566d46e9.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=87c2ab4e-b22c-4215-bc00-d6a2566d46e9</wfw:commentRss>
      <slash:comments>22</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Today I could track down an annoying issue: on some installations of the newer version
of <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=http%3a%2f%2fwww.rssbandit.org%2f">RSS
Bandit</a> (starting with the first betas of 1.5.0.x) it starts using <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=https%3a%2f%2fsourceforge.net%2ftracker%2findex.php%3ffunc%3ddetail%26aid%3d1642334%26group_id%3d96589%26atid%3d615248">100%</a><a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=https%3a%2f%2fsourceforge.net%2ftracker%2findex.php%3ffunc%3ddetail%26aid%3d1643088%26group_id%3d96589%26atid%3d615248">CPU</a> time
on a thread. As we started also to use <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=http%3a%2f%2fwww.dotlucene.net%2f">lucene.NET</a> with
this new release I guessed it was a related issue, I was right. But
as we run into <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2fPermaLink.aspx%3fguid%3d53bbe636-8976-4177-bed7-49a43f755036">multiple
issues</a> with lucene it was not obvious as a separate problem. So here it is:
</p>
        <p>
We used a slightly modified version of <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=http%3a%2f%2fwww.dotlucene.net%2f">lucene.NET</a> to
include the available language dependent analyzers and stopword filters. Before we
released, I already fixed some obvious issues I got with e.g. french stemmer. Now
we got more with the CJK (Japanese/Korean, <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=https%3a%2f%2fsourceforge.net%2ftracker%2findex.php%3ffunc%3ddetail%26aid%3d1643088%26group_id%3d96589%26atid%3d615248">bug
report</a>) and possibly Chinese analyzers. It looks like it get into a state it never
returns. The attached debug callstack was very helpful to got the direction
to search for! I found this: <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2f97e90x91.aspx%23Mtps_DropDownFilterText">TextReader.Read(char[],
int, int)</a> was called and the return value checked against -1 only, not against
0 (zero). So I run over all analyzers to find all the places I have to change that
code and here it is: the <a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;url=http%3a%2f%2frssbandit.sourceforge.net%2fbuilds%2fLucene.Net.dll.1.9.1.3.100pCPU.fix.zip">modified
lucene.net.dll</a> (zipped, 142K).
</p>
        <p>
To all users that run into the problem: can you test the modification, please? Just
download, unzip into the installation folder, restart Bandit. Please report here (or
as comments to the bug reports mentioned above) if it help - so we can refresh the
installer for the major public.
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9" />
      </body>
      <title>RSS Bandit and the 100% CPU issue</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,87c2ab4e-b22c-4215-bc00-d6a2566d46e9.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/03/07/RSS+Bandit+And+The+100+CPU+Issue.aspx</link>
      <pubDate>Wed, 07 Mar 2007 11:59:08 GMT</pubDate>
      <description>&lt;p&gt;
Today I could track down an annoying issue: on some installations of the newer version
of &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=http%3a%2f%2fwww.rssbandit.org%2f"&gt;RSS
Bandit&lt;/a&gt; (starting with the first betas of 1.5.0.x) it starts using &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=https%3a%2f%2fsourceforge.net%2ftracker%2findex.php%3ffunc%3ddetail%26aid%3d1642334%26group_id%3d96589%26atid%3d615248"&gt;100%&lt;/a&gt; &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=https%3a%2f%2fsourceforge.net%2ftracker%2findex.php%3ffunc%3ddetail%26aid%3d1643088%26group_id%3d96589%26atid%3d615248"&gt;CPU&lt;/a&gt; time
on a thread. As we started also&amp;nbsp;to use &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=http%3a%2f%2fwww.dotlucene.net%2f"&gt;lucene.NET&lt;/a&gt; with
this new release&amp;nbsp;I guessed&amp;nbsp;it was a related issue, I was&amp;nbsp;right. But
as we&amp;nbsp;run into &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=http%3a%2f%2fwww.25hoursaday.com%2fweblog%2fPermaLink.aspx%3fguid%3d53bbe636-8976-4177-bed7-49a43f755036"&gt;multiple
issues&lt;/a&gt; with lucene&amp;nbsp;it was not obvious as a separate problem. So here it is:
&lt;/p&gt;
&lt;p&gt;
We used a slightly modified version of &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=http%3a%2f%2fwww.dotlucene.net%2f"&gt;lucene.NET&lt;/a&gt; to
include the available language dependent analyzers and stopword filters. Before we
released, I already fixed some obvious issues I got with e.g. french stemmer. Now
we got more with the CJK (Japanese/Korean, &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=https%3a%2f%2fsourceforge.net%2ftracker%2findex.php%3ffunc%3ddetail%26aid%3d1643088%26group_id%3d96589%26atid%3d615248"&gt;bug
report&lt;/a&gt;) and possibly Chinese analyzers. It looks like it get into a state it never
returns. The attached debug callstack&amp;nbsp;was&amp;nbsp;very helpful to got the direction
to search for!&amp;nbsp;I found this: &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=http%3a%2f%2fmsdn2.microsoft.com%2fen-us%2flibrary%2f97e90x91.aspx%23Mtps_DropDownFilterText"&gt;TextReader.Read(char[],
int, int)&lt;/a&gt; was called and the return value checked against -1 only, not against
0 (zero). So I run over all analyzers to find all the places I have to change that
code and here it is: the &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9&amp;amp;url=http%3a%2f%2frssbandit.sourceforge.net%2fbuilds%2fLucene.Net.dll.1.9.1.3.100pCPU.fix.zip"&gt;modified
lucene.net.dll&lt;/a&gt; (zipped, 142K).
&lt;/p&gt;
&lt;p&gt;
To all users that run into the problem: can you test the modification, please? Just
download, unzip into the installation folder, restart Bandit. Please report here (or
as comments to the bug reports mentioned above) if it help - so we can refresh the
installer for the major public.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=87c2ab4e-b22c-4215-bc00-d6a2566d46e9" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,87c2ab4e-b22c-4215-bc00-d6a2566d46e9.aspx</comments>
      <category>RSS Bandit</category>
      <category>Technology/.NET</category>
    </item>
    <item>
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=41e311e1-8750-4f84-ae7c-486428f3bc93</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,41e311e1-8750-4f84-ae7c-486428f3bc93.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,41e311e1-8750-4f84-ae7c-486428f3bc93.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=41e311e1-8750-4f84-ae7c-486428f3bc93</wfw:commentRss>
      <slash:comments>4</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Today I stumbled over a wired issue in both VS.IDE 2003 and VS.IDE 2005: they did
not compiled my project anymore! Error was:
</p>
        <p>
Compiler Error CS1583 (CSC583.tmp is <b>not</b> a valid <b>Win32 resource</b><b>...</b></p>
        <p>
I just refreshed the french resources, so my first thought was it also caused that
error, but I'm wrong. Just before this change I fixed a issue with our Vista Icon
- added more ico image resolutions - and also a 256x256 Vista compressed image. What
I forgot: I did not compiled after the icon change! All the google'd <a href="http://www.rendelmann.info/blog/ct.ashx?id=41e311e1-8750-4f84-ae7c-486428f3bc93&amp;url=http%3a%2f%2fchannel9.msdn.com%2fShowPost.aspx%3fPostID%3d11922">answers</a> did <a href="http://www.rendelmann.info/blog/ct.ashx?id=41e311e1-8750-4f84-ae7c-486428f3bc93&amp;url=http%3a%2f%2fforums.microsoft.com%2fMSDN%2fShowPost.aspx%3fPostID%3d289616%26SiteID%3d1">not</a> matched
my case. I simply removed the 256x256 icon image - then it compiled successfully!
</p>
        <p>
So my question is: how do I compile a .NET application with a Vista compressed icon?
Do I have to compile under Vista? But how about VS 2003?
</p>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=41e311e1-8750-4f84-ae7c-486428f3bc93" />
      </body>
      <title>.NET Issue with Vista icons</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,41e311e1-8750-4f84-ae7c-486428f3bc93.aspx</guid>
      <link>http://www.rendelmann.info/blog/2007/02/20/NET+Issue+With+Vista+Icons.aspx</link>
      <pubDate>Tue, 20 Feb 2007 18:14:50 GMT</pubDate>
      <description>&lt;p&gt;
Today I stumbled over a wired issue in both VS.IDE 2003 and VS.IDE 2005: they did
not compiled my project anymore! Error was:
&lt;/p&gt;
&lt;p&gt;
Compiler Error CS1583 (CSC583.tmp is &lt;b&gt;not&lt;/b&gt; a valid &lt;b&gt;Win32 resource&lt;/b&gt; &lt;b&gt;...&lt;/b&gt;
&lt;/p&gt;
&lt;p&gt;
I just refreshed the french resources, so my first thought was it also caused that
error, but I'm wrong. Just before this change I fixed a issue with our Vista Icon
- added more ico image resolutions - and also a 256x256 Vista compressed image. What
I forgot: I did not compiled after the icon change! All the google'd &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=41e311e1-8750-4f84-ae7c-486428f3bc93&amp;amp;url=http%3a%2f%2fchannel9.msdn.com%2fShowPost.aspx%3fPostID%3d11922"&gt;answers&lt;/a&gt; did &lt;a href="http://www.rendelmann.info/blog/ct.ashx?id=41e311e1-8750-4f84-ae7c-486428f3bc93&amp;amp;url=http%3a%2f%2fforums.microsoft.com%2fMSDN%2fShowPost.aspx%3fPostID%3d289616%26SiteID%3d1"&gt;not&lt;/a&gt; matched
my case. I simply removed the 256x256 icon image - then it compiled successfully!
&lt;/p&gt;
&lt;p&gt;
So my question is: how do I compile a .NET application with a Vista compressed icon?
Do I have to compile under Vista? But how about VS 2003?
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=41e311e1-8750-4f84-ae7c-486428f3bc93" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,41e311e1-8750-4f84-ae7c-486428f3bc93.aspx</comments>
      <category>Ramblings</category>
      <category>Technology/.NET</category>
      <category>Windows, etc.</category>
    </item>
    <item xml:lang="de">
      <trackback:ping>http://www.rendelmann.info/blog/Trackback.aspx?guid=79314413-62a3-4c69-a9b7-459b19f43693</trackback:ping>
      <pingback:server>http://www.rendelmann.info/blog/pingback.aspx</pingback:server>
      <pingback:target>http://www.rendelmann.info/blog/PermaLink,guid,79314413-62a3-4c69-a9b7-459b19f43693.aspx</pingback:target>
      <dc:creator>TorstenR</dc:creator>
      <wfw:comment>http://www.rendelmann.info/blog/CommentView,guid,79314413-62a3-4c69-a9b7-459b19f43693.aspx</wfw:comment>
      <wfw:commentRss>http://www.rendelmann.info/blog/SyndicationService.asmx/GetEntryCommentsRss?guid=79314413-62a3-4c69-a9b7-459b19f43693</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <div style="FLOAT: left">
          <img title="Laura's Zwerghase 'Flocke'" height="165" alt="Zwerghase 'Flocke'" hspace="5" src="http://www.rendelmann.info/blog/content/binary/Flocke_20070128_small.jpg" width="220" vspace="5" border="0" />
        </div>
        <div>Noch recht klein, aber oho - das ist unser zweiter Zwerghase "Flocke". Wurde
allerdings auch arg gepiesackt im Tierheim, bevor er zu uns kam. Hatten erstmal ein
paar Wochen zu tun, seine Bisswunde zu behandeln. Mit Bruno verträgt er sich noch
nicht so gut, aber wir hoffen im Frühjahr wird das besser, wenn beide zusammen im
Garten sein können.
</div>
        <div>Solange "wohnt" er erstmal im Keller...
</div>
        <img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=79314413-62a3-4c69-a9b7-459b19f43693" />
      </body>
      <title>Hier ist sie, die Nummer 2!</title>
      <guid isPermaLink="false">http://www.rendelmann.info/blog/PermaLink,guid,79314413-62a3-4c69-a9b7-459b19f43693.aspx</guid>
      <link>http://www.rendelmann.info/blog/2006/12/16/Hier+Ist+Sie+Die+Nummer+2.aspx</link>
      <pubDate>Sat, 16 Dec 2006 13:28:06 GMT</pubDate>
      <description>&lt;div style="FLOAT: left"&gt;&lt;img title="Laura's Zwerghase 'Flocke'" height=165 alt="Zwerghase 'Flocke'" hspace=5 src="http://www.rendelmann.info/blog/content/binary/Flocke_20070128_small.jpg" width=220 vspace=5 border=0&gt;
&lt;/div&gt;
&lt;div&gt;Noch recht klein, aber oho -&amp;nbsp;das ist unser zweiter Zwerghase "Flocke".&amp;nbsp;Wurde
allerdings auch arg gepiesackt im Tierheim, bevor er zu uns kam. Hatten erstmal ein
paar Wochen zu tun, seine Bisswunde zu behandeln. Mit Bruno verträgt er sich noch
nicht so gut, aber wir hoffen im Frühjahr wird das besser, wenn beide zusammen im
Garten sein können.
&lt;/div&gt;
&lt;div&gt;Solange "wohnt" er erstmal im Keller...
&lt;/div&gt;
&lt;img width="0" height="0" src="http://www.rendelmann.info/blog/aggbug.ashx?id=79314413-62a3-4c69-a9b7-459b19f43693" /&gt;</description>
      <comments>http://www.rendelmann.info/blog/CommentView,guid,79314413-62a3-4c69-a9b7-459b19f43693.aspx</comments>
      <category>Life</category>
      <category>Personal (German)</category>
    </item>
  </channel>
</rss>