Subj : Re: XML To : borland.public.cpp.borlandcpp From : "Regis St-Gelais" Date : Fri Oct 24 2003 02:13 pm -- "MarvinAvery" a écrit dans le message de news:3f8d773e@newsgroups.borland.com... > Hi. > The question is: how should I do this? > I've got the Excel XML schema so I can easily write my own code to do it. Is > this the best way? Or are there some OWL/OWLNext classes, DLL's, or other > libraries that I can/should use instead? > Hi Marvin, I have an OwlNext project (BC++5.02 + BCC55 + Tools55) that use xml files but XML support is not comming from OwlNext. I use Expat 1.95.7 to read the XML files. It is evenement oriented. For exemple: data calls 3 event handler, ElementStart handler for , CaractereData handler for data and ElementEnd handler for It has a lot of functions, but most simple xml file can be parsed using 4 ou 5 of the lib functions. For writing I simply create the text file by code. Expat is a library (static or dynamic, you have the choice) that you include in your project. It comes as a set of source file that can be build with the free command line compiler (BCC55) from borland. You can find it at: http://expat.sourceforge.net/ Hope this help. -- Regis St-Gelais, P. Eng. / ing. Software Development / Développement informatique www.laubrass.com > .