R
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
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