4dd Subj : Re: XML, DOM and BC++ To : borland.public.cpp.borlandcpp From : Mike Evans Date : Fri Oct 24 2003 04:49 pm MarvinAvery wrote: > I have been doing more reading and investigation into XML. > I have discovered DOM (an API?). I also discovered that IExplorer 5 (and > above) comes with MSXML3.DLL which implements an API (I think) for reading, > creating and writing XML files. I have even found some documentation on the > methods in that DLL. > > I am using BC5.02 and OWL 5. Is there any way I can access MSXML3.DLL in my > app? If so, any help on this would be appreciated. > > I am trying to read and write a *simple* XML file (actually it's a very > simple Excel XML file). Should I attempt to use DOM or MSXML3 or would that > be overkill? Or should I just write my own code? Is there any possibility > that OWLNext (or GOL even) may someday have XML/DOM/eDOM support? Any and > all comments and suggestions would be helpful. > > TIA > --------------------------------- > Marvin Avery > marvin.avery@hrdc-drhc.gc.ca > > I have used the Xerces libraries for parsing XML files. You'll find them at: http://xml.apache.org/ For writing I just used fprintf() commands. . 0