I'm not sure if it will help with your problem, but I have come across
several people with issues when it comes to doing anything beyond the basic
with embedded resources. The following article (and code) helped me
understand the issues better, and resolved my problem at the time.
http://msdn2.microsoft.com/en-us/library/aa302284.aspx
"ANeelima" <> wrote in message
news:34AC5BA7-AE93-46DC-9110-...
>I am using C# and I created an .aspx page and the corresponding .aspx.cs
>code
> behind file. In the code behind file I have the following class structure
>
> public partial class myclass : page
> {
>
> private class nestedclass : myclass
> {
> public string getResourceString()
> {
>
> }
> }
> }
>
> The nested class has a publi method which attempts to call
> 'GetLocalResourceObject' and passes in the resource key. When I call
> 'GetLocalResourceObject' from the nested class, it does not work and
> throws
> me the following error:
>
> "Object reference not set to an instance of an object."
>
> But, when I call the method from the main class itself (myclass), it works
> fine. So, how can I call localization methods from a nested class??
>
> Thanks.
> --
> ANeelima