D
David
Hi, all,
I have the following code to read from a standalone XML
file.
Dim reader As XmlTextReader
reader = New XmlTextReader(FileName)
Right now I would like to embed the file in the assembly.
I know the way to load image file from assembly by using
the following code:
LoadResourceImage = New Bitmap
(System.Reflection.Assembly.GetExecutingAssembly.GetManifes
tResourceStream(imageName))
But how do I read an XML file from assembly? Thanks a lot
for your help.
Thanks,
David
I have the following code to read from a standalone XML
file.
Dim reader As XmlTextReader
reader = New XmlTextReader(FileName)
Right now I would like to embed the file in the assembly.
I know the way to load image file from assembly by using
the following code:
LoadResourceImage = New Bitmap
(System.Reflection.Assembly.GetExecutingAssembly.GetManifes
tResourceStream(imageName))
But how do I read an XML file from assembly? Thanks a lot
for your help.
Thanks,
David