Archive for April, 2005

Saturday, November 29, 2008 10:16

Detecting Design-time in C#( Native DesignMode property not telling the full truth )

The DesignMode property for a UserControl object will show that it is in DesignMode only if the immediate parent is viewed in the IDE; if it is a grand child of the object that is being viewed in the IDE, then the DesignMode property will not be true.
The workaround:

///
/// Indicates if the current view is [...]

Saturday, November 29, 2008 10:16

End to End Enterprise Library Demonstration (Source and Powerpoint presentation)

You can Download the source and presentation and follow the readme.txt to get set up.  The source has examples of consuming all of the application blocks.  It also includes an example of how to integrate ASP.NET’s Forms Authentication and Enterprise Library  Authentication/Authorization block.
[ Via Doug Rohrer's Blog ]

Bookmark It

Hide Sites

$$(‘div.d669′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

N-Tier Application Development with .NET

A few articles on n-teir architecture in .Net
Part 1:What is N-Tier Architecture? Part 2:How to implement the Business Layer Part 3:How to implement the Data Layer
LLBLGen::About n-tier development N-Tier Applications and .NET
Part 1:Architecture prototype revised and tested – level 400 Part [...]

Saturday, November 29, 2008 10:16

How to programmatically scroll a DataGrid to a given row?

using System.Windows.Forms;
 
namespace Devintelligence
{
/// <summary>
/// ScrolledDataGrid.
/// </summary>
public class ScrolledDataGrid : DataGrid
{
public ScrolledDataGrid()
{
}
 
 
/// <summary>
/// scroll the grid to a particular row
/// </summary>
[...]

Saturday, November 29, 2008 10:16

Why the extension for ASP.NET is .aspx

Many of us wonder why the extension for ASP.NET is .aspx. Well, long time ago, when ASP.NET was being developed at Microsoft it was referred to as ASP+ (ASP Plus). You can’t use a "+" symbol in a filename but if you turn the + symbol about 45 degrees, it looks like a x. Microsoft [...]

Saturday, November 29, 2008 10:16

Spell Checker for VS.NET 2003 Add-in (v. 2.0)

This freeware Visual Studio 2003 add-in provides a multi-language spell checker for your comments and string literals. Without setting any options it knows how to spell check C#, VB.NET, C++.NET,  J#, C/C++,  HTML, XML, Java, and other text-based files. It works on the selected code or on the entire current file or project, and has [...]

Saturday, November 29, 2008 10:16

Links for Creating Visual Studio.NET Add-ins

Jason Row post some useful links and information regarding creating Visual Studio.NET Add-ins.

Bookmark It

Hide Sites

$$(‘div.d664′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

edtFTPnet

edtFTPnet is the first choice of .NET developers worldwide for incorporating FTP functionality into their applications.

Widely used throughout the world in many projects.
Full source code is provided.
Passive and active modes are supported (PASV and PORT).
Resuming of interrupted binary transfers supported.
Events for monitoring progress of data transfers.
Under the [...]

Saturday, November 29, 2008 10:16

Implementing the singleton pattern

There are various different ways of implementing the singleton pattern in C#.
The implementation that listed below  is thread-safe, simple, and perform well.

public sealed class Singleton
{
Singleton()
{
}
 
public static Singleton Instance
{
[...]

Saturday, November 29, 2008 10:16

Coding4Fun

If you are interested in some "non-business" development such as games and stuff, you should check out http://msdn.microsoft.com/coding4fun/
"Coding4Fun is all about giving something back to the hobbyist developer community…"  Brian Keller, product manager for Visual Studio

Bookmark It

Hide Sites

$$(‘div.d661′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });