XML.XMLDocument in VB6

  • Thread starter Thread starter oLiVieR CheNeSoN
  • Start date Start date
O

oLiVieR CheNeSoN

Hi all,


I have DLL in VB.net that is called by a VB6 program.

One method in the DLL has an output type XML.XMLDocument.

Now, my problem is that in my VB6 program, the XML.XMLDocument type doesnt
exist, i can use MSXML2.DOMDocument40.


Do you have any suggestions or ideas ?


Thanks
Olivier
 
Hi Olivier !
Do you have any suggestions or ideas ?

There may be a better way, but if you have access to the VB.NET code then
maybe you could change the output of the function and return the XML "As
String" then load it back into a DomDocument using LoadXml() in the VB6 app.
 
Hi Yanick,


Thanks for your suggestions. That is a good idea, i will do that if i dont
find a way to "cast", "convert" the two data type.


Thanks
Olivier
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top