Welcome | Site Map | Overview | Business Software Development | Database Development | Web Application Development | Microsoft Office Solutions | Portfolio | Development approach | Overview | Features & Benefits | View Screenshots | Watch a Demo | Product tour | Pricing | Free Trial Download | tour-options | tour-gen | tour-proj | tour-select | tour-solution | tour-templates | | Product list | Code Generator | Regular Expression Designer | Contact |

.NET Development Articles and Samples

The Code Zone is where you will find Articles and example code relating to programming and software development. It acts as a knowledge base providing tips on how to get started in a certain area or improve your knowledge if you are already up and running.

Latest articles

C# Regular Expression (Regex) Examples in .NET

This article continues from Learn Regular Expression (Regex) syntax with C# and .NET and covers character escapes, match grouping, some C# code examples, matching boundaries and RegexOptions.

How to get Intellisense for Web.config and App.config in Visual Studio .NET

Web.config and App.config have can have many different configuration options but it is difficult to remember what some of the less commonly used options are. This article provides a schema definition for .NET configuration files such as Web.config and App.config that makes Visual Studio .NET help you out by displaying intellisense when working in these files.

Learn Regular Expression (Regex) Syntax for .NET

Regular Expressions are a powerful pattern matching language that are part of many modern programming languages. Learning the syntax for Regular Expressions allows you to use the pattern matching features found in many programming languages, software development packages and text editors. This article introduces you to the basics of the Regular Expression syntax.

How to get Intellisense when editing XSL documents in Visual Studio .NET

Would you Like to have intellisense when you are working with XSL documents in Visual Studio .NET? This article talks about how is done and provides a downloadable file for Visual Studio .NET.

Designing a Data Access Layer using the .NET Framework

Discusses some considerations when designing a Data Access Layer in C#.

Create a Windows Clipboard monitoring application in C#

Applications such as GetRight and ClipMate seem to magically know when something is copied to the Clipboard. How is it done? This example shows you how to use the Win32 API function SetClipboardViewer() to create a Clipboard viewer application. A sample written in C# is included.

Using the .NET CommandBuilder

Learn how to use the CommandBuilder class to write cleaner and more readable Database Access code by using the CommandBuilder to automatically build SQL INSERT, UPDATE, and DELETE statements for a DataAdapter.