Click here to Skip to main content
Licence CPOL
First Posted 6 Oct 2008
Views 14,605
Downloads 226
Bookmarked 17 times

Share Resources Across Multiple Projects

By | 6 Oct 2008 | Article
Centralize your resources into a single module and export them in an organized, controlled way.

Introduction

In VS 2005 and earlier, resources were flagged as Friend; this meant that, you could use them globally within the project, but could not make them directly available to outside projects. VS 2008 allows you to make resources Public, but this applies to all resources, and namespace issues can make this a bit tricky. If you use a static class, however, resources can be exported in a controlled, organized, and easy to maintain fashion.

Background

I have been working on a large application organized into several projects. One of these is the "core" project, which holds various toolboxes, custom controls, etc. I wanted to put all of the app's icons and images here, too.

We started out using VS 2005, which does not allow the resources of a project to be shared. The workaround turned out to be pretty simple: export the resources using a static class.

After switching to VS 2008, my team decided to stick with using this export class. The structure allowed to pick which resources would be made public, to organize the resources into logical groupings, and to alias resources to show how they are to be used. The aliasing has proven especially useful, as it has allowed us to change an image in only two places -- the resource file and the exporting class -- and leave the rest of our code alone.

The Theory

In the accompanying solution, there is a code module named Shared. This defines the namespace SharedResources, which contains three classes: Icons, Images, and Strings. These classes export icon, image, and string resources, respectively, by using read-only properties. This is what the Images class looks like in VB:

Public Class Images

    Public Shared ReadOnly Property Leave() As Image
        Get
            Return My.Resources.Leave
        End Get
    End Property

    Public Shared ReadOnly Property Page() As Image
        Get
            Return My.Resources.Page
        End Get
    End Property

    Public Shared ReadOnly Property Report() As Image
        Get
            Return My.Resources.Page
        End Get
    End Property

    Public Shared ReadOnly Property User() As Image
        Get
            Return My.Resources.User
        End Get
    End Property

End Class

In C#:

using SharingResources_CS.Properties;
using System.Drawing;

public class Images
{
    
public static Image Leave

    {
        get { return Resources.Leave; }
    }

    public static Image Page
    {
        get { return Resources.Page; }
    }

    public static Image Report
    {
        get { return Resources.Page; }
    }

    public static Image User
    {
        get { return Resources.User; }
    }
}

You can see that the resource Page is exported under two different aliases, as Page and as Report. If we ever wanted to change the Report image, all we would need to do is add the image to the project, then reference it in the Images class.

We could have further broken this down in to additional classes, say, small images for use in menus and toolbars, and large images for panel backgrounds; the Strings class can be divided up into strings for menus, strings for message boxes, and strings for help text.

The Example Solutions

I have written two example solutions, one in VB and one in C#, using VS 2008. Each solution contains two projects. The first one implements the SharedResources namespace. The second initializes a form's menu and title from the exported resources.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Gregory.Gadow

Software Developer (Senior)

United States United States

Member

Gregory Gadow lives in Seattle, Washington and has been writing code for almost 25 years in more than a dozen programming languages. He works for a mid-size brokerage firm and holds the Series 7 and Series 66 brokerage licenses, but much prefers working as the company's programming department doing VB6, VB.Net, ASP, HTML, XML and SQL.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 Pinmemberhoernchenmeister21:25 7 Nov '10  
GeneralMy vote of 5 Pinmemberhoernchenmeister21:25 7 Nov '10  
GeneralThis really helped PinmemberMember 152936619:24 17 Feb '10  
GeneralPerfect Pinmemberbar49_9#8:36 11 Aug '09  
Generalcongratulations, the simply normally is the best option Pinmemberjuliotrujilloleon22:59 13 Oct '08  
QuestionI wonder why this is not possible in 2005? PinmemberDinesh Mani3:24 7 Oct '08  
AnswerThis technique allows you to control which resources are exposed, and to alias your resources PinmemberTechBearSeattle3:58 7 Oct '08  
GeneralRe: This technique allows you to control which resources are exposed, and to alias your resources PinmemberDinesh Mani5:14 7 Oct '08  
GeneralCreating strongly typed resource wrappers Pinmembermav.northwind19:15 6 Oct '08  
Hi!
Instead of creating the wrapper manually and having to add a new wrapper property every time you add a new resource, the smarter solution (IMO) is to use an appropriate code generator.
Take a look at this article[^] for such a generator - it can automatically create public wrappers, performs resourcemanager initialization in a thread-safe manner and even creates methods with the correct signature for string resources containing parameters.
 
Regards,
mav
 
--
Black holes are the places where God divided by 0...

GeneralShare Resources Across Multiple Projects PinmemberMember 412879511:33 6 Oct '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120604.1 | Last Updated 6 Oct 2008
Article Copyright 2008 by Gregory.Gadow
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid