<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href="/Data/Templates/DevCity.NET (Stretched)/RssDisplay.xslt" type="text/xsl"?>
<rss version="2.0">
  <channel>
    <title>DevCity.NET - Articles</title>
    <link>http://www.devcity.net</link>
    <description />
    <language>en-gb</language>
    <copyright>DevCity.NET</copyright>
    <generator>Developer Fusion RSS Feed Generator v1.0</generator>
    <webMaster>sergeb@vbcity.com</webMaster>
    <lastBuildDate>Fri, 10 Oct 2008 14:23:23 GMT</lastBuildDate>
    <ttl>20</ttl>
    <item>
      <title>Extension Methods</title>
      <link>http://www.devcity.net/Articles/360/1/.aspx</link>
      <description>&lt;p class="MsoNormal" style="MARGIN: 0in 0in 10pt"&gt;&lt;font face="Calibri"&gt;Extension methods are available starting with C# 3.0 and Visual Basic 9.0, which were released in 2007 with version 3.5 of the .NET platform. &lt;/font&gt;&lt;/p&gt;</description>
      <author>Roger McCook</author>
      <pubDate>Mon, 22 Sep 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>Windows Presentation Foundation: Flow Documents (Part 2)</title>
      <link>http://www.devcity.net/Articles/356/1/.aspx</link>
      <description>&lt;p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp; In Part 1, you saw how easy it is to populate a WPF RichTextBox with a XAML FlowDocument.&amp;nbsp; If you've ever previously struggled with trying to force a RichTextBox to accept an image -&amp;nbsp;and place it exactly where you want it - in Windows Forms, then you'll welcome this new tool.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;However, for legacy reasons you might want to populate the RichTextBox with content that has been saved in RTF format.&amp;nbsp; In this part we will look at how that can be achieved.&lt;/font&gt;&lt;/p&gt;</description>
      <author>Ged Mead</author>
      <pubDate>Mon, 15 Sep 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>Local Type Inference</title>
      <link>http://www.devcity.net/Articles/359/1/.aspx</link>
      <description>&lt;p class="MsoNormal" style="MARGIN: 0in 0in 10pt"&gt;&lt;font face="Calibri"&gt;&lt;i style="mso-bidi-font-style: normal"&gt;Type inference&lt;/i&gt; refers to the ability of a programming language to automatically deduce a variable’s type.&amp;nbsp;The feature was added to C# and Visual Basic to support anonymous types and the relaxed programming style required by Linq.&lt;span style="mso-spacerun: yes"&gt;&amp;nbsp; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description>
      <author>Roger McCook</author>
      <pubDate>Tue, 09 Sep 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>Auto-implemented Class Properties</title>
      <link>http://www.devcity.net/Articles/358/1/.aspx</link>
      <description>Auto-implemented properties is not a difficult subject, only a simple concept that can make your programs easier to code and read.</description>
      <author>Roger McCook</author>
      <pubDate>Sat, 06 Sep 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>WinForms and WPF Interop - The Best of Both Worlds</title>
      <link>http://www.devcity.net/Articles/353/1/.aspx</link>
      <description>&lt;p&gt;&lt;font face="Verdana"&gt;&amp;nbsp; Whenever I see a question along the lines of "How can I include an image alongside each item in a list of items or use more than one font, or varying background colors?" I&amp;nbsp;usually find myself muttering "WPF!".&amp;nbsp;&amp;nbsp;&amp;nbsp; This is a lot more sociable and positive than many of the&amp;nbsp;things I mutter as I sit here each day, but finally I've realised that I need to do something about it.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana"&gt;&amp;nbsp; The result is this article, which works through the steps needed to harness the rich UI features of WPF to the more familiar paradigm of Windows Forms.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana"&gt;&amp;nbsp;&amp;nbsp; The example used&amp;nbsp;will show you how easy it can be to use a WPF control in a Windows Forms application and you can use this article as the stepping stone to creating your own.&amp;nbsp; The ListBox layout shown below will be created in WPF and ported over to be used in a Windows Forms application.&lt;/font&gt;&lt;font face="Verdana"&gt;&amp;nbsp;&amp;nbsp; &lt;/font&gt;&lt;/p&gt;&lt;img alt="WPF ListBox Control Example" src="http://www.xtabvbcity.plus.com/Articles/WPFInWinForms/FinishedFormSmall.jpg" border="0"/&gt;</description>
      <author>Ged Mead</author>
      <pubDate>Sat, 12 Jul 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>Web Application Security: Don't Bolt It On; Build It In</title>
      <link>http://www.devcity.net/Articles/354/1/.aspx</link>
      <description>In light of breaches in Web application security worldwide, the importance of catching potential areas for intrusion is necessary at the beginning. Performing application vulnerability testing during production (and not after a breach has been detected) can save a company thousands of dollars. The only way to ensure the highest level of security is to build it in from the outset.</description>
      <author>Caleb Sima</author>
      <pubDate>Thu, 12 Jun 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>Multithreading The Easy Way: The BackgroundWorker</title>
      <link>http://www.devcity.net/Articles/352/1/.aspx</link>
      <description>&lt;p&gt;&lt;font face="Verdana"&gt;  Sometimes you may need  your application to work on a slow or time- consuming task in such a way that your user isn't kept waiting unnecessarily while this is happening.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana"&gt;   The answer to this problem is to use multithreading.   &lt;/font&gt;&lt;font face="Verdana"&gt;Having seen many forum questions about multithreading, I know that many people are a bit apprehensive about tackling it.  However,  a&lt;/font&gt;&lt;font face="Verdana"&gt;s it turns out, the BackgroundWorker component is versatile  and easy to use, providing a painless solution to this requirement. &lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font face="Verdana"&gt;   In this article I will show you how you can  incorporate the BackgroundWorker into your projects to give your users a more professional and less frustrating experience.&lt;/font&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
      <author>Ged Mead</author>
      <pubDate>Sun, 01 Jun 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>Windows Presentation Foundation: FlowDocuments (Part 1)</title>
      <link>http://www.devcity.net/Articles/351/1/.aspx</link>
      <description>When WPF first came on the scene, one of the features that got a lot of air time was the display of documents.  Leading edge projects like the NY Times Reader and the British Library manuscript display raised a lot of awareness of the possibilities.  Strangely though, since VS 2008 shipped there doesn't seem to have been a lot of mention of this part of the package.  So I thought I'd take a look at how easy (or not) document handling really is in WPF.</description>
      <author>Ged Mead</author>
      <pubDate>Tue, 01 Apr 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>What You Need to Know about PCI Compliance and Web Application Security Policy Changes</title>
      <link>http://www.devcity.net/Articles/350/1/.aspx</link>
      <description>PCI compliance exists to protect consumers from credit fraud, and their data will be protected if rules are followed. If your business accepts credit cards, you are aware of changes to PCI compliance in June. Adherence to section 6.6 of the PCI compliance rules should have been met; if not, web application security must be integrated into existing applications. This mandate allows businesses to evaluate their security practices.</description>
      <author>Michael Sutton</author>
      <pubDate>Fri, 28 Mar 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
    <item>
      <title>SubMain CodeIt.Right 1.0</title>
      <link>http://www.devcity.net/Articles/348/1/.aspx</link>
      <description>&lt;p&gt;CodeIt.Right is a code analysis tool with a welcome twist - it can &lt;i&gt;automatically fix the code issues it finds.&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;You can use CodeIt.Right in the Microsoft Visual Studio IDE to find AND automatically fix code issues in C# and Visual Basic code. Perform static code analysis with configurable rule sets to find code issues. Automatically fix code issues all at once, in groups, or one-at-a-time.&lt;/p&gt;</description>
      <author>Mike McIntyre</author>
      <pubDate>Mon, 10 Mar 2008 00:00:00 GMT</pubDate>
      <subject />
    </item>
  </channel>
</rss>