<?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>Laputa - Markus</title>
    <link>http://laputa.sharpdevelop.net/</link>
    <description>The Web log of the #develop team</description>
    <language>en-us</language>
    <copyright>SharpDevelop Core Team</copyright>
    <lastBuildDate>Sat, 28 Oct 2006 12:52:41 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.3.9074.18820</generator>
    <managingEditor>team@icsharpcode.net</managingEditor>
    <webMaster>team@icsharpcode.net</webMaster>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=739f7835-4a00-48f0-8fc8-930504a12067</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,739f7835-4a00-48f0-8fc8-930504a12067.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,739f7835-4a00-48f0-8fc8-930504a12067.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=739f7835-4a00-48f0-8fc8-930504a12067</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">In the directory <font face="Courier New">samples\NRefactoryExample</font> you
can find a new demo of our VB.NET/C# parser library.<br /><br />
It converts a code snippet into it's abstract syntax tree represntation (AST) which
you can see and modify in the treeview below. The other way (AST to code) supported
as well as running a visitor on the tree.<br /><p></p><img src="http://laputa.sharpdevelop.net/content/binary/nrefactorydemo.gif" border="0" /><img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=739f7835-4a00-48f0-8fc8-930504a12067" /></body>
      <title>NRefactory Demo</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,739f7835-4a00-48f0-8fc8-930504a12067.aspx</guid>
      <link>http://laputa.sharpdevelop.net/NRefactoryDemo.aspx</link>
      <pubDate>Sat, 28 Oct 2006 12:52:41 GMT</pubDate>
      <description>In the directory &lt;font face="Courier New"&gt;samples\NRefactoryExample&lt;/font&gt; you can
find a new demo of our VB.NET/C# parser library.&lt;br&gt;
&lt;br&gt;
It converts a code snippet into it's abstract syntax tree represntation (AST) which
you can see and modify in the treeview below. The other way (AST to code) supported
as well as running a visitor on the tree.&lt;br&gt;
&lt;p&gt;
&lt;/p&gt;
&lt;img src="http://laputa.sharpdevelop.net/content/binary/nrefactorydemo.gif" border="0"&gt;&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=739f7835-4a00-48f0-8fc8-930504a12067" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,739f7835-4a00-48f0-8fc8-930504a12067.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=81d45e31-399c-4a5f-851e-942638a28841</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,81d45e31-399c-4a5f-851e-942638a28841.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,81d45e31-399c-4a5f-851e-942638a28841.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=81d45e31-399c-4a5f-851e-942638a28841</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">Supposed you want to call a method and
don't know the return type you can use this handy completion feature:<br /><p><font face="Courier New">int getSomeObscureType()<br />
{<br />
    return 1;<br />
}      <br /></font></p><p><font face="Courier New">void test()<br />
{<br />
    ? x = getSomeObscureType()<font color="#ff0000">;</font><br />
}</font></p><p>
After you typed the semicolon (highlighted in red), the placeholder "?" is replaced
by the return type of the called method:
</p><p><font face="Courier New">void test()<br />
{<br />
    <font color="#ff0000">int</font> x = getSomeObscureType();<br />
}</font></p><img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=81d45e31-399c-4a5f-851e-942638a28841" /></body>
      <title>Secret code completion feature</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,81d45e31-399c-4a5f-851e-942638a28841.aspx</guid>
      <link>http://laputa.sharpdevelop.net/SecretCodeCompletionFeature.aspx</link>
      <pubDate>Sat, 28 Oct 2006 12:40:16 GMT</pubDate>
      <description>Supposed you want to call a method and don't know the return type you can use this handy completion feature:&lt;br&gt;
