<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by alkampfer</title>
    <description>Stories kicked by alkampfer</description>
    <link>http://www.dotnetkicks.com/</link>
    <language>en-us</language>
    <copyright>Atweb Publishing Ltd.</copyright>
    <docs>http://backend.userland.com/rss</docs>
    <generator>DotNetKicks.com - .NET links, community driven</generator>
    <ttl>30</ttl>
    <item>
      <title>create a report in excel 2007 with open xml sdk 1.0</title>
      <description>With few lines of code you can create cool report in excel 2007 thanks to linq to xml and open xml sdk. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f28%2fcreate-a-report-in-excel-2007-with-open-xml-sdk-10%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f28%2fcreate-a-report-in-excel-2007-with-open-xml-sdk-10%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/create_a_report_in_excel_2007_with_open_xml_sdk_1_0</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/create_a_report_in_excel_2007_with_open_xml_sdk_1_0</guid>
      <pubDate>Fri, 28 Nov 2008 09:08:53 GMT</pubDate>
    </item>
    <item>
      <title>How to add filter support to basic BindingList&amp;lt;T&amp;gt;</title>
      <description>This post shows a possible implementation of a BindingList&amp;lt;T&amp;gt; that support Filtering. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f22%2fextend-bindinglist-with-filter-functionality%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f22%2fextend-bindinglist-with-filter-functionality%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/How_to_add_filter_support_to_basic_BindingList_T</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/How_to_add_filter_support_to_basic_BindingList_T</guid>
      <pubDate>Sat, 22 Nov 2008 11:16:50 GMT</pubDate>
    </item>
    <item>
      <title>jQuery Intellisense in VS 2008 - ScottGu's Blog</title>
      <description>Last month I blogged about how Microsoft is extending support for jQuery.  Over the last few weeks we've been working with the jQuery team to add great jQuery intellisense support within Visual Studio 2008 and Visual Web Developer 2008 Express (which is free).  This is now available to download and use. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f11%2f21%2fjquery-intellisense-in-vs-2008.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fweblogs.asp.net%2fscottgu%2farchive%2f2008%2f11%2f21%2fjquery-intellisense-in-vs-2008.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/jquery/jQuery_Intellisense_in_VS_2008_ScottGu_s_Blog</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/jquery/jQuery_Intellisense_in_VS_2008_ScottGu_s_Blog</guid>
      <pubDate>Fri, 21 Nov 2008 16:31:20 GMT</pubDate>
    </item>
    <item>
      <title>Missing RemovedItem from BindingList and BindingSource</title>
      <description>The BindingList&amp;lt;T&amp;gt; misses a RemovingItem event, you can add it simply inheriting from it to have a better binding. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f18%2fmissing-removeditem-from-bindinglist-and-bindingsource%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f18%2fmissing-removeditem-from-bindinglist-and-bindingsource%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Missing_RemovedItem_from_BindingList_and_BindingSource</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Missing_RemovedItem_from_BindingList_and_BindingSource</guid>
      <pubDate>Tue, 18 Nov 2008 11:40:04 GMT</pubDate>
    </item>
    <item>
      <title>Validate html input with linq2xqm</title>
      <description>If you have HTML user input and you wants to render only some permitted tags, removing all unwanted tags (such as &amp;lt;script&amp;gt; tag to avoid cross site scripting) you can use linq2xml to actually parse the html fragment. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f17%2fvalidate-html-input-with-linq2xml%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f17%2fvalidate-html-input-with-linq2xml%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Validate_html_input_with_linq2xqm</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Validate_html_input_with_linq2xqm</guid>
      <pubDate>Mon, 17 Nov 2008 17:49:01 GMT</pubDate>
    </item>
    <item>
      <title>Three level master detail binding with wpf</title>
      <description>WPF permits you to create a three level master detail binding with no procedural code, only using XAML &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f08%2fthree-levels-master-detail-with-wpf%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f08%2fthree-levels-master-detail-with-wpf%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Three_level_master_detail_binding_with_wpf</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Three_level_master_detail_binding_with_wpf</guid>
      <pubDate>Sun, 09 Nov 2008 09:37:36 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight: simulate a 'Windows' desktop app. 3 (Resizable Window)</title>
      <description>A set of controls which allow the simulation of a Windows Forms application in a Silverlight environment. The form content can be defined at runtime, the window template is completely customizable; each window can be created declaratively or by code and has complete support for dragging and resizing; new features added: template revised, resizing from any side and corners, autoscroll if the content is wider than the window itself. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f11%2f08%2fsilverlight-simulate-windows-desktop-application-part-3-resizable-window%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f11%2f08%2fsilverlight-simulate-windows-desktop-application-part-3-resizable-window%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_simulate_a_Windows_desktop_app_3_Resizable_Window</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_simulate_a_Windows_desktop_app_3_Resizable_Window</guid>
      <pubDate>Sat, 08 Nov 2008 09:54:15 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight Plug-in and the Height Percentage problem in Firefox</title>
      <description>... I added a small Silverlight application to an existing and styled website, the app was surrounded by the usual &amp;lt;div&amp;gt;.
In IE7 all gone well but in FF the Silverlight application appeared to be completely collapsed and not visible at all. After some research I found the the problem is in the way Firefox renders the &amp;lt;object&amp;gt; tag when it's height is relative (that is it's a percentage). Since none of the containers around the Silverlight &amp;lt;object&amp;gt; tag had a Height defined Firefox assumed to use 0. Here's a workaround... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f11%2f06%2fsilverlight-plugin-height-percentage-problem-firefox%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f11%2f06%2fsilverlight-plugin-height-percentage-problem-firefox%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Plug_in_and_the_Height_Percentage_problem_in_Firefox</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Plug_in_and_the_Height_Percentage_problem_in_Firefox</guid>
      <pubDate>Thu, 06 Nov 2008 13:02:14 GMT</pubDate>
    </item>
    <item>
      <title>Live logging with WCF and log4Net</title>
      <description>In this post I show how to build a custom appender for log4net to do live logging with WCF. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f05%2fa-custom-publishsubscriber-appender-for-log4net%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f11%2f05%2fa-custom-publishsubscriber-appender-for-log4net%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Live_logging_with_WCF_and_log4Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Live_logging_with_WCF_and_log4Net</guid>
      <pubDate>Wed, 05 Nov 2008 08:26:21 GMT</pubDate>
    </item>
    <item>
      <title>Microsoft kills Linq to SQL</title>
      <description>Ayende (aka Oren) expresses disbelief at Microsoft's decision to effectively kill off LINQ to SQL. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fayende.com%2fBlog%2farchive%2f2008%2f10%2f31%2fmicrosoft-kills-linq-to-sql.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fayende.com%2fBlog%2farchive%2f2008%2f10%2f31%2fmicrosoft-kills-linq-to-sql.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/linq/Microsoft_kills_Linq_to_SQL</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/linq/Microsoft_kills_Linq_to_SQL</guid>
      <pubDate>Fri, 31 Oct 2008 09:01:13 GMT</pubDate>
    </item>
    <item>
      <title>Using fluent interface to express constraint on a database query</title>
      <description>Fluent interface makes it possible to create simple assertion against data in database. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f28%2fterminating-a-fluent-interface%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f28%2fterminating-a-fluent-interface%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/unittesting/Using_fluent_interface_to_express_constraint_on_a_database_query</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/unittesting/Using_fluent_interface_to_express_constraint_on_a_database_query</guid>
      <pubDate>Tue, 28 Oct 2008 12:27:07 GMT</pubDate>
    </item>
    <item>
      <title>NHibernate how to control Delete Rule and Update Rule in a foreign key</title>
      <description>If in your project you let NHibernate generate the database from the information you provide with the schema mappings (a thing extremely useful, especially for testing cause you can build up the database in engines like SQLite), sometimes you may need to control some attribute in a foreign key of a table... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f25%2fnhibernate-control-delete-rule-update-rule-foreign-key-schemaexport%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f25%2fnhibernate-control-delete-rule-update-rule-foreign-key-schemaexport%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/NHibernate_how_to_control_Delete_Rule_and_Update_Rule_in_a_foreign_key</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/NHibernate_how_to_control_Delete_Rule_and_Update_Rule_in_a_foreign_key</guid>
      <pubDate>Sat, 25 Oct 2008 08:55:54 GMT</pubDate>
    </item>
    <item>
      <title>How to report a bug, the importance of details and reproducibility</title>
      <description>Some rules on &amp;quot;how to track a bug&amp;quot; in your bug tracking system to helps developers correcting bugs quickly &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f20%2fhow-to-report-a-bug-the-importance-of-good-details-and-reproducibility-information%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f20%2fhow-to-report-a-bug-the-importance-of-good-details-and-reproducibility-information%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/How_to_report_a_bug_the_importance_of_details_and_reproducibility</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/How_to_report_a_bug_the_importance_of_details_and_reproducibility</guid>
      <pubDate>Mon, 20 Oct 2008 15:34:54 GMT</pubDate>
    </item>
    <item>
      <title>Deep Clone of a business object: the quick and dirty way</title>
      <description>...I needed a quick and dirty way to do the deep clone of an object, since my entity classes are shared between WCF, WPF and Silverlight (yes I'm one of the guys so crazy to build multi-target applications) I needed a method that could work in all the environments... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f18%2fdeep-clone-business-object-quick-dirty%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f18%2fdeep-clone-business-object-quick-dirty%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/Deep_Clone_of_a_business_object_the_quick_and_dirty_way</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/Deep_Clone_of_a_business_object_the_quick_and_dirty_way</guid>
      <pubDate>Sat, 18 Oct 2008 11:17:27 GMT</pubDate>
    </item>
    <item>
      <title>Controls inside ScrollViewer - horizontal resize layout bug and workar</title>
      <description>...I realized a simple test form with a series of textboxes inside a scrollviewer.
During the horizontal resize operation I encountered a very strange behavior: only the first textbox changed its width according to the new windows size.while all the others retained their previous value; when you start a vertical resize operation all the textboxes were redrawn with the correct width... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f16%2fsilverlight-controls-scrollviewer-horizontal-resize-layout-bug-related-workaround%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f16%2fsilverlight-controls-scrollviewer-horizontal-resize-layout-bug-related-workaround%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Controls_inside_ScrollViewer_horizontal_resize_layout_bug_and_workar</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Controls_inside_ScrollViewer_horizontal_resize_layout_bug_and_workar</guid>
      <pubDate>Thu, 16 Oct 2008 14:37:49 GMT</pubDate>
    </item>
    <item>
      <title>Problem with JSon serialization of Date in microsoft ajax.net</title>
      <description>The Json serializer of the microsoft ajax can give you problems when you pass date value to webservice methods becuse it adjust to UTC, here I present a simple solution to the problem. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2f%3fp%3d461"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2f%3fp%3d461" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/adonet/Problem_with_JSon_serialization_of_Date_in_microsoft_ajax_net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/adonet/Problem_with_JSon_serialization_of_Date_in_microsoft_ajax_net</guid>
      <pubDate>Thu, 16 Oct 2008 12:26:21 GMT</pubDate>
    </item>
    <item>
      <title>Invoking a Java/AXIS Web Service from .NET: the 'return null' issue</title>
      <description>When you try invoke a Java/Axis Web Service from a proxy class generated by Visual Studio 2005 or Visual Studio 2008 you often crash against the 'return null' issue... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f15%2finvoking-javaaxis-web-service-net-return-null-issue%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f15%2finvoking-javaaxis-web-service-net-return-null-issue%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/webservices/Invoking_a_Java_AXIS_Web_Service_from_NET_the_return_null_issue</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/webservices/Invoking_a_Java_AXIS_Web_Service_from_NET_the_return_null_issue</guid>
      <pubDate>Wed, 15 Oct 2008 13:57:42 GMT</pubDate>
    </item>
    <item>
      <title>The importance of infrastructure code</title>
      <description>Writing good infrastructure code can make your life easier, and it permits to write simple code less error prone. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f14%2fthe-value-of-infrastructure%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f14%2fthe-value-of-infrastructure%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/The_importance_of_infrastructure_code</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/The_importance_of_infrastructure_code</guid>
      <pubDate>Tue, 14 Oct 2008 18:43:09 GMT</pubDate>
    </item>
    <item>
      <title>Expression Tree vs reflection, the LCG approach</title>
      <description>You can use both Expression Tree or Lightweight code generation to gain fatster method invocation respect using plain Reflection. In this post I show both Expression Tree and LCG approach. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f09%2fagain-on-expression-tree-vs-reflection%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f09%2fagain-on-expression-tree-vs-reflection%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Expression_Tree_vs_reflection_the_LCG_approach</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Expression_Tree_vs_reflection_the_LCG_approach</guid>
      <pubDate>Thu, 09 Oct 2008 08:06:08 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight: Dropdown Menu Control</title>
      <description>In a previous post I showed how we can build a simple menu control for Silverlight 2 Beta 2 (Silverlight: how to build a simple menu control); then with the release of Silverlight RC0 some things were changed and the menu stopped working, due to how events are handled for disabled controls (Silverlight 2 RC0 - first problems due to undocumented breaking changes on disabled controls).

The only way to overcome these problems was to completely rewrite the control... &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f07%2fsilverlight-dropdown-menu-control%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f10%2f07%2fsilverlight-dropdown-menu-control%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_Dropdown_Menu_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_Dropdown_Menu_Control</guid>
      <pubDate>Tue, 07 Oct 2008 13:29:56 GMT</pubDate>
    </item>
    <item>
      <title>Faster inovke methods of unknown objects with expression tree</title>
      <description>Expression Trees can be used to avoid Reflection poor performance as showed in last post, here I show an helper class that makes using Expression Trees reflection a breeze. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2f%3fp%3d449"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2f%3fp%3d449" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Faster_inovke_methods_of_unknown_objects_with_expression_tree</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Faster_inovke_methods_of_unknown_objects_with_expression_tree</guid>
      <pubDate>Mon, 06 Oct 2008 16:01:00 GMT</pubDate>
    </item>
    <item>
      <title>Expression Tree vs Reflection.</title>
      <description>Expression Trees can be used to avoid Reflection poor performance when you need to invoke methods in object that you deos not know at runtime. In this post I show you how you can access to property of objects building and compiling an expression tree. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f04%2fexpression-tree-vs-reflection%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f10%2f04%2fexpression-tree-vs-reflection%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Expression_Tree_vs_Reflection</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Expression_Tree_vs_Reflection</guid>
      <pubDate>Mon, 06 Oct 2008 11:46:11 GMT</pubDate>
    </item>
    <item>
      <title>Silverlight: simulate a 'Windows' desktop application - part 2</title>
      <description>With the release of Silverlight RC0 it was finally time to update this sample application. Let's now go on with the tutorial and take a look at how the dragging capability of the Window is implemented, you can state if you want to enable or disable the dragging feature for an instance of the control simply by setting the 'DraggingEnabled' property. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f09%2f30%2fsilverlight-simulate-a-windows-desktop-application-part-2-dragging-window%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2fguardian%2findex.php%2f2008%2f09%2f30%2fsilverlight-simulate-a-windows-desktop-application-part-2-dragging-window%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/silverlight/Silverlight_simulate_a_Windows_desktop_application_part_2</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/silverlight/Silverlight_simulate_a_Windows_desktop_application_part_2</guid>
      <pubDate>Tue, 30 Sep 2008 14:42:47 GMT</pubDate>
    </item>
    <item>
      <title>TEst and database</title>
      <description>Testing and database are two world that does not fit well togheter. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f09%2f30%2fdatabase-testing%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f09%2f30%2fdatabase-testing%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/TEst_and_database</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/TEst_and_database</guid>
      <pubDate>Tue, 30 Sep 2008 14:14:04 GMT</pubDate>
    </item>
    <item>
      <title>Store log information in database with Log4Net</title>
      <description>Storing log info in database is a really better solution than using standard log files. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f09%2f25%2fa-good-log-can-really-helps-you-to-write-better-application%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.nablasoft.com%2falkampfer%2findex.php%2f2008%2f09%2f25%2fa-good-log-can-really-helps-you-to-write-better-application%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/opensource/Store_log_information_in_database_with_Log4Net</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/opensource/Store_log_information_in_database_with_Log4Net</guid>
      <pubDate>Thu, 25 Sep 2008 12:59:11 GMT</pubDate>
    </item>
  </channel>
</rss>