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

Thread: Question on XML

  1. #1
    Join Date
    Jan 2002
    Location
    bangalore india
    Posts
    183

    Question on XML

    Hi all,
    Which are best books to begin learning XML?

    1) In current projects i am using resource dlls , i want to change it with xml files . is it possible?

    2) Suppose I have some data in an xml file , is it possible to read it from application developed in vc++?

    Thanx in advance
    Regards
    RatheeshRavindran
    Known Is A Drop..
    Unknown Is An Ocean....

    Programming Contest...

  2. #2
    Join Date
    Aug 2002
    Posts
    879

    Re: Question on XML

    I would say the best book is the internet

    xml files are plain text files there is no reason not to
    read them out from vc++.

    Here ara several xml read/write classes to make life easier
    http://www.codeproject.com/soap/#XML

  3. #3
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: Question on XML

    Quote Originally Posted by ratheesh ravi
    Which are best books to begin learning XML?
    "XML Programming Bible" from Wiley is okay in my eyes (ISBN: 0-7645-3829-2)

    Quote Originally Posted by ratheesh ravi
    1) In current projects i am using resource dlls , i want to change it with xml files . is it possible?
    Well...what part of the resource file? The strings? Everything?

    Quote Originally Posted by ratheesh ravi
    2) Suppose I have some data in an xml file , is it possible to read it from application developed in vc++?
    Yes...using a XML parser...

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