ResXResourceReader
am 24.04.2008 16:45:01 von roryos
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
Re: ResXResourceReader
am 24.04.2008 21:03:38 von Kevin.S.Gallagher
You need to specifiy a path i.e.
rsxr = New ResXResourceReader("C:\SomePath\menus.resx")
"roryos" 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
>
>