XML question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have an xml string. I would now like to create an xml object using this
string. Is that possible and how do I do it?

Thanks a lot
Julia
 
Hi Julia,

Try:

Dim objXmlDocument As New System.Xml.XmlDocument()

objXmlDocument.LoadXml(string)

--

Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 
Back
Top