Companies can have thousands of applications installed across distributed networks. To ensure that these applications are compatible with a new version of operating system, it is essential that companies test these applications against the new operating system deployment (such as deploying Windows Vista or Windows 7).
How to use Namespace Alias Qualifier – (global)
As you know a code file can declare multiple namespaces – stand-alone ones or nested ones. The types under the namespaces with the same name are treated as one single logical group. Types that are not declared in any namespace are considered to be in the “global†namespace, which is the outer-most, default one.
How to get details of a file extension including icon
How to retrieve the descriptive name of a file extension and icon. If you have some sort of file ‘browse’ Window that you want to show the file name, and the ‘File Type’ field where it says something like ‘File Folder’, ‘WinZip File’ or ‘FLG File’ – here is some simple code that does that for you.
How to create a reusable method to check null or an empty string
We always need some utility methods handy to speed up our development activity. The method in this article shows how to check if a string is null or empty.
Windows Presentation Foundation (WPF) Part 3
This article covers about how to deploy a WPF application when its ready to release.
Windows Presentation Foundation (WPF) Part 2
This article provides an overview of some of the most significant features that WPF provides. It also presents an overview of the document technologies available in WPF. This also covers how WPF and XAML increase collaboration between professional designers and application developers.
Windows Presentation Foundation (WPF) Part 1
This article explains the need for a new platform to exploit the graphics power of today’s computer systems. This provides background information on the evolution of WPF and covers why user experience is an important consideration in application design. WPF is an integrated client platform and next generation of development tools for building Windows client applications.
About .NET Framework Versions
There has been a lot of confusion around .NET Framework version numbers and it’s implications to applications as well as the development environment. This article will attempt to explain and clear any outstanding confusions.
SSIS: How to include RowDelimiter with Destination Flat Files
While exporting data from a query in SQL Server 2005 SSIS to a text file destination. The output rows returned from the query are not being separated into individual rows in the text file. SSIS concatenates them all into one huge row.
How to write a simple SQL Server Data Access Layer – Part-2
This article gives walk through on how to use my Data Access Layer with your application for with insert stored procedures accepting multiple parameters.