|
|
|
.NET Namespaces (1944) .NET Framework Namespaces | Applications (1134) Management, Email, Graphics, Search.. | Articles & Samples (77527) Assembly, Caching, Controls, Reflection.. | Community (95) Conferences, Chat Rooms, Jobs, Training.. | Component & Controls (1473) Forums, Management, Email, more.. | Developers Sites (151) Sites dedicated to developer community.. | Developers Training (502) Training CD-ROMs, Videos, Courseware.. | Downloads (458) Service Packs, Code, Msdn Show.. | Hosting Services (137) ASP and ASP.Net Hosting sites.. | Introduction (703) ASP, ADO.Net, C#, VB.NET, XML | Knowledge Base (2394) Knowledge Base Articles, Samples, Tutorials, HowTos... | Sample Chapters (245) Sample Chapters from Developer Books.. | Silverlight (1973) Silverlight | Support WebCasts (2181) Microsoft's Support WebCasts |
|
|
|
|
Total Hits: 128 | Today: 0
|
Author: Marc Clifton
|
Rating:
|
|

On occasions, one needs to take time samples of an operation but only as a diagnostic during development and/or testing in a debug build. And, while there is an excellent Stopwatch class in .NET 2.0, this class is inappropriate for non-diagnostic time sampling because it:
is not a static class, and therefore does not support conditional debug builds....
|
|
|
|
Total Hits: 109 | Today: 0
|
Author: Nishant Sivakumar
|
Rating:
|
|

This bug was first reported by Jochen Kalmbach on April 12th 2002 (no links available to original posting), when VS.NET 7.0 was doing its initial rounds; and it's quite inconceivable why the bug still exists in VS.NET 2003. Just about every week, at least two people report issues related to this bug and I thought it might be a good idea to have an article on it here on CodeProject. What's really annoying is that the developer might spend several hours or even a full day on the problem before rea...
|
|
|
|
Total Hits: 103 | Today: 0
|
Author: Don Kackman
|
Rating:
|
|

Version 1.1 of the .NET framework introduced the method System.Windows.Forms.Application.EnableVisualStyles. Calling this method prior to the creation of any Forms or Controls, will cause Windows XP to apply a theme when rendering Windows Common Controls and many of the native .NET controls like Buttons and CheckBoxes....
|
|
|
|
Total Hits: 93 | Today: 0
|
Author: Marc Clifton
|
Rating:
|
|

A workaround for a bug I discovered with the async reader in the Process class....
|
|
|
|
Total Hits: 109 | Today: 0
|
Author: Brian Duke
|
Rating:
|
|

The main focus of this article is to load the contents of a DBF file into a DataTable. Sure, you can search the Internet and find a thousand examples of how to load a DBF in .NET. However, try to find one that does not use the MS Jet driver or perhaps the MS FoxPro driver. I tried myself and couldn't find one, so I decided to write a class to do it....
|
|
|
|
Total Hits: 95 | Today: 0
|
Author: Abhishek Sur
|
Rating:
|
|

Have you ever come across a situation where your website which was working for the last couple of months gives a weird error "Unable to Validate Data". Yesterday, while working I found that my website which is already published in IIS throws this error. Initially I thought the error might be with my code, but I found that everything is good with the code. So I looked forward to internet and found that this error comes when the viewstate of a page cannot be decrypted when the response is received...
|
|
|
|
Total Hits: 127 | Today: 0
|
Author: Gianluca Negrelli
|
Rating:
|
|

The UpdatePanel represents Microsoft's main interpretation of AJAX techniques. The UpdatePanel's indubitable merit is that it brings the magic of AJAX in every day's programming work for any ASP.NET programmer. But now, three years after it was born, the UpdatePanel shows all its limits even to me, a trusty and loyal Microsoft programmer....
|
|
|
|
Total Hits: 120 | Today: 0
|
Author: Dhananjay Kumar
|
Rating:
|
|

What is and how to fix error: "SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used"...
|
|
|
|
Total Hits: 169 | Today: 0
|
Author: Dinkar Chavhan
|
Rating:
|
|

Generics allow a type or method to operate on objects of various types while providing compile time type safety; that means if you add in generics class different type variable. Eg., string and int in a same list then it will throw a compile time error. Generics are available in the System.Collections.Generic Namespace....
|
|
|
|
Total Hits: 172 | Today: 0
|
Author: DevLake
|
Rating:
|
|

You can see this and other great articles on Design Patterns here.
The Builder Design Pattern allows you to create a general guideline on how to create an object, then have different implementations on how to build parts of the object....
|
|
|
|
Total Hits: 167 | Today: 0
|
Author: DevLake
|
Rating:
|
|

The abstract factory design pattern is merely an extension of the factory method pattern, which allows you to create objects without being concerned about the actual class of the objects being produced. The abstract factory pattern extends the factory method pattern by allowing more types of objects to be produced....
|
|
|
|
Total Hits: 172 | Today: 0
|
Author: DevLake
|
Rating:
|
|

You can see this and other great articles on design patterns here.
The prototype design pattern allows you to avoid expensive initialization routines when you construct objects that are very similar. The goal is to minimize the amount of work needed in creating new objects when the initialization routines are expensive. For example, if the initialization routine requires database queries, file lookups, or service calls and you already have other objects in the system that are very similar...
|
|
|
|
|
|