Anybody have a VB6 XML Parser class that doesn't use any msxml dlls?
Hello everybody, I have a basic xml file that I would like to read into my VB6 app. Would anybody have a VB class made that does that and that doesn't use any msxml dlls?
Re: Anybody have a VB6 XML Parser class that doesn't use any msxml dlls?
Quote:
Originally Posted by Hassan Basri
... Would anybody have a VB class made that does that and that doesn't use any msxml dlls?
What's wrong with that?
Re: Anybody have a VB6 XML Parser class that doesn't use any msxml dlls?
I am looking for a solution to have my application work on all versions from win95 to Vista.
Currently it is working on win95 to xp using msxml version 2.0 however Vista has a problem with the installation of msxml (version 2), so I was thinking of that as a solution.
Re: Anybody have a VB6 XML Parser class that doesn't use any msxml dlls?
I thought of removing the reference completly from the project and doing some late-binding like this:
VB Code:
Set XMLDoc = CreateObject("MSXML2.DOMDocument")
This way the application uses the current msxml version of the computer and I won't have to send the dll.
It works on xp, does anybody see any issues with this working on win95?