D
DaveC
Hello, I'm loading a rather large xml document from a remote server, but
this stalls my app? how can I load it Asynchronously, the XmlDocument class
has no .async property?
Also I would like to begin reading nodes while the document is loading. Can
this be done?
This is my two liner at the moment.
Dim xmlDoc As New Xml.XmlDocument()
xmlDoc.Load("http://www.domain.com/xmlgen.php?q=foodz")
Thanks.
DaveC
this stalls my app? how can I load it Asynchronously, the XmlDocument class
has no .async property?
Also I would like to begin reading nodes while the document is loading. Can
this be done?
This is my two liner at the moment.
Dim xmlDoc As New Xml.XmlDocument()
xmlDoc.Load("http://www.domain.com/xmlgen.php?q=foodz")
Thanks.
DaveC