Opening Xml Files with C++

Hi, I would like to know how to open an Xml File and the methods to use to access its diffrend nodes and add some new ones With C++.

I usualy use C# and VB So if you have sample C++ Code it would be great.

Thanks for your help.




Answer this question

Opening Xml Files with C++

  • texag

    stlaural wrote:
    I'm using C++ in Visual studio to build a plug-in for acrobat so I guess your right, I think I can use the same classes that I used with C# and VB

    Yes, you'd need to turn on /clr compilation, and also know the new C++/CLI syntax. And you have access to the entire .NET class library.



  • nagarajuch

    I'm using C++ in Visual studio to build a plug-in for acrobat so I guess your right, I think I can use the same classes that I used with C# and VB

  • bazmcl

    stlaural wrote:

    Hi, I would like to know how to open an Xml File and the methods to use to access its diffrend nodes and add some new ones With C++.

    I usualy use C# and VB So if you have sample C++ Code it would be great.

    Thanks for your help.

    Using C++/CLI you can use the same XML classes that you were using in C# and VB. Or did you mean native C++



  • Opening Xml Files with C++