#2: Re: ResXResourceReader
Posted on 2008-04-24 21:03:38 by Kevin.S.Gallagher
You need to specifiy a path i.e.
rsxr = New ResXResourceReader("C:\SomePath\menus.resx")
"roryos" <roryos@discussions.microsoft.com> wrote in message
news:B0097F26-8B7D-4EAF-B525-801E9B2648CB@microsoft.com...
>I am tryng to read a resource file using the following code and I am
>getting
> an error stating that it can't find it in the C:\Windows\System32
> directory.
> I do not want to place it in that directory as I have it included in my
> project as an embedded resource in a specific directory. I receive the
> error
> as soon as it tries to perform the GetEnumerator.
>
> Any ideas?
>
> Here is a snippet of the code:
>
> Private en As IDictionaryEnumerator
> Private rsxr As System.Resources.ResXResourceReader
>
> rsxr = New ResXResourceReader("menus.resx")
> en = rsxr.GetEnumerator
>
>
Report this message |