<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>DotNetKicks.com : Stories kicked by BlackWasp</title>
    <description>Stories kicked by BlackWasp</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>Hiding the Mouse Pointer (C#)</title>
      <description>Some applications require that the mouse pointer be hidden during use. Examples of such software include screen savers and graphical applications or games. Each may fundamentally change the manner of display or the general behaviour of the cursor. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fHideMousePointer.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fHideMousePointer.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/Hiding_the_Mouse_Pointer_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/Hiding_the_Mouse_Pointer_C</guid>
      <pubDate>Fri, 03 Jul 2009 20:41:15 GMT</pubDate>
    </item>
    <item>
      <title>Moving the Mouse Pointer Programmatically (C#)</title>
      <description>Although rare, there are some situations where you may wish to reposition the mouse pointer programmatically to improve the user experience or to enhance accessibility. This can be easily achieved using standard .NET classes and properties. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fMoveMousePointer.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fMoveMousePointer.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/Moving_the_Mouse_Pointer_Programmatically_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/Moving_the_Mouse_Pointer_Programmatically_C</guid>
      <pubDate>Fri, 03 Jul 2009 20:35:03 GMT</pubDate>
    </item>
    <item>
      <title>Treating Warnings as Errors in Visual Studio</title>
      <description>The compiler used by Visual Studio can produce errors when code cannot be built and warnings when it completes compilation successfully but there are areas of concern. To avoid warnings being missed or ignored, there is an option to treat them as errors. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fVSWarningsAsErrors.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fVSWarningsAsErrors.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Treating_Warnings_as_Errors_in_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Treating_Warnings_as_Errors_in_Visual_Studio</guid>
      <pubDate>Sat, 27 Jun 2009 10:00:00 GMT</pubDate>
    </item>
    <item>
      <title>Using Extension Methods with Enumerations</title>
      <description>Extension methods were introduced in .NET 3.5 to allow classes to be apparently extended without modifying the class' code or using inheritance. Extension methods can also be used to add extra behaviour to enumerations. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fEnumExtension.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fEnumExtension.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_Extension_Methods_with_Enumerations</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_Extension_Methods_with_Enumerations</guid>
      <pubDate>Fri, 26 Jun 2009 21:45:01 GMT</pubDate>
    </item>
    <item>
      <title>Registering System-Wide Hot Keys</title>
      <description>Some Windows applications execute in the background and are activated only as required. To enhance such a program's usability it is useful to register a system-wide hot key. This allows the software to activate when a specific key combination is pressed. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fRegisterHotKey.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fRegisterHotKey.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/Registering_System_Wide_Hot_Keys</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/Registering_System_Wide_Hot_Keys</guid>
      <pubDate>Mon, 15 Jun 2009 19:10:30 GMT</pubDate>
    </item>
    <item>
      <title>Visual Studio Looping Code Snippets</title>
      <description>Visual Studio 2005 allows quick creation of boilerplate code through the use of code snippets. In this article five snippets are considered. These allow you to quickly create the common looping structures in your programs with simple shortcut phrases. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fVSLoopSnippets.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fVSLoopSnippets.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Visual_Studio_Looping_Code_Snippets</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Visual_Studio_Looping_Code_Snippets</guid>
      <pubDate>Sat, 13 Jun 2009 17:04:30 GMT</pubDate>
    </item>
    <item>
      <title>Observer Design Pattern with C#</title>
      <description>The observer pattern is a design pattern that defines a link between objects so that when one object's state changes, all dependent objects are updated automatically. This pattern allows communication between objects in a loosely coupled manner. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fObserver.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fObserver.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Observer_Design_Pattern_with_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Observer_Design_Pattern_with_C</guid>
      <pubDate>Mon, 08 Jun 2009 21:37:35 GMT</pubDate>
    </item>
    <item>
      <title>Combining Arrays (C#)</title>
      <description>A common requirement when developing software is to combine several arrays. This article explains the process of copying two arrays into a third, larger structure. This process can be extended to join together the contents of any number of arrays. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCombineArrays.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCombineArrays.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Combining_Arrays_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Combining_Arrays_C</guid>
      <pubDate>Sat, 30 May 2009 19:43:46 GMT</pubDate>
    </item>
    <item>
      <title>The Chaos Game and the Sierpinski Triangle</title>
      <description>The chaos game is a method for generating fractal images by plotting randomised points inside a polygon according to a simple set of rules. In this article we will use the chaos game to generate the Sierpinski triangle using C# and Windows Forms. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSierpinskiTriangle.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSierpinskiTriangle.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/The_Chaos_Game_and_the_Sierpinski_Triangle</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/The_Chaos_Game_and_the_Sierpinski_Triangle</guid>
      <pubDate>Wed, 20 May 2009 05:31:38 GMT</pubDate>
    </item>
    <item>
      <title>Recycling Files and Folders Part 1</title>
      <description>If your software can be used to delete files or folders, it can be advisable to move them to the Recycle Bin rather than permanently deleting them. This removes the problems caused by accidental deletion, as recycled files can be easily recovered. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fRecycleBin.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fRecycleBin.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Recycling_Files_and_Folders_Part_1</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Recycling_Files_and_Folders_Part_1</guid>
      <pubDate>Tue, 12 May 2009 04:22:45 GMT</pubDate>
    </item>
    <item>
      <title>Integrate FxCop with Visual Studio</title>
      <description>Step by step how to integrate FxCop with Visual Studio. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fvkreynin.wordpress.com%2f2009%2f05%2f09%2fintegrate-fxcop-1-36-vs-2008%2f"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fvkreynin.wordpress.com%2f2009%2f05%2f09%2fintegrate-fxcop-1-36-vs-2008%2f" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Integrate_FxCop_with_Visual_Studio</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Integrate_FxCop_with_Visual_Studio</guid>
      <pubDate>Sun, 10 May 2009 08:31:02 GMT</pubDate>
    </item>
    <item>
      <title>Strategy Design Pattern</title>
      <description>The strategy pattern is a design pattern that allows a set of similar algorithms to be defined and encapsulated in their own classes. The algorithm to be used for a particular purpose may then be selected at run-time according to your requirements. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fstrategy.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fstrategy.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Strategy_Design_Pattern</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Strategy_Design_Pattern</guid>
      <pubDate>Mon, 04 May 2009 21:28:36 GMT</pubDate>
    </item>
    <item>
      <title>Debugging with Attach to Process</title>
      <description>Visual Studio allows you to execute a program in debug mode and use various debugging tools to monitor its activity. When you are running a program outside of Visual Studio, it can still be possible to attach to that software to investigate its behaviour. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fDebuggerAttach.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fDebuggerAttach.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/visualstudio/Debugging_with_Attach_to_Process</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/visualstudio/Debugging_with_Attach_to_Process</guid>
      <pubDate>Tue, 14 Apr 2009 04:52:39 GMT</pubDate>
    </item>
    <item>
      <title>5 Blogs ASP.NET MVC Developers Should Be Following</title>
      <description>Everyone knows that Phil Haack, Rob Conery, Scott Hanselman, and Scott Guthrie all provide good ASP.NET MVC content on their blogs. I wanted to provide a list of excellent resources on ASP.NET MVC that are a little less well known. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2009%2f04%2f13%2f5-Blogs-ASPNET-MVC-Developers-Should-Be-Following.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.codethinked.com%2fpost%2f2009%2f04%2f13%2f5-Blogs-ASPNET-MVC-Developers-Should-Be-Following.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/mvc/5_Blogs_ASP_NET_MVC_Developers_Should_Be_Following</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/mvc/5_Blogs_ASP_NET_MVC_Developers_Should_Be_Following</guid>
      <pubDate>Mon, 13 Apr 2009 22:46:07 GMT</pubDate>
    </item>
    <item>
      <title>Bridge Design Pattern</title>
      <description>The bridge pattern is a design pattern that separates the abstract elements of a class from its technical implementation. This provides a cleaner implementation of real-world objects and allows the implementation details to be changed easily. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fBridge.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fBridge.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/patterns/Bridge_Design_Pattern</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/patterns/Bridge_Design_Pattern</guid>
      <pubDate>Thu, 09 Apr 2009 04:02:05 GMT</pubDate>
    </item>
    <item>
      <title>9 Golden Rules of Visual Design</title>
      <description>A consistency in Visual Design signals to users that they are in the right place and that they are moving in the right direction. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2ftutorialfeed.blogspot.com%2f2009%2f04%2f9-golden-rules-of-visual-design.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2ftutorialfeed.blogspot.com%2f2009%2f04%2f9-golden-rules-of-visual-design.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/tipsandtricks/9_Golden_Rules_of_Visual_Design</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/tipsandtricks/9_Golden_Rules_of_Visual_Design</guid>
      <pubDate>Thu, 09 Apr 2009 22:46:19 GMT</pubDate>
    </item>
    <item>
      <title>Why I develop with the Microsoft .NET Framework</title>
      <description>Some people are still apprehensive about developing Windows applications in .NET because it requires users to also have the .NET Framework on their computer. It's certainly a valid concern. Of course, any programming architecture you choose is going to require certain dependencies. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.bucketsoft.com%2fblog%2f2009%2f03%2fwhy-i-develop-with-microsoft-net.html"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.bucketsoft.com%2fblog%2f2009%2f03%2fwhy-i-develop-with-microsoft-net.html" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/wpf/Why_I_develop_with_the_Microsoft_NET_Framework</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/wpf/Why_I_develop_with_the_Microsoft_NET_Framework</guid>
      <pubDate>Tue, 07 Apr 2009 21:45:29 GMT</pubDate>
    </item>
    <item>
      <title>Creating an Elevated Button Control</title>
      <description>When using Microsoft Windows Vista, administrative tasks are restricted by the user account control (UAC) system. Buttons that require elevated permissions are displayed with the command text and a shield icon to indicate that permission will be required. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fElevatedButton.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fElevatedButton.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/security/Creating_an_Elevated_Button_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/security/Creating_an_Elevated_Button_Control</guid>
      <pubDate>Tue, 07 Apr 2009 03:11:03 GMT</pubDate>
    </item>
    <item>
      <title>Using a Form in Place of a Control</title>
      <description>When you have developed a Windows Forms control, you may find that it would be helpful to have it behave as a control. This would allow you to use the form within another form, potentially including it several times and promoting reuse. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fFormAsControl.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fFormAsControl.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/winforms/Using_a_Form_in_Place_of_a_Control</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/winforms/Using_a_Form_in_Place_of_a_Control</guid>
      <pubDate>Sun, 05 Apr 2009 02:46:48 GMT</pubDate>
    </item>
    <item>
      <title>Check if a Program is Running as an Administrator</title>
      <description>User Account Control (UAC) protects Vista by preventing programs from performing administrative or system functions without prior permission. Before attempting such a function, you should check whether your software is running with elevated privileges. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCheckAdmin.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fCheckAdmin.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/security/Check_if_a_Program_is_Running_as_an_Administrator</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/security/Check_if_a_Program_is_Running_as_an_Administrator</guid>
      <pubDate>Sat, 28 Mar 2009 19:09:35 GMT</pubDate>
    </item>
    <item>
      <title>Creating SOLID Code: Dependency Inversion Principle</title>
      <description> Taking a look at how to create SOLID Code: Creating SOLID Code: Dependency Inversion Principle (DIP). This is a last episode in a series where we will take a look at each of the parts the SOLID Princi &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f96"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f96" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Creating_SOLID_Code_Dependency_Inversion_Principle</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Creating_SOLID_Code_Dependency_Inversion_Principle</guid>
      <pubDate>Fri, 27 Mar 2009 01:01:04 GMT</pubDate>
    </item>
    <item>
      <title>Launching Processes From .NET Applications</title>
      <description>Some applications require the ability to launch other programs, either to open new windows or to reopen an application with alternative privileges. The .NET framework provides methods that permit you to start .NET and other processes easily. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fLaunchProcess.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fLaunchProcess.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Launching_Processes_From_NET_Applications</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Launching_Processes_From_NET_Applications</guid>
      <pubDate>Wed, 25 Mar 2009 05:54:37 GMT</pubDate>
    </item>
    <item>
      <title>SQL Server Stored Procedures</title>
      <description>The twenty-third part of the SQL Server Programming Fundamentals tutorial describes stored procedures. A stored procedure allows you to create a script, or batch, containing multiple commands to be executed, potentially being controlled by parameters. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSQLStoredProcedures.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fSQLStoredProcedures.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/database/SQL_Server_Stored_Procedures</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/database/SQL_Server_Stored_Procedures</guid>
      <pubDate>Sun, 15 Mar 2009 21:09:11 GMT</pubDate>
    </item>
    <item>
      <title>Creating SOLID Code: Liskov Substitution Principle</title>
      <description>Taking a look at how to create SOLID Code: Creating SOLID Code: Liskov Substitution Principle (LSP). This is a Third in a series where we will take a look at each of the parts the SOLID Principle &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f92"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.dimecasts.net%2fCasts%2fCastDetails%2f92" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/architecture/Creating_SOLID_Code_Liskov_Substitution_Principle</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/architecture/Creating_SOLID_Code_Liskov_Substitution_Principle</guid>
      <pubDate>Fri, 13 Mar 2009 22:46:25 GMT</pubDate>
    </item>
    <item>
      <title>Using the DebuggerDisplay Attribute (C#)</title>
      <description>When debugging, the contents of strings and numeric types can be viewed in the locals and watches windows. When a custom object is displayed, the name of the class or the result of ToString() is shown. This can be changed with a DebuggerDisplay attribute. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fwww.blackwasp.co.uk%2fDebuggerDisplay.aspx"&gt;&lt;img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fwww.blackwasp.co.uk%2fDebuggerDisplay.aspx" border="0" alt="kick it on DotNetKicks.com" /&gt;&lt;/a&gt;
</description>
      <link>http://www.dotnetkicks.com/csharp/Using_the_DebuggerDisplay_Attribute_C</link>
      <guid isPermaLink="true">http://www.dotnetkicks.com/csharp/Using_the_DebuggerDisplay_Attribute_C</guid>
      <pubDate>Wed, 11 Mar 2009 06:22:25 GMT</pubDate>
    </item>
  </channel>
</rss>