Question : MS Access write to XML

When I write my .xml file from MS Access using their export option, I want to make some small changes in how it exports the data.  Is there a way to get at the export process and make the changes?

For instance, in front of the <img></img> tags I want to insert /img/
Or in <description></description> I want to enclose the data in [CDATA[ ]]

How do I do this?

Answer : MS Access write to XML

Just using your example
(I am no expert on HTML or XML)
...you might be able to do the bulk of this with the simple "Replace" utility available in notepad

Something like this perhaps:
Find What:  <img>
Replace With:  /img/<img>

Find What:  <description>
Replace With:  [CDATA[<description>

Find What:  </description>
Replace With:  </description>]]

Perhaps far from ideal, but something similar to this may be able to handle some of the "Heavy Lifting"

;-)

JeffCoachman
Random Solutions  
 
programming4us programming4us