tags:

views:

93

answers:

1

Is the project still around?

+1  A: 

Is this what you were looking for?

@" * Download source (C#) - 578.94 KB * Download MSI installer - 436.38 KB

Introduction

One of the great new features of the Visual Studio .NET 2005/2008 IDE is a custom tool called ResXFileCodeGenerator that is automatically associated with resources (*.resx files) every time they are added into a project. Whenever your project is rebuilt, a resource file is saved or a custom tool is run manually, the tool in question generates a managed class that exposes every resource you have in the *.resx file as a strongly typed static property. Now any type of resource supported -- including images, icons, strings, etc. -- is a piece of cake to retrieve.

The two screenshots below illustrate the default properties of a resource file added to Visual Studio .NET 2005 and the Resource.Designer.cs source file, which is dependent upon Resource.resx and is automatically generated by the ResXFileCodeGenerator custom tool. (... blah blah)"

waynecolvin