D
DumberThanSnot
I have the following:
Dim xmlPSELL As New XmlDataDocument
Dim sXML as String
sXML = (some well formed XML code)
xmlPSELL.LoadXml(sXML)
so far this works just fine...
now I want to be able to load the sXML string into the xmlPSELL.DataSet.
How the heck do I do something like this:
xmlPSELL.DataSet.LoadXml(sXML)
Thanks,
Brian
Dim xmlPSELL As New XmlDataDocument
Dim sXML as String
sXML = (some well formed XML code)
xmlPSELL.LoadXml(sXML)
so far this works just fine...
now I want to be able to load the sXML string into the xmlPSELL.DataSet.
How the heck do I do something like this:
xmlPSELL.DataSet.LoadXml(sXML)
Thanks,
Brian