Just .Net (RSS)

Emergent Design: The Evolutionary Nature of Professional Software Development

The other day I listened to a very informative webinar with Scott Bain. He talked about lean programming and designing as you go through the dev cycles.

To view the iPod Video go here.

with 0 Comments

Code Formatting Utility for Blog

This code formatting utility facilitates for formatting code for 1) C# 2) VB 3) html/xml/aspx 4) t-sql 5) msh Convert Code to Html format for Blog posting
with 0 Comments

Automating the code writing process using macros

When writing code and documentation for source files, there is lots of manual work. Often you follow a specific code standard and some code you write quite often with small changes. Dan Handevik has developed a set of Macros for easing your daily work.


See the full article.

with 0 Comments

Scott Hanselman's 2005 Ultimate Developer and Power Users Tool List

This is a great list of tools.

with 0 Comments

Some Cool Tips for .NET

These are some tips for commonly faced problems in .NET
with 0 Comments

ClickOnce: Bringing Ease and Reliability to Smart Client Deployment

Who said client deployment has to be difficult? The ClickOnce technologies baked into Visual Studio 2005 and .NET Framework 2.0 make distributing your application either online or offline much easier. More...
with 0 Comments

Essential Tools for .Net and Visual Studio

Visual Studio Add-Ins Every Developer Should Download Now

Ten Must-Have Tools Every Developer Should Download Now

with 0 Comments

Regulator - free regular expressions testing and learning tool

The Regulator is an advanced, free regular expressions testing and learning tool written by Roy Osherove.
It allows you to build and verify a regular expression against any text input, file or web, and displays matching, splitting or replacement results within an easy to understand, hierarchical tree.
with 0 Comments

ASP.NET Beginner's Guide To Creating UI, Business, and Data Layers in Applications

Good article on .net project architecture
with 0 Comments

Service Controller

How to programmatically control an NT Service. 
with 0 Comments

ADO Connection Strings

I just ran across this great list of ODBC DSN Connection Strings.
with 0 Comments

Your free search engine – Microsoft Indexing Server

Many web applications provide a search capability, which allows users to search all the content of a web application. This seems at first glance to be a difficult task. How can you search all the files in your web application and at the same provide robust search capabilities most users have come to take for granted? For example search for any combination of words with AND or OR combination, search for phrases or search for partial word matches. Building such a search engine is not a small task. There are many custom solutions out there which create their own search algorithms. They are either cheap but provide only limited search capabilities or they are expensive.

But there is no need to build your own solution or to buy an expensive one. Microsoft provides a solution to this problem - Microsoft Indexing Server. More

with 0 Comments

Regular Expressions Cheat Sheet

Simple and complete cheat sheet that shows a majority of the regular expressions with an example of each. Go there.

with 0 Comments

Encrypting QueryStrings with .NET

Once upon a time in the tech world, obscurity was security - this being most true in the early years of the industry, when there were gaping holes in privacy policies and confidential client information was bandied about from site to site without a care as to who actually could read the information. With the new Cryptography classes in .NET, there's absolutely no excuse for not hiding even the most innocuous user data. More
with 0 Comments

Tracing in .NET and Implementing Your Own Trace Listeners

An article to show how Debugging and Tracing has been implemented in .NET and how to customize them according to our needs
with 0 Comments

Capture a Screen Shot

This article demonstrates how to get a screen shot of the entire desktop, or a particular window, using .NET (and a few API functions).
with 0 Comments

Resize Images To Thumbnails in .NET

More
with 0 Comments

Creating Debugger Visualizers with Visual Studio 2005

With debugger visualizers, you can define the information you would like to see about a specific .NET or custom class during debug mode. And as the name suggests, you can also choose how you would like to visualize these details. More
with 0 Comments

VS.NET Change Case AddIn

This article describes step by step creation of an AddIn for VS.NET
with 0 Comments

.NET Encryption Simplified

A simple, string-oriented class for symmetric encryption, asymmetric encryption, and hashing.
with 0 Comments