IT Technology Blog

IT technology blog, featuring the essence for you to read the article, is to learn IT technology blog first choice

Common & Distributed Logging thru Enterprise Library 5 (EntLib) Logging Application Block and MSMQ Distributor Service

Download Distributed_Logging_DemoAppFiles - 2.06 KB There is an important concern in designing any new application - building a reliable and high performance

Namespace design technique, structuring your libraries using Test Driven Development

By now, I’ve probably interviewed a decent amount of developers, over the years, to fill in positions that we have in our company. One thing I’ve noticed though

AMF: Asp.net Mobile Framework

Download amf_examples - 309.18 KB 1. Introduction ASP.NET Mobile Framework (AMF) is a Web Framework for making web application for most-used tablet and smart

SOLID and DRY Part 2

Interface Segregation Principle If I don't care about it, don't make me implement it! The interface segregation principle simply dictates that you design your

AsyncMethods - An Improvement on Microsoft's ScriptMethods

Download AsyncMethodsDemo.zip - 79.86 KB Introduction I love Microsoft's script services. I use them all the time in my day job. In fact, I love th

200% Reflective Class Diagram Creation Tool

Download source code NOTE : You will need WinRar to read these files Table of Contents Introduction What Does it Look Like How to Use the New AutoD

Parallel Programing, PLINQ and Globalization

I’m going to start with a simple code snippet which sorts an array of strings using LINQ. IEnumerable<string> line = new[] {"Z" , "A" , "Ä"}; var result = l

MVC Test Driven Development: Session Variables

Introduction When you write a controller which is unit testable, it would be better to avoid any dependency to the HttpContext to make the things easier. If yo

Why .NET LinkedList does not support Concat and Split operations?

Download SimpleLinkedList source code Concat O(1) or O(n) ? The .NET LinkedList is a circular doubly linked list, where each node holds a reference to its pr

Multiple face detection and recognition in real time

Download FaceRecPro_Demo - 2.13 MBDownload FaceRecPro_Src - 479.53 KB Introduction The facial recognition has been a problem very worked around th

How can you detect Browser Information in Silverlight?

Sometimes, we need to detect the browser information of the user's computer where our Silverlight application is running. We can do this using JavaScript, but s

“Cancel me if you can” or PLINQ cancelability & responsiveness in WinForms

Download source code Challenge Just had the first chance to apply PLINQ (Parallel LINQ) to the real task.When I am playing around with some new technology e

WPF Timeline Control - Part I

Download demo project - 651 KB Introduction This article will go over a tool that gives you the ability to create and manage multiple timelines with freely

AutoComplete Textbox

Download demo project - 2.68 KB Introduction This is a simple Autocomplete Text box post which may help you. In this code, we are using XMLHTTP request

C# Tweaks – Why to use the sealed keyword on classes?

The sealed keyword is one of the very seldom used modifiers in C#. Probably most of you know what it is for, but many developers have not ever used it. See C#

Windows Phone NTP Client

Download code (53 KB) I've got plans for an application in which I need to know with certainty the current time. So I don't want to trust the time as reporte

Pass a Name Value Pair Collection to JavaScript

In my crusade against in-line code I am endeavoring to clean up the script hell in my current project. My JavaScript is littered with these types of statements:

Data Binding in .NET

I have been toying with data binding in .NET for quite some time now. And ever since I started working and analyzing the binding support in .NET Framework 2.0,

Easy SQL-CE access utility in C#

Download SQLCEtools_DEMO.zip - 70.34 KB Writing and reading data to and from a database can be cumbersome. Different database objects need to be instantiated,

How to use Commands in WPF

Download source code Today, we will talk about WPF Commands. When I develop a new application in WPF, I try to follow the MVVM Pattern (Model-View-ViewModel).