﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>GetDotNetCode's .NET How To</title><link>http://www.getdotnetcode.com</link><pubDate>Sat, 07 Nov 2009 05:48:19 GMT</pubDate><description>How To Resources for .NET</description><copyright>(c) 2009aZ Software Developers LLP.</copyright><ttl>5</ttl><item><title>Document Visual Basic Code with XML Comments</title><description>Lisa Feigenbaum of Microsoft explores ways in which XML comments can be used to customize your coding environment and to create documentation files from the comments in your code. She also shows you some future Visual Studio features that will create an even better experience for working with XML comments in your code.</description><link>http://www.getdotnetcode.com/nexDotNet/030022/030022.htm</link><pubDate>Tue, 05 May 2009 00:00:00 GMT</pubDate></item><item><title>Video How to Use the ASP.NET ListView</title><description>The ListView control is used to display the values from a data source. It resembles the GridView control, except that it displays data by using user-defined templates instead of row fields. Creating your own templates gives you more flexibility in controlling how the data is displayed. </description><link>http://www.getdotnetcode.com/nexDotNet/030021/030021.htm</link><pubDate>Tue, 21 Apr 2009 00:00:00 GMT</pubDate></item><item><title>Visual Basic 2008 Pop Quiz - How can I add a Function to the String type?</title><description>Extension methods are new in Visual Basic 2008.  This short blog series will explores how extension methods can be used to add Subs and Functions to the .NET String type.</description><link>http://www.getdotnetcode.com/nexDotNet/030019blog_vb2008_string_extention_methods/blog_vb2008_string_extention_methods.htm</link><pubDate>Wed, 26 Nov 2008 00:00:00 GMT</pubDate></item><item><title>Software Construction VS. Software Remodeling</title><description>This blog series discusses how agile software development applies in software construction and software remodeling. Agile software construction and agile remodeling are similar in some ways but quite different in others. This series will explain how agile planning, design, development techiques, testing and more should vary depening on whether you are constructing or remodeling a software.
</description><link>http://www.getdotnetcode.com/nexDotNet/030018blog_software_construction_remodeling/blog_software_construction_remodeling.htm</link><pubDate>Thu, 20 Nov 2008 00:00:00 GMT</pubDate></item><item><title>How to Create Microsoft Access DataSource for Win Forms App Visual Basic 2005</title><description>Visual Studio 2005 provides a feature, the 'Data Source Configuration Wizard', for creating a DataSource for a Windows Forms 2.0 application. This article provides step-by-step instructions and a sample Visual Basic 2005 application you can use to learn how make a Microsoft Access database the data source for a Windows Forms application.</description><link>http://www.getdotnetcode.com/nexDotNet/030017AutobindDBToWinFormsApp_VB2005/AutobindDBToWinFormsApp_VB2005.htm</link><pubDate>Sat, 26 May 2007 00:00:00 GMT</pubDate></item><item><title>How To Group ListView Items with ListViewGroup VB2005</title><description>This article with source code demonstrates how to group ListView Items with the ListViewGroup class and Visual Basic 2005. In the article example, customers are loaded from a database and three groups are created - customer name, region, and country.</description><link>http://www.getdotnetcode.com/nexDotNet/030016ListView_ListViewGroup_VB2005/ListView_ListViewGroup_VB2005.htm</link><pubDate>Tue, 06 Feb 2007 00:00:00 GMT</pubDate></item><item><title>How To Use Lazy Initialization VB.NET and Visual Basic 2005 Pt2</title><description>This is part two of a two part article and source code which explains the lazy initialization pattern and how to implement it in an order entry scenario with VB.NET and Visual Basic 2005. In object-oriented programming (OOP), lazy initialization is the strategy of improving application performance by delaying the creation of an object, the calculation of a value, or some other process until the first time the object is needed.  
</description><link>http://www.getdotnetcode.com/nexDotNet/030015Lazy_Initialization_VB2005_Pt2/Lazy_Initialization_VB2005_Pt2.htm</link><pubDate>Sat, 27 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To DataGridView DataBoundItem VB2005</title><description>This article and source code demonstrate how to bind objects stored in a generic List (Of T) to a DataGridView and how to retrieve an individual object when a row header of the DataGridView is double-clicked. The DataGridView Row's DataBoundItem property is used to retrieve the object that is bound to row.
</description><link>http://www.getdotnetcode.com/nexDotNet/030014DataGridView_Row_DataBoundItem_VB2005/DataGridView_Row_DataBoundItem_VB2005.htm</link><pubDate>Thu, 25 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Improve Performance with TryCast Keyword VB2005</title><description>The TryCast keyword, introduced in Visual Basic 2005, provides Visual Basic programmers with a new way to cast reference types. This article and source code demonstrate how to use the TryCast keyword to improve the performance of Visual Basic 2005 programs.</description><link>http://www.getdotnetcode.com/nexDotNet/030013How_To_TryCast_VB2005/How_To_TryCast_VB2005.htm</link><pubDate>Wed, 24 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Compare Two Files using HMACSHA1 with VB.NET or VB2005</title><description>This article and source code demonstrate how to use Visual Basic 2005 to compare two files to determine if they are equal. The Microsoft.NET HMACSHA1 class is used to compare the contents of two files. This comparison looks at file paths, file lengths, and file contents. NOTE: While a complete Visual Studio solution for VB.NET is not provided, the comparrison code included in this article will work with VB.NET too. Be sure to Import System.IO.</description><link>http://www.getdotnetcode.com/nexDotNet/030012Compare_Two_Files_HMACSHA1_VB_2005/Compare_Two_Files_HMACSHA1_VB_2005.htm</link><pubDate>Tue, 23 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Deploy - Associate File Extension and Icon with VB2005 EXE</title><description>This article with source code explains how to associate a file extention with an executable in a VB2005 deployment package. </description><link>http://www.getdotnetcode.com/nexDotNet/030011How_To_Associate_File_Extension_VB2005/How_To_Associate_File_Extension_VB2005.htm</link><pubDate>Sun, 21 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Compare Two Files with VB.NET and VB2005</title><description>This article and source code demonstrate how to use Visual Basic 2005 to compare two files to determine if they are equal. This comparison looks at file paths, file lengths, and file contents. NOTE: While source code for VB.NET is not provided, the CompareFiles function included in this article will work with VB.NET too. Be sure to Import System.IO.
</description><link>http://www.getdotnetcode.com/nexDotNet/030010Compare_Two_Files_VB_2005/Compare_Two_Files_VB_2005.htm</link><pubDate>Sun, 21 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Use Lazy Initialization with VB.NET and Visual Basic 2005</title><description>This is part one of a two part article and source code which explains the lazy initialization pattern and how to implement it in an order entry scenario with VB.NET and Visual Basic 2005. In object-oriented programming (OOP), lazy initialization is the strategy of improving application performance by delaying the creation of an object, the calculation of a value, or some other process until the first time the object is needed.  
</description><link>http://www.getdotnetcode.com/nexDotNet/030009LazyInitializationVB2005Pt1/LazyInitializationVB2005Pt1.htm</link><pubDate>Thu, 18 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Get and Set File Info with FileSystem Attributes VB2005</title><description>Learn how to use the FileInfo class' Attributes property to get  and setinformation about a file. The Attributes property of the System.IO.FileInfo class is used to get or set file attributes.  Some commonly used file attributes are Archive, Compressed, Directory, Encrypted, Hidden, Normal, ReadOnly, System, and Temporary.</description><link>http://www.getdotnetcode.com/nexDotNet/030008HowToFileAttributesVB2005/HowToFileAttributesVB2005.htm</link><pubDate>Thu, 11 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Browse Folders with FolderBrowserDialog and Visual Basic 2005</title><description>This article and source code demonstrate  how to use the .NET Windows Forms FolderBrowserDialog class and Visual Basic 2005 to provide a way to prompt the user to browse, create, and eventually select a folder. Use this class when you only want to allow the user to select folders, not files.</description><link>http://www.getdotnetcode.com/nexDotNet/030007HowToFolderBrowserVB2005/HowToFolderBrowserVB2005.htm</link><pubDate>Tue, 09 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Create an FTP Library with VB 2005</title><description>Visual Studio 2005 and the .NET framework 2.0 make it possible to build an FTP client library. This article and source code from Howard Richards demonstrate how to build such a library.  It's not a full-featured and comprehensive client but it provides all the most frequently used functions and can act as a base to building a more robust FTP client.</description><link>http://www.getdotnetcode.com/nexDotNet/030006HowToBuildFTPClient/HowToBuildFTPClient.htm</link><pubDate>Mon, 08 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How to Add a Gradient Background to a Win Form with VB.NET &amp; VB2005</title><description>This article and Visual Studio Visual Basic solutions provide code that overrides the form OnPaint event to create beautiful gradient backgrounds for a Windows Form.  Also included is code that optimizes form drawing.



</description><link>http://www.getdotnetcode.com/nexDotNet/030005H2GradientBg4WinFormVB/H2GradientBg4WinFormVB.htm</link><pubDate>Fri, 05 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To More Efficiently Build Strings with the .NET StringBuilder</title><description>This article and code explains how to build strings with the Microsoft.NET StringBuilder class and Visual Basic 2005. The StringBuilder class provides a more efficient way to build strings when you must concatenate more than a dozen strings.</description><link>http://www.getdotnetcode.com/nexDotNet/030004MoreEfficientStringsWithStringBuilder/MoreEfficientStringsWithStringBuilder.htm</link><pubDate>Wed, 03 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To List SQL Server Instances on the Network</title><description>Bill Vaughn shares a block of code that can be used to enumerate the providers on a system and the services that the provider can see on the network. In other words, it lists the SQL Server instances on the network and puts the list in a DataGridView.
</description><link>http://www.getdotnetcode.com/nexDotNet/030003ListSQLServerInstances/ListSQLServerInstances.htm</link><pubDate>Mon, 01 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Deploy a SQL Database to a Remote Hosting Environment</title><description>In this multipart blog Scott Guthrie explains how to use the the release candidate of the new SQL Server Hosting toolkit to deploy SQL solutions remotely to a hosted environment.</description><link>http://www.getdotnetcode.com/nexDotNet/030002DeploySqlDBHostToolkit/DeploySqlDBHostToolkit.htm</link><pubDate>Mon, 01 Jan 2007 00:00:00 GMT</pubDate></item><item><title>How To Catch Exceptions in Visual Basic 2005 or in Visual Basic .NET</title><description>Catching and dealing with exceptions is a standard programming task. This MSDN article demonstrates how to use a try-catch-finally block to catch an exception.</description><link>http://www.getdotnetcode.com/nexDotNet/030001HowToCatchExceptions/HowToCatchExceptions.htm</link><pubDate>Sun, 31 Dec 2006 00:00:00 GMT</pubDate></item><item><title>How To Print Landscape Orientation in VB 2005</title><description>In this article  Gead Mead, a vbCity leader and Microsoft MVP, provides an explanation and source code that shows how to use  Visual Basic 2005 to print a landscape oriented document.</description><link>http://www.getdotnetcode.com/nexDotNet/030000PrintLandscapeVB2005/PrintLandscapeVB2005.htm</link><pubDate>Sun, 31 Dec 2006 00:00:00 GMT</pubDate></item></channel></rss>