> Hi
>
[quoted text clipped - 20 lines]
> > Thanks,
> > Grawsha
Thanks Sooraj,
will you please provide an example on how to move in the resource file
using ResXResourceReader?
MTIA,
Grawsha
Sooraj PM - 18 Oct 2004 09:11 GMT
Hi
Create the resource file (You can create the resource file by 1. Assign the
keys and values in a text file save the same. 2 using the RESGEN.EXE you can
create the .Resx or .resources file from this text file)
Add the resource file to the project
Code for Listing the keys and values of Resource file:
Dim rsxr As ResXResourceReader
rsxr = New ResXResourceReader("..\txtResource.resx") ' Tha path of resource
file
Dim d As DictionaryEntry
For Each d In rsxr
MessageBox.Show(String.Format("{0}: {1}", d.Key.ToString(),
d.Value.ToString()))
Next d
rsxr.Close()'Close the reader.
Hope this will help you
Regards
Sooraj
Microsoft Community Star
> > Hi
> >
[quoted text clipped - 28 lines]
> MTIA,
> Grawsha