CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: XML file

  1. #1
    Join Date
    Oct 2003
    Posts
    76

    XML file

    Is there any data type with some property to read an xml file into data structure in my file.

    Like in VB we can do the following:
    Dim DataSet1 as New DataSet
    DataSet1.ReadXml(myDocumentsFolder & "\dataset.xml")

    What can we do in VC++ using MFC??

    Thanks

  2. #2
    Join Date
    Jun 2001
    Location
    Michigan
    Posts
    2,222
    The following MSDN has documentation for using XML DOM, this might at least get you started:

    XML DOM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured