vote up 2 vote down star

I have a project which contains all custom controls and images; we'll call it projectBase. Now I have created a windows forms project (project1) that references projectBase. I need to access the embedded resource (images) of projectBase in project1. Any idea how i can pull this off?

flag

2 Answers

vote up 1 vote down check

One option would be to expose the images as readonly properties of your custom control classes.

link|flag
since i am using vb.net 2005 this seems like the best way...THANKS!!! – spo Nov 4 at 21:49
vote up 2 vote down

In project properties, under Resources, you have the Access Modifier at the top, which you can set as Public. Now you can access resources from the other project like this:

Dim someResource = MyReferencedProject.My.Resources.SomeResource
link|flag
this is exactly what i am looking for, but i am having trouble locating the access modifier. All i see is a type filter, add resource, remove resource, and view options at the top. i forgot to mention i am using 2005, could this be the difference? – spo Nov 4 at 21:02
1  
I'm using VS2008... looking at the documentation it seems to be new to 2008 unfortunately. But check out the answer to this question, there are some other ways to do it: stackoverflow.com/questions/140937/… – Meta-Knight Nov 4 at 21:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.