Discussion:
Sharing datas in a XML doc through MS-Word
(too old to reply)
Marcos Hercules Santos
2007-04-27 01:16:16 UTC
Permalink
Hi everybody,

with basis on fact of being XML considered a data collection, I'd like
to know if, Is there any experience, or does anyone knows the
possibility of using MS-Word (VBA using), to extract parts of the xml
structure below?


<?xml version='1.0'?>
<ct: contact xmlns:ct="cont" xmlns:"supplier" /">

<ct:person>
<ct:code>101 </ct:code>
<ct:name>Matheus Oliveira</ct:name>
<ct:telephone>Gambardella, Matthew</ct:telephone>
<ct:address>Computer</ct:address>
</ctStick out tongueerson>
<ct:person>
and goes on...

</ct:contact>

Now imagine an user A opening a MS-word document and viewing this:
Code Name, Adress. Other user B opening a MS-Word document and
viewing; code, Name and telephone.

More than this... would they insert new datas or edit the datas in
this XML structure using MS WORD?

ThanX


Marcos Hercules
Marcos Hercules Santos
2007-04-27 12:49:51 UTC
Permalink
Sorry, the right code is,


<?xml version='1.0'?>
<ct: contact xmlns:ct="cont" xmlns:"supplier" /">

<ct:person>
<ct:code>101 </ct:code>
<ct:name>Matheus Oliveira</ct:name>
<ct:telephone>9997-9999</ct:telephone>
<ct:address>Brazilr</ct:address>
<ct:person>
and goes on...

</ct:contact>


ThanX

Loading...