Articles submitted by members via their Technical Blog feed. Want to have the blog entries from
your Technical Blog automatically posted as articles on The Code Project? It's
easy!
|
1.
Separating layers and components with constructor injection and Unity
[^]
Ok, so how did I come to using Unity and constructor injection?Anyway ... what is Unity? And what is constructor injection?Unity is a "dependency injection container", (see http://www.codeplex.com/unity/ for details) in other words it is a library that implements mechanisms to easily apply the depe
(The Code Project Open License (CPOL))
Not defined »
C# »
General
|
Giorgio Bozio
|
Updated: 6 Nov 2009
Rating:
(0 votes for this Article)
|
|
|
2.
Device Independent Units to Points to Inches
[^]
The default unit of measurement in Windows Forms was pixels. This worked well when most monitors on the market used a simple 96 pixel per inch measurement, but measuring by pixel causes problems when working with devices that have different resolutions. For example, with Windows Forms, a 100 pixel b
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Cyborgx37
|
Updated: 5 Nov 2009
Rating:
(0 votes for this Article)
|
|
|
3.
SharePoint: Dynamically change master page
[^]
SharePoint branding is possible with either modification of default master or modification of default CSS. When we develop asp.net application we may need to change master page dynamically based on some criterion. For example in your site you have three groups of users: anonymous, authenticated norm
(The Code Project Open License (CPOL))
Not defined »
SharePoint Server »
General
|
Sohel_Rana
|
Updated: 3 Nov 2009
Rating:
(0 votes for this Article)
|
|
|
4.
SharePoint: Form-Based Authentication with ADAM
[^]
what is ADAM? Active Directory Application Mode is a lightweight version of Active directory. Active directory setup requires much infrastructure, investment and management. ADAM runs as non-operating system service whereas Active Directory(AD) runs as OS service. So whereas only one AD exists per
(The Code Project Open License (CPOL))
Not defined »
SharePoint Server »
General
|
Sohel_Rana
|
Updated: 3 Nov 2009
Rating:
(0 votes for this Article)
|
|
|
5.
A new BDD framework in .Net : NetSpec
[^]
Introduction
During my exploration of BDD frameworks for .NET I only had one final runner-up as a BDD framework : Machine.Specifications . This is a very nice framework, but in my quest for the holy grail on BDD it got me started on thinking about an even better BDD framework. In this article I wil
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Tom Janssens
|
Updated: 3 Nov 2009
Rating: 4.33/5
(2 votes)
|
|
|
6.
Getting started with LINQ
[^]
LINQ is syntactical sugar for extension methods and lamda expressions. To understand LINQ, it is important to first grapple with these concepts.To begin, let's look at a simple and somewhat common scenario. We have an unsorted list of names. We want to go through each letter of the alphabet and prin
(The Code Project Open License (CPOL))
Not defined »
LINQ »
General
|
Cyborgx37
|
Updated: 2 Nov 2009
Rating: 5.00/5
(1 vote)
|
|
|
7.
T4 Template Goodness
[^]
I must admit I kinda missed the boat with T4 templates and what was capable of them, which annoys me, so I set out to try and have a look at them the other day, but low and behold Karl Shifflett has beaten me to it.
(The Code Project Open License (CPOL))
Not defined »
Code Generation »
General
|
Sacha Barber
|
Updated: 2 Nov 2009
Rating:
(0 votes for this Article)
|
|
|
8.
How to Use UIPasteBoard to Implement Custom Copy and Paste In Your App
[^]
Finally, we can share data between our apps using custom copy and paste in the latest version of iPhone OS. Here is how you do it! Copy and Paste in UIKitAs you know many of the controls in UIKit now come pre-loaded with the ability to copy and paste text. You can also [...]
(The Code Project Open License (CPOL))
Not defined »
Custom Controls »
General
|
MobileAppMastery
|
Updated: 2 Nov 2009
Rating: 1.00/5
(1 vote)
|
|
|
9.
How can you implement the Silverlight 3 Out Of Browser feature?
[^]
Here I will explain the feature & step by step process for implementing the Silverlight Out-Of-Browser functionality.
(The Code Project Open License (CPOL))
Not defined »
Silverlight »
HowTo
|
KunalChowdhury
|
Updated: 30 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
10.
New Options for Visual Studio 2010 Beta2 WPF and Silverlight Projects
[^]
To get to this Options dialog, use the Tools menu, selected Options, select Text Editors, select XAML, select Miscellaneous.
MarkupExtension IntelliSense and Editing
The most requested feature for the WPF & Silverlight XAML Editor was MarkupExtension IntelliSense. This feature has been a
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Karl Shifflett
|
Updated: 30 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
11.
Using Munq IOC with ASP.NET MVC 2 Preview 2
[^]
del.icio.us Tags: ASP.NET,MVC,IOC,DI Overview In this article, I will walk through the modification of the default ASP.NET MVC 2 application to use the Munq IOC container. This is a fairly simple process during which we will create a custom Controller Factory for the framework which you can use in
(The Code Project Open License (CPOL))
Not defined »
ASP.NET »
General
|
Matthew Dennis
|
Updated: 30 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
12.
T4 Preprocessed Text Templates in Visual Studio 2010
[^]
The best kept secret in Redmond, WA are the new T4 Preprocess Text Templates that shipped in Visual Studio 2010 Beta1 and Beta2. In just a few minutes you’ll be in the know and using them.
Background – Condensed
T4 = text template transformation toolkit
T4 templates have been available since
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Karl Shifflett
|
Updated: 30 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
13.
d:DesignInstance, d:DesignData in Visual Studio 2010 Beta2
[^]
The WPF and Silverlight Designer for Visual Studio 2010 shares several new design time (d:) properties and design time MarkupExtensions with Expression Blend 3 that provide necessary information for the WPF and Silverlight Designer to deliver a great editing experience.
I have explained the d:Design
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Karl Shifflett
|
Updated: 28 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
14.
Adventures while building a Silverlight Enterprise application part #26
[^]
The other day I ran into a scenario where I would need to databind to some primitive type variables like a bool or a string. As I didn't want to build class after class to solve this, I sought after a more generic solution. This article describes that solution.The requirementsThe requirements are s
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
mrjvdveen
|
Updated: 26 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
15.
How to get the length (duration) of a media File in C# on Windows 7
[^]
If you have ever looked at a media file (audio or video) in explorer on a Windows 7 PC, you may have noticed that it displays additional information about that media file that previous versions of Windows didn't seem to have access to, for example the length/duration of a Quicktime Movie Clip: Ev
(The Code Project Open License (CPOL))
Not defined »
Audio and Video »
General
|
Williarob
|
Updated: 26 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
16.
C#: A Method for Tail Call Recursion
[^]
I’ve been reading on F# a bit, and came across it’s ability to do tail call recursion. Tail recursion as defined by Wikipedia:
In computer science, tail recursion (or tail-end recursion) is a special case of recursion in which the last operation of the function, the tail call, is a recursive call. S
(The MIT License)
Not defined »
Uncategorised Technical Blogs »
General
|
StormySpike
|
Updated: 26 Oct 2009
Rating: 5.00/5
(3 votes)
|
|
|
17.
DTOs, Business Entities and Persistency
[^]
When designing an application, one can easily confuse DTOs, Business Entities and Persistency.Using the following simple examples I will demonstrate design considerations and thoughts that will dispel some mists.
(The Common Development and Distribution License (CDDL))
Not defined »
Design and Architecture »
Patterns and Practices
|
Uri Lavi
|
Updated: 26 Oct 2009
Rating: 5.00/5
(2 votes)
|
|
|
18.
XAML Power Toys for Visual Studio 2008 v5.0.0.1 Released
[^]
At the request of a XAML Power Toys user I have updated XAML Power Toys for Visual Studio 2008 to version v5.0.0.01.
This update adds one new feature and corrects the v5 known issue.
The ViewModel creation window now allows selecting the name of the method that is used to raise the PropertyCha
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Karl Shifflett
|
Updated: 26 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
19.
XAML Power Toys for Visual Studio 2010 Beta2
[^]
This post is the home page for XAML Power Toys for Visual Studio 2010 Beta2. Please post all comments and suggestions for this version on this post.
XAML Power Toys for Visual Studio 2010 has all the same features as XAML Power Toys for Visual Studio 2008 except as noted below. Please us
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Karl Shifflett
|
Updated: 26 Oct 2009
Rating:
(0 votes for this Article)
|
|
|
20.
XAML Power Toys for Visual Studio 2010 Beta2 Cider Designer
[^]
These last few weeks I’ve been writing control designers for Visual Studio 2010 Beta2 WPF and Silverlight controls.
Turns out this is much easier than I expected and is a lot of fun too!
This application is an example for writing a globalized WPF & Silverlight platform neutral control designer
(The Code Project Open License (CPOL))
Not defined »
Uncategorised Technical Blogs »
General
|
Karl Shifflett
|
Updated: 26 Oct 2009
Rating: 5.00/5
(1 vote)
|