i'm building an active x dll that will recieve the parameters it needs as an xml stream (???), meaning it won't be a physical file, basically a string with xml tags in it. i'm trying to use the xml dom to read the nodes but it seems to be choking on the load method. i can't for the life of me figure this out. here's where i'm at so far:
do i need to do something to the "strXML" before i load it into xmlDoc? %-)
Code:
Private Sub CreateCollection(strXML As String)
'//load xml
xmlDoc.async = False
xmlDoc.validateOnParse = False
didLoad = xmlDoc.Load(strXML)
If didLoad Then
MsgBox "it loaded!"
Else
MsgBox "nope!"
End If
End Sub
do i need to do something to the "strXML" before i load it into xmlDoc? %-)