try it..
i was new to xml too, but know i coded a dll that creates a database from an
xml, also an xml to store data from backups and xml to store user
parameters..
but i never work with it via url...
but i think it's the same...
Gonzalo Martin Bianchi
Desarrollo de sistemas de cuenta corriente tributaria
Hipolito Yrigoyen 370
Entrepiso B pasillo 600 oficina 5
4347-3181
----- Original Message -----
From: "John Walborn" <Jwalborn@m...>
To: "professional vb" <pro_vb@p...>
Sent: Tuesday, January 21, 2003 6:32 PM
Subject: [pro_vb] Re: Loading XML into VB
I have no idea... While I've been coding VB for some time, I am brand new to
XML through VB. (Have used XML through Flash for a few months.)
So I don't know if setting the XML object to asynchronous would be the
solution.
-----Original Message-----
From: Gonzalo Martin Bianchi [mailto:gbianchi@a...]
Sent: Tuesday, January 21, 2003 2:26 PM
To: professional vb
Subject: [pro_vb] Re: Loading XML into VB
hi there..
extranded from sdk 4.0 for XML analyzer..
If loading an XML document from a resource, the load must be performed
asynchronously or the load will fail. For example:
Set objXML = CreateObject("MSXML2.DOMDocument.4.0")
ObjXML.async=true
objXML.load "res://msxml.dll/DEFAULTSS.XSL"
WScript.echo objXML.parseError.reason
objXML.save "c:\defaultss.xsl"
this dont apply to your case???
HTH..
Gonzalo Martin Bianchi
Desarrollo de sistemas de cuenta corriente tributaria
Hipolito Yrigoyen 370
Entrepiso B pasillo 600 oficina 5
4347-3181
----- Original Message -----
From: "John Walborn" <Jwalborn@m...>
To: "professional vb" <pro_vb@p...>
Sent: Tuesday, January 21, 2003 6:15 PM
Subject: [pro_vb] Re: Loading XML into VB
What would I search for in MSDN? My code looked very close to that (below)
and I could not get it to work.
-----Original Message-----
From: Gonzalo Martin Bianchi [mailto:gbianchi@a...]
Sent: Tuesday, January 21, 2003 2:09 PM
To: professional vb
Subject: [pro_vb] Re: Loading XML into VB
hi there..
for sure yes.... look into msdn, it define it as an http adress in the
example..
Gonzalo Martin Bianchi
Desarrollo de sistemas de cuenta corriente tributaria
Hipolito Yrigoyen 370
Entrepiso B pasillo 600 oficina 5
4347-3181
----- Original Message -----
From: "John Walborn" <Jwalborn@m...>
To: "professional vb" <pro_vb@p...>
Sent: Tuesday, January 21, 2003 6:03 PM
Subject: [pro_vb] Re: Loading XML into VB
Will that work with an XML doc at an HTTP address as well as a local path?
-----Original Message-----
From: Matt Trinder [mailto:mfm@c...]
Sent: Monday, January 20, 2003 3:28 PM
To: professional vb
Subject: [pro_vb] Re: Loading XML into VB
Set ar efernece to MIcrosoft XML 3.0 or 4.0
dim objDoc as new MSXML2.DomDocument30
objDoc.load "c:\myxmldoc.xml"
access the elements, attributes and nodes collections to get to the various
bits of your document
Matt
----- Original Message -----
From: "John Walborn" <Jwalborn@m...>
To: "professional vb" <pro_vb@p...>
Sent: Monday, January 20, 2003 4:32 PM
Subject: [pro_vb] Loading XML into VB
Hey,
I have an XML document on the internet (accesible via HTTP) and need a brief
example of how to pull XML documents into Visual Basic and process their
contents. I'm every close, but I appear to be missing a key step or two.
Please, if you can, provide a brief example of creating the object, loading
the document, and accessing its children.
Thanks!
John