&lt;p&gt;
&lt;font face="Courier New"&gt;int getSomeObscureType()&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; return 1;&lt;br&gt;
}&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;
&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Courier New"&gt;void test()&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ? x = getSomeObscureType()&lt;font color="#ff0000"&gt;;&lt;/font&gt;
&lt;br&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;p&gt;
After you typed the semicolon (highlighted in red), the placeholder "?" is replaced
by the return type of the called method:
&lt;/p&gt;
&lt;p&gt;
&lt;font face="Courier New"&gt;void test()&lt;br&gt;
{&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;font color="#ff0000"&gt;int&lt;/font&gt; x = getSomeObscureType();&lt;br&gt;
}&lt;/font&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=81d45e31-399c-4a5f-851e-942638a28841" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,81d45e31-399c-4a5f-851e-942638a28841.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=ff89bb0c-e147-4601-8e3c-5699d2a7acff</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,ff89bb0c-e147-4601-8e3c-5699d2a7acff.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,ff89bb0c-e147-4601-8e3c-5699d2a7acff.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=ff89bb0c-e147-4601-8e3c-5699d2a7acff</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
Once again we are sitting in Bad Ischl discussing and working on SharpDevelop.<br /><br /><img src="http://laputa.sharpdevelop.net/content/binary/SDDD%20002.jpg" border="0" /><br />
Chris showing off his brand new machine.<br /><br /><img src="http://laputa.sharpdevelop.net/content/binary/SDDD%20003.jpg" border="0" /><br />
Daniel, after optimizing the folding speed.<br /><img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=ff89bb0c-e147-4601-8e3c-5699d2a7acff" /></body>
      <title>SharpDevelop Developer Days</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,ff89bb0c-e147-4601-8e3c-5699d2a7acff.aspx</guid>
      <link>http://laputa.sharpdevelop.net/SharpDevelopDeveloperDays.aspx</link>
      <pubDate>Sat, 28 Oct 2006 12:05:46 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
Once again we are sitting in Bad Ischl discussing and working on SharpDevelop.&lt;br&gt;
&lt;br&gt;
&lt;img src="http://laputa.sharpdevelop.net/content/binary/SDDD%20002.jpg" border="0"&gt;
&lt;br&gt;
Chris showing off his brand new machine.&lt;br&gt;
&lt;br&gt;
&lt;img src="http://laputa.sharpdevelop.net/content/binary/SDDD%20003.jpg" border="0"&gt;
&lt;br&gt;
Daniel, after optimizing the folding speed.&lt;br&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=ff89bb0c-e147-4601-8e3c-5699d2a7acff" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,ff89bb0c-e147-4601-8e3c-5699d2a7acff.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=86a72ea2-bc81-4aff-b6a3-2a88dddccbea</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,86a72ea2-bc81-4aff-b6a3-2a88dddccbea.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,86a72ea2-bc81-4aff-b6a3-2a88dddccbea.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=86a72ea2-bc81-4aff-b6a3-2a88dddccbea</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
        </p>
        <br />
        <img src="http://laputa.sharpdevelop.net/content/binary/die1.gif" border="0" />
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=86a72ea2-bc81-4aff-b6a3-2a88dddccbea" />
      </body>
      <title>Rest in peace</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,86a72ea2-bc81-4aff-b6a3-2a88dddccbea.aspx</guid>
      <link>http://laputa.sharpdevelop.net/RestInPeace.aspx</link>
      <pubDate>Fri, 27 Oct 2006 07:47:02 GMT</pubDate>
      <description>&lt;p&gt;
&lt;/p&gt;
&lt;br&gt;
&lt;img src="http://laputa.sharpdevelop.net/content/binary/die1.gif" border="0"&gt;&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=86a72ea2-bc81-4aff-b6a3-2a88dddccbea" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,86a72ea2-bc81-4aff-b6a3-2a88dddccbea.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=9a9a7b52-8d0e-47b2-b0c1-429cb4072b52</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,9a9a7b52-8d0e-47b2-b0c1-429cb4072b52.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,9a9a7b52-8d0e-47b2-b0c1-429cb4072b52.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=9a9a7b52-8d0e-47b2-b0c1-429cb4072b52</wfw:commentRss>
      <slash:comments>1</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
The german article titled "Core - Extension architecture", published in the dotnet
magazin 06/06, can now be freely obtained here:
</p>
        <p>
          <a href="http://vb-doc.sourceforge.net/stuff/SharpDevelop%20Addin%20System.pdf">Article</a> [PDF<br /><a href="http://vb-doc.sourceforge.net/stuff/SharpDevelop%20AddinSystem.zip">Demoproject and related
files</a> [ZIP]
</p>
        <p>
After reading the article, you should be able to integrate the SharpDevelop Addin
System in your own applications.
</p>
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=9a9a7b52-8d0e-47b2-b0c1-429cb4072b52" />
      </body>
      <title>Free article about the SharpDevelop addin system</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,9a9a7b52-8d0e-47b2-b0c1-429cb4072b52.aspx</guid>
      <link>http://laputa.sharpdevelop.net/FreeArticleAboutTheSharpDevelopAddinSystem.aspx</link>
      <pubDate>Mon, 03 Jul 2006 21:18:20 GMT</pubDate>
      <description>&lt;p&gt;
The german&amp;nbsp;article titled "Core - Extension architecture", published in the dotnet
magazin 06/06,&amp;nbsp;can now be freely obtained here:
&lt;/p&gt;
&lt;p&gt;
&lt;a href="http://vb-doc.sourceforge.net/stuff/SharpDevelop%20Addin%20System.pdf"&gt;Article&lt;/a&gt; [PDF&lt;br&gt;
&lt;a href="http://vb-doc.sourceforge.net/stuff/SharpDevelop%20AddinSystem.zip"&gt;Demoproject&amp;nbsp;and&amp;nbsp;related
files&lt;/a&gt;&amp;nbsp;[ZIP]
&lt;/p&gt;
&lt;p&gt;
After reading the article, you should be able to integrate the SharpDevelop Addin
System in your&amp;nbsp;own applications.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=9a9a7b52-8d0e-47b2-b0c1-429cb4072b52" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,9a9a7b52-8d0e-47b2-b0c1-429cb4072b52.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=d9e65021-bcda-4917-88a4-8fe522fbe194</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,d9e65021-bcda-4917-88a4-8fe522fbe194.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,d9e65021-bcda-4917-88a4-8fe522fbe194.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=d9e65021-bcda-4917-88a4-8fe522fbe194</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
No big news, but a little detail that makes the console addin more useful: I've added
selection support. You can now select text and copy it to the clipboard. 
</p>
        <p>
          <img src="http://vb-doc.sourceforge.net/stuff/laputa_console_selection.gif" alt="Screenshot" width="671" height="532" />
        </p>
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=d9e65021-bcda-4917-88a4-8fe522fbe194" />
      </body>
      <title>Console selection support</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,d9e65021-bcda-4917-88a4-8fe522fbe194.aspx</guid>
      <link>http://laputa.sharpdevelop.net/ConsoleSelectionSupport.aspx</link>
      <pubDate>Fri, 01 Jul 2005 10:07:22 GMT</pubDate>
      <description>&lt;p&gt;
No big news, but a little detail that makes the console addin more useful: I've added
selection support. You can now select text and copy it to the clipboard. 
&lt;/p&gt;
&lt;p&gt;
&lt;img src="http://vb-doc.sourceforge.net/stuff/laputa_console_selection.gif" alt="Screenshot" width="671" height="532"&gt; 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=d9e65021-bcda-4917-88a4-8fe522fbe194" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,d9e65021-bcda-4917-88a4-8fe522fbe194.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=b6704675-c405-441e-b52c-ce07c3a03194</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,b6704675-c405-441e-b52c-ce07c3a03194.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,b6704675-c405-441e-b52c-ce07c3a03194.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=b6704675-c405-441e-b52c-ce07c3a03194</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">.NET 2.0 introduces a new class in the <font face="Courier New">System.Web.UI.Design</font> namespace: <font face="Courier New">WebFormsRootDesigner</font> (<a href="http://msdn2.microsoft.com/library/tf3k5hcs%28en-us,vs.80%29.aspx">documentation</a>).
Unfortunately, the class only seems to be a stub that, most important, doesn't implement
the GetView method (<a href="http://winfx.msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/winfx/ref/ns/system.componentmodel.design/i/irootdesigner/irootdesigner.asp">documentation</a>).<br /><br />
If you have a clue where to find a functional implementation please let us know. Drop
me a line (you can find the email address <a href="http://wiki.sharpdevelop.net/default.aspx/SharpDevelop.MarkusPalme">here</a>)
or add a comment to this entry. Your help is highly appreciated.<br /><img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=b6704675-c405-441e-b52c-ce07c3a03194" /></body>
      <title>ASP.NET designer</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,b6704675-c405-441e-b52c-ce07c3a03194.aspx</guid>
      <link>http://laputa.sharpdevelop.net/ASPNETDesigner.aspx</link>
      <pubDate>Tue, 26 Apr 2005 19:26:33 GMT</pubDate>
      <description>.NET 2.0 introduces a new class in the &lt;font face="Courier New"&gt;System.Web.UI.Design&lt;/font&gt; namespace: &lt;font face="Courier New"&gt;WebFormsRootDesigner&lt;/font&gt; (&lt;a href="http://msdn2.microsoft.com/library/tf3k5hcs%28en-us,vs.80%29.aspx"&gt;documentation&lt;/a&gt;).
Unfortunately, the class only seems to be a stub that, most important, doesn't implement
the GetView method (&lt;a href="http://winfx.msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/winfx/ref/ns/system.componentmodel.design/i/irootdesigner/irootdesigner.asp"&gt;documentation&lt;/a&gt;).&lt;br&gt;
&lt;br&gt;
If you have a clue where to find a functional implementation please let us know. Drop
me a line (you can find the email address &lt;a href="http://wiki.sharpdevelop.net/default.aspx/SharpDevelop.MarkusPalme"&gt;here&lt;/a&gt;)
or add a comment to this entry. Your help is highly appreciated.&lt;br&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=b6704675-c405-441e-b52c-ce07c3a03194" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,b6704675-c405-441e-b52c-ce07c3a03194.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=0a84a0a3-1386-4f9b-a4c6-481a299dd33d</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,0a84a0a3-1386-4f9b-a4c6-481a299dd33d.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,0a84a0a3-1386-4f9b-a4c6-481a299dd33d.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=0a84a0a3-1386-4f9b-a4c6-481a299dd33d</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
As with revision 1815 there is a new option popping up in the windows forms designer
option panel:
</p>
        <p>
          <img alt="" hspace="0" src="http://vb-doc.sourceforge.net/stuff/laputa_options.gif" align="baseline" border="0" />
        </p>
        <p>
With this option enabled, the <font face="Courier New">InitializeComponents</font> method
in the generated code becomes readonly. The different background color makes indicates
this:
</p>
        <p>
          <img alt="" hspace="0" src="http://vb-doc.sourceforge.net/stuff/laputa_editor.gif" align="baseline" border="0" />
        </p>
        <p>
The reason for this options are the ongoing 'bug reports' in the forum from users
who didn't notice the comment above the method and changed the code. 
</p>
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=0a84a0a3-1386-4f9b-a4c6-481a299dd33d" />
      </body>
      <title>InitializeComponents method readonly</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,0a84a0a3-1386-4f9b-a4c6-481a299dd33d.aspx</guid>
      <link>http://laputa.sharpdevelop.net/InitializeComponentsMethodReadonly.aspx</link>
      <pubDate>Fri, 01 Apr 2005 17:37:00 GMT</pubDate>
      <description>&lt;p&gt;
As with revision 1815 there is a new option popping up in the windows forms designer
option panel:
&lt;/p&gt;
&lt;p&gt;
&lt;img alt="" hspace=0 src="http://vb-doc.sourceforge.net/stuff/laputa_options.gif" align=baseline border=0&gt;
&lt;/p&gt;
&lt;p&gt;
With this option enabled, the &lt;font face="Courier New"&gt;InitializeComponents&lt;/font&gt; method
in the generated code becomes readonly. The different background color makes indicates
this:
&lt;/p&gt;
&lt;p&gt;
&lt;img alt="" hspace=0 src="http://vb-doc.sourceforge.net/stuff/laputa_editor.gif" align=baseline border=0&gt;
&lt;/p&gt;
&lt;p&gt;
The reason for this options are the ongoing 'bug reports' in the forum from users
who didn't notice the comment above the method and changed the code. 
&lt;/p&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=0a84a0a3-1386-4f9b-a4c6-481a299dd33d" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,0a84a0a3-1386-4f9b-a4c6-481a299dd33d.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=c69fd5bd-d7d1-42a9-949e-3419fc2fd84c</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,c69fd5bd-d7d1-42a9-949e-3419fc2fd84c.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,c69fd5bd-d7d1-42a9-949e-3419fc2fd84c.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=c69fd5bd-d7d1-42a9-949e-3419fc2fd84c</wfw:commentRss>
      <slash:comments>3</slash:comments>
      <body xmlns="http://www.w3.org/1999/xhtml">As <a href="http://www.icsharpcode.net/laputa/PermaLink,guid,1930028f-f72a-4227-9ecb-9bf2f6713be3.aspx">promised
a long time ago</a>, I finally commited the Console Addin to the Fidalgo subversion
repository. Please report any bugs or crashes to me.<br /><img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=c69fd5bd-d7d1-42a9-949e-3419fc2fd84c" /></body>
      <title>Console addin</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,c69fd5bd-d7d1-42a9-949e-3419fc2fd84c.aspx</guid>
      <link>http://laputa.sharpdevelop.net/ConsoleAddin.aspx</link>
      <pubDate>Mon, 24 Jan 2005 19:38:41 GMT</pubDate>
      <description>As &lt;a href="http://www.icsharpcode.net/laputa/PermaLink,guid,1930028f-f72a-4227-9ecb-9bf2f6713be3.aspx"&gt;promised
a long time ago&lt;/a&gt;, I finally commited the Console Addin to the Fidalgo subversion
repository. Please report any bugs or crashes to me.&lt;br&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=c69fd5bd-d7d1-42a9-949e-3419fc2fd84c" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,c69fd5bd-d7d1-42a9-949e-3419fc2fd84c.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=d63f9d27-b068-4f09-8a49-175e9c18bf37</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,d63f9d27-b068-4f09-8a49-175e9c18bf37.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,d63f9d27-b068-4f09-8a49-175e9c18bf37.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=d63f9d27-b068-4f09-8a49-175e9c18bf37</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <ul>
          <li>
SD-253: The templates for DirectX projects now reference the newest <a href="http://www.microsoft.com/downloads/details.aspx?familyid=b7bc31fa-2df1-44fd-95a4-c2555446aed4&amp;displaylang=en">SDK</a> libraries</li>
          <li>
SD-267: Saving files in an interim removed folder doesn't cause an exception any longer<!--StartFragment --></li>
        </ul>
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=d63f9d27-b068-4f09-8a49-175e9c18bf37" />
      </body>
      <title>Bug fixes - 2004-10-20</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,d63f9d27-b068-4f09-8a49-175e9c18bf37.aspx</guid>
      <link>http://laputa.sharpdevelop.net/BugFixes20041020.aspx</link>
      <pubDate>Wed, 20 Oct 2004 21:00:38 GMT</pubDate>
      <description>&lt;ul&gt;
&lt;li&gt;
SD-253: The templates for DirectX projects now reference the newest &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=b7bc31fa-2df1-44fd-95a4-c2555446aed4&amp;amp;displaylang=en"&gt;SDK&lt;/a&gt; libraries&lt;/li&gt;
&lt;li&gt;
SD-267: Saving files in an interim removed folder doesn't cause an exception any longer&lt;!--StartFragment --&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=d63f9d27-b068-4f09-8a49-175e9c18bf37" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,d63f9d27-b068-4f09-8a49-175e9c18bf37.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <ul>
          <li>
SD-248 - "Warnings are always treated as errors" 
</li>
          <li>
            <a href="http://www.icsharpcode.net/laputa/PermaLink,guid,63a219d9-6453-4a6f-9faa-1eab71ecaf26.aspx">a
long outstanding</a> bug in the SharpAssembly library has been fixed (thanks to "amih" in
the forum). It can now load Managed C++ executables and DLLs, so eventually
there is code completition for the DirectX classes available.</li>
        </ul>
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8" />
      </body>
      <title>Bug fixes - 2004-10-14</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8.aspx</guid>
      <link>http://laputa.sharpdevelop.net/BugFixes20041014.aspx</link>
      <pubDate>Wed, 13 Oct 2004 18:11:25 GMT</pubDate>
      <description>&lt;ul&gt;
&lt;li&gt;
SD-248 - "Warnings are always treated as errors" 
&lt;li&gt;
&lt;a href="http://www.icsharpcode.net/laputa/PermaLink,guid,63a219d9-6453-4a6f-9faa-1eab71ecaf26.aspx"&gt;a
long outstanding&lt;/a&gt; bug in the SharpAssembly library has been fixed (thanks to "amih"&amp;nbsp;in
the forum).&amp;nbsp;It can now load&amp;nbsp;Managed C++ executables and DLLs, so eventually
there is code completition for the DirectX classes available.&lt;/li&gt;
&lt;/ul&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,bb99ac5e-f86d-49c6-97ad-0f2f48ae2ab8.aspx</comments>
      <category>Markus</category>
    </item>
    <item>
      <trackback:ping>http://laputa.sharpdevelop.net/Trackback.aspx?guid=1930028f-f72a-4227-9ecb-9bf2f6713be3</trackback:ping>
      <pingback:server>http://laputa.sharpdevelop.net/pingback.aspx</pingback:server>
      <pingback:target>http://laputa.sharpdevelop.net/PermaLink,guid,1930028f-f72a-4227-9ecb-9bf2f6713be3.aspx</pingback:target>
      <dc:creator />
      <wfw:comment>http://laputa.sharpdevelop.net/CommentView,guid,1930028f-f72a-4227-9ecb-9bf2f6713be3.aspx</wfw:comment>
      <wfw:commentRss>http://laputa.sharpdevelop.net/SyndicationService.asmx/GetEntryCommentsRss?guid=1930028f-f72a-4227-9ecb-9bf2f6713be3</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
I'm currently working on an addin that integrates a shell window into SharpDevelop.
Basically it's a port of the "Console" project  (<!--StartFragment --><a href="http://sourceforge.net/projects/console">http://sourceforge.net/projects/console</a>)
to ManagedC++ with some modifcations.
</p>
        <p>
It's not polished for release yet, still somewhat buggy and unstable. Expect a sneak
peek within the next few weeks.
</p>
        <p>
A screenshot showing the addin in action:
</p>
        <p>
          <img alt="" hspace="0" src="http://vb-doc.sourceforge.net/stuff/laputa_console.gif" align="baseline" border="0" />
        </p>
        <img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=1930028f-f72a-4227-9ecb-9bf2f6713be3" />
      </body>
      <title>Console addin</title>
      <guid isPermaLink="false">http://laputa.sharpdevelop.net/PermaLink,guid,1930028f-f72a-4227-9ecb-9bf2f6713be3.aspx</guid>
      <link>http://laputa.sharpdevelop.net/ConsoleAddin.aspx</link>
      <pubDate>Fri, 17 Sep 2004 22:54:48 GMT</pubDate>
      <description>&lt;p&gt;
I'm currently working on an addin that integrates a shell window into SharpDevelop.
Basically it's a port of the "Console" project&amp;nbsp; (&lt;!--StartFragment --&gt;&lt;a href="http://sourceforge.net/projects/console"&gt;http://sourceforge.net/projects/console&lt;/a&gt;)
to ManagedC++ with some modifcations.
&lt;/p&gt;
&lt;p&gt;
It's not polished for release yet, still somewhat buggy and unstable. Expect a sneak
peek within the next few weeks.
&lt;/p&gt;
&lt;p&gt;
A screenshot showing the addin in action:
&lt;/p&gt;
&lt;p&gt;
&lt;img alt="" hspace=0 src="http://vb-doc.sourceforge.net/stuff/laputa_console.gif" align=baseline border=0&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://laputa.sharpdevelop.net/aggbug.ashx?id=1930028f-f72a-4227-9ecb-9bf2f6713be3" /&gt;</description>
      <comments>http://laputa.sharpdevelop.net/CommentView,guid,1930028f-f72a-4227-9ecb-9bf2f6713be3.aspx</comments>
      <category>Markus</category>
    </item>
  </channel>
</rss